
        @font-face {
            font-family: 'Valley Sans';
            src: url('Font/ValleySans-Regular.ttf') format('truetype'),
                url('ValleySans-Regular.woff2') format('woff2');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Valley Sans';
            src: url('Font/ValleySans-Medium.ttf') format('truetype'),
                url('ValleySans-Medium.woff2') format('woff2');
            font-weight: 500;
            font-style: normal;
            font-display: swap;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-weight: 400;
            color: #1a202c;
            background-color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        .logo {
            font-family: 'Valley Sans', 'Plus Jakarta Sans', sans-serif;
            font-weight: 400;
        }

        h2,
        h3,
        h4 {
            font-weight: 500;
        }

        .section-container {
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Floating Pill Navigation Bar */
        .header {
            position: fixed;
            top: 1rem;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 1200px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            border-radius: 9999px;
            z-index: 1000;
            border: 1px solid rgba(226, 232, 240, 0.8);
            transition: all 0.3s ease;
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-img {
            height: 28px;
            width: auto;
            max-width: 150px;
            object-fit: contain;
            display: block;
            filter: brightness(0);
            transition: opacity 0.2s ease;
        }

        .logo-img:hover {
            opacity: 0.85;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #475569;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #0d9488;
        }

        .nav-actions {
            display: flex;
            gap: 0.75rem;
            align-items: center;
        }

        .nav-btn-outline,
        .nav-btn-solid,
        .primary-btn {
            font-family: 'DM Sans', sans-serif;
            font-weight: 500;
            text-decoration: none;
            padding: 0.5rem 1.1rem;
            border-radius: 9999px;
            font-size: 0.9rem;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .nav-btn-outline {
            background: transparent;
            color: #0f172a;
            border: 1px solid #cbd5e1;
        }

        .nav-btn-outline:hover {
            border-color: #0d9488;
            color: #0d9488;
        }

        .nav-btn-solid,
        .primary-btn {
            background-color: #0d9488;
            color: #ffffff;
            border: 1px solid #0d9488;
        }

        .nav-btn-solid:hover,
        .primary-btn:hover {
            background-color: #0f766e;
            border-color: #0f766e;
            box-shadow: 0 4px 14px rgba(13, 148, 136, 0.25);
        }

        /* Mobile Nav Toggle */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.35rem;
            color: #0f172a;
            cursor: pointer;
            padding: 0.25rem;
        }

        .mobile-nav-drawer {
            display: none;
            position: fixed;
            top: 5rem;
            left: 5%;
            width: 90%;
            background: #ffffff;
            border-radius: 1.5rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            padding: 1.5rem;
            z-index: 999;
            border: 1px solid #e2e8f0;
            flex-direction: column;
            gap: 1rem;
        }

        .mobile-nav-drawer.open {
            display: flex;
        }

        .mobile-nav-drawer a {
            text-decoration: none;
            color: #0f172a;
            font-size: 1rem;
            font-weight: 500;
            padding: 0.5rem 0;
            border-bottom: 1px solid #f1f5f9;
        }

        .mobile-nav-drawer a.active {
            color: #0d9488;
        }

        /* ==========================================================================
   Modern White & Teal Mixed Grain / Noise Hero Banner
   ========================================================================== */
        .hero-section {
            position: relative;
            width: 100%;
            min-height: 70vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-sizing: border-box;
            padding: 7rem 2rem 5rem;
            background-color: #f8fafc;
            background-image: radial-gradient(rgba(13, 148, 136, 0.1) 1px, transparent 1px), radial-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px), linear-gradient(135deg, #f8fafc 0%, #f0fdfa 50%, #e6fffa 100%);
            background-size: 20px 20px, 40px 40px, 100% 100%;
            background-position: 0 0, 10px 10px, 0 0;
            text-align: center;
            overflow: hidden;
            border-bottom: 1px solid #e2e8f0;
        }

        .hero-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 400px;
            background: radial-gradient(circle, rgba(45, 212, 191, 0.22) 0%, rgba(13, 148, 136, 0.05) 50%, transparent 80%);
            filter: blur(70px);
            pointer-events: none;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            max-width: 940px;
            margin: 0 auto;
            z-index: 2;
        }

        .hero-badge,
        .hero-tag-chip {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #ccfbf1;
            color: #0f766e;
            padding: 0.45rem 1.25rem;
            border-radius: 9999px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            border: 1px solid #99f6e4;
            letter-spacing: 0.5px;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 500;
            color: #0f172a;
            margin-bottom: 0.75rem;
            line-height: 1.15;
            letter-spacing: -0.01em;
        }

        .hero-content h1 .highlight {
            color: #0d9488;
        }

        .hero-content p {
            font-size: 1.15rem;
            color: #475569;
            margin-bottom: 0.75rem;
            max-width: 760px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.65;
        }

        .hero-cta-group {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.25rem;
            flex-wrap: wrap;
        }

        .hero-primary-btn {
            background-color: #0d9488;
            color: #ffffff;
            border: 1px solid #0d9488;
            font-weight: 500;
            text-decoration: none;
            padding: 0.75rem 1.85rem;
            border-radius: 9999px;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .hero-primary-btn:hover {
            background-color: #0f766e;
            border-color: #0f766e;
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(13, 148, 136, 0.25);
        }

        .hero-secondary-btn {
            background: #ffffff;
            color: #0f172a;
            border: 1px solid #cbd5e1;
            font-weight: 500;
            text-decoration: none;
            padding: 0.75rem 1.85rem;
            border-radius: 9999px;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .hero-secondary-btn:hover {
            border-color: #0d9488;
            color: #0d9488;
            background: #ffffff;
            box-shadow: 0 4px 12px rgba(13, 148, 136, 0.1);
        }

        /* ==========================================================================
   2. Interactive 2-Column Sticky Process Section
   ========================================================================== */
        .process-steps-section {
            padding: 6rem 2rem 4rem;
            background-color: #f8fafc;
        }

        .process-sticky-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .process-phase-item {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 4rem;
            align-items: start;
            position: relative;
            padding: 2.5rem 0;
        }

        .phase-sticky-col {
            position: sticky;
            top: 120px;
            align-self: start;
        }

        .phase-sticky-inner {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .phase-num {
            font-family: 'Valley Sans', 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(4rem, 6vw, 5.5rem);
            font-weight: 700;
            color: #0d9488;
            line-height: 1;
            letter-spacing: -0.02em;
        }

        .phase-title {
            font-family: 'Valley Sans', 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(1.75rem, 2.5vw, 2.2rem);
            font-weight: 500;
            color: #0f172a;
            line-height: 1.2;
        }

        .phase-timeline-badge {
            display: inline-block;
            align-self: flex-start;
            padding: 0.35rem 0.85rem;
            background: rgba(13, 148, 136, 0.08);
            color: #0d9488;
            font-size: 0.8rem;
            font-weight: 600;
            border-radius: 9999px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .phase-content-col {
            width: 100%;
        }

        .phase-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 1.25rem;
            padding: 2.5rem;
            margin-bottom: 3rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
        }

        .phase-card:hover {
            border-color: #cbd5e1;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
        }

        .phase-card-block {
            margin-bottom: 2rem;
        }

        .phase-card-block:last-child {
            margin-bottom: 0;
        }

        .phase-card-label {
            display: block;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #0d9488;
            margin-bottom: 0.65rem;
        }

        .phase-card-desc {
            font-size: 1.05rem;
            color: #475569;
            line-height: 1.65;
        }

        .deliverables-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-top: 0.5rem;
        }

        .deliverables-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 0.95rem;
            color: #334155;
            line-height: 1.45;
        }

        .deliverables-list li i {
            color: #0d9488;
            font-size: 0.85rem;
            margin-top: 0.25rem;
        }

        /* ==========================================================================
   Dual Audience Process Experience (Light Theme)
   ========================================================================== */
        .experience-section {
            padding: 6rem 2rem;
            background: #ffffff;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }

        .section-header {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: #0f172a;
            font-weight: 500;
            margin-bottom: 0.75rem;
        }

        .section-header p {
            font-size: 1.05rem;
            color: #64748b;
        }

        .experience-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .experience-card {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 1.5rem;
            padding: 3.5rem 3rem;
        }

        .experience-card h3 {
            font-size: 1.75rem;
            color: #0f172a;
            margin-bottom: 1rem;
        }

        .experience-card p {
            color: #475569;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .experience-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(13, 148, 136, 0.08);
            color: #0d9488;
            padding: 0.4rem 1rem;
            border-radius: 9999px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.25rem;
        }

        .experience-timeline {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .experience-timeline li {
            position: relative;
            padding-left: 2rem;
        }

        .experience-timeline li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.35rem;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #0d9488;
        }

        .experience-timeline strong {
            display: block;
            color: #0f172a;
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }

        .experience-timeline span {
            font-size: 0.9rem;
            color: #64748b;
            line-height: 1.5;
            display: block;
        }

        /* ==========================================================================
   SLA & Quality Gate Table (Light Theme)
   ========================================================================== */
        .sla-table-section {
            padding: 6rem 2rem;
            background: #f8fafc;
            border-bottom: 1px solid #e2e8f0;
        }

        .sla-table-wrap {
            width: 100%;
            overflow-x: auto;
            border: 1px solid #e2e8f0;
            border-radius: 1.25rem;
            background: #ffffff;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
        }

        .sla-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            min-width: 700px;
        }

        .sla-table th {
            padding: 1.25rem 1.75rem;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #0d9488;
            border-bottom: 1px solid #e2e8f0;
            background: #f1f5f9;
            font-weight: 700;
        }

        .sla-table td {
            padding: 1.35rem 1.75rem;
            font-size: 0.95rem;
            color: #334155;
            border-bottom: 1px solid #f1f5f9;
        }

        .sla-table td strong {
            color: #0f172a;
        }

        .sla-table tr:last-child td {
            border-bottom: none;
        }

        .sla-table tr:hover td {
            background: #f8fafc;
        }

        /* ==========================================================================
   3. Relocated Standalone Full-Width Metrics Section & 4. Pre-Footer Spacing
   ========================================================================== */
        .process-metrics-section {
            padding: 6rem 2rem 17rem 2rem;
            /* Generous 17rem bottom padding ensures 7rem+ clearance above overlapping CTA card */
            background-color: #ffffff;
        }

        .metrics-standalone-card {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 1.5rem;
            padding: 4rem 3rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
        }

        .metrics-standalone-header {
            max-width: 680px;
            margin: 0 auto 3.5rem;
        }

        .metrics-badge {
            display: inline-block;
            padding: 0.35rem 0.85rem;
            background: rgba(13, 148, 136, 0.08);
            color: #0d9488;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 9999px;
            margin-bottom: 1rem;
        }

        .metrics-standalone-header h2 {
            font-family: 'Valley Sans', 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(2rem, 3vw, 2.5rem);
            font-weight: 500;
            color: #0f172a;
            margin-bottom: 0.75rem;
        }

        .metrics-standalone-header p {
            font-size: 1.05rem;
            color: #64748b;
            line-height: 1.6;
        }

        .metrics-standalone-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .metric-card-item {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 1rem;
            padding: 2.25rem 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            align-items: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
            transition: transform 0.2s ease, border-color 0.2s ease;
        }

        .metric-card-item:hover {
            transform: translateY(-3px);
            border-color: #0d9488;
        }

        .metric-big-num {
            font-family: 'Valley Sans', 'Plus Jakarta Sans', sans-serif;
            font-size: 2.85rem;
            font-weight: 700;
            color: #0d9488;
            line-height: 1;
        }

        .metric-subtext {
            font-size: 0.925rem;
            font-weight: 600;
            color: #334155;
        }

        /* ==========================================================================
   Overlapping Floating CTA Card & Footer
   ========================================================================== */
        .cta-footer-wrapper {
            position: relative;
            width: 100%;
            min-height: 65vh;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            background: linear-gradient(180deg, #090d16 0%, #060910 100%);
            overflow: visible;
            box-sizing: border-box;
            padding-top: 0;
        }

        .footer-ambient-glow {
            position: absolute;
            top: 35%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 380px;
            background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
            filter: blur(80px);
            pointer-events: none;
            z-index: 1;
        }

        .cta-floating-container {
            position: relative;
            z-index: 10;
            width: 100%;
            margin-top: -160px;
            margin-bottom: 0;
        }

        .cta-banner-card {
            background: #0f172a;
            border-radius: 1.5rem;
            padding: 3.5rem 4rem;
            min-height: 340px;
            display: grid;
            grid-template-columns: 1.25fr 1fr;
            gap: 3.5rem;
            align-items: center;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 35px rgba(13, 148, 136, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.12);
            position: relative;
            box-sizing: border-box;
        }

        .cta-banner-content h2 {
            font-size: clamp(1.9rem, 2.6vw, 2.4rem);
            font-weight: 500;
            color: #ffffff;
            margin-bottom: 0.85rem;
            line-height: 1.2;
        }

        .cta-banner-content p {
            color: #94a3b8;
            font-size: 1.05rem;
            margin-bottom: 1.75rem;
            line-height: 1.5;
        }

        .cta-banner-image {
            border-radius: 1rem;
            overflow: hidden;
            height: 270px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
        }

        .cta-banner-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .site-footer {
            position: relative;
            z-index: 2;
            width: 100%;
            background: transparent;
            padding-top: 5rem;
            padding-bottom: 2.5rem;
            color: #94a3b8;
            box-sizing: border-box;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 2.5rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-logo {
            margin-bottom: 1.25rem;
            display: flex;
            align-items: center;
        }

        .footer-logo-img {
            height: 32px;
            width: auto;
            max-width: 170px;
            object-fit: contain;
            display: block;
        }

        .footer-col p {
            color: #94a3b8;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .footer-socials {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .footer-socials a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            transition: color 0.2s;
        }

        .footer-socials a:hover {
            color: #0d9488;
        }

        .footer-col h4 {
            font-family: 'Valley Sans', 'Plus Jakarta Sans', sans-serif;
            font-size: 1.05rem;
            color: #ffffff;
            margin-bottom: 1.25rem;
            font-weight: 500;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-col ul li a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.2s;
        }

        .footer-col ul li a:hover {
            color: #ffffff;
        }

        .footer-bottom {
            padding-top: 1.5rem;
            background: transparent;
        }

        .footer-bottom-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            font-size: 0.85rem;
            color: #64748b;
            margin: 0;
        }

        .footer-legal {
            display: flex;
            gap: 2rem;
        }

        .footer-legal a {
            color: #64748b;
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.2s;
        }

        .footer-legal a:hover {
            color: #cbd5e1;
        }

        @media(max-width: 1024px) {
            .process-phase-item {
                grid-template-columns: 1fr 1.5fr;
                gap: 2.5rem;
            }

            .experience-grid {
                grid-template-columns: 1fr;
            }

            .metrics-standalone-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media(max-width: 900px) {

            .nav-links,
            .nav-actions {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .process-phase-item {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .phase-sticky-col {
                position: relative;
                top: 0;
            }

            .phase-card {
                margin-bottom: 2rem;
                padding: 2rem 1.5rem;
            }

            .cta-floating-container {
                margin-top: -100px;
            }

            .process-metrics-section {
                padding-bottom: 13rem;
            }

            .cta-banner-card {
                grid-template-columns: 1fr;
                padding: 2.5rem 2rem;
                gap: 2rem;
                min-height: auto;
            }

            .cta-banner-image {
                height: 220px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media(max-width: 640px) {
            .metrics-standalone-grid {
                grid-template-columns: 1fr;
            }

            .metrics-standalone-card {
                padding: 2.5rem 1.5rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom-inner {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }
    