
        /* ===== RESET & TOKENS ===== */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --navy:       #040320;
            --navy-mid:   #0a0840;
            --indigo:     #4f46e5;
            --indigo-glow:#6366f1;
            --cyan:       #06b6d4;
            --white:      #ffffff;
            --off-white:  #f0f0f8;
            --surface:    #ffffff;
            --muted:      #6b7280;
            --border:     #e5e7eb;
            --text:       #111827;
            --radius-sm:  12px;
            --radius-md:  20px;
            --radius-lg:  32px;
            --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--off-white);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* ===== NOISE TEXTURE OVERLAY ===== */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 9999;
            opacity: 0.4;
        }

        /* ===== TYPOGRAPHY ===== */
        h1, h2, h3 { font-family: 'Syne', sans-serif; letter-spacing: -0.03em; }

        /* ===== HERO ===== */
        .hero {
            min-height: 100svh;
            background: var(--navy);
            display: grid;
            place-items: center;
            position: relative;
            overflow: hidden;
            padding: 120px 24px 160px;
        }

        /* Mesh gradient blobs */
        .hero-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(90px);
            opacity: 0.35;
            animation: drift 12s ease-in-out infinite alternate;
        }
        .hero-blob-1 {
            width: 520px; height: 520px;
            background: radial-gradient(circle, #4f46e5, transparent);
            top: -120px; left: -100px;
            animation-delay: 0s;
        }
        .hero-blob-2 {
            width: 380px; height: 380px;
            background: radial-gradient(circle, #06b6d4, transparent);
            bottom: -80px; right: -80px;
            animation-delay: -5s;
        }
        .hero-blob-3 {
            width: 260px; height: 260px;
            background: radial-gradient(circle, #818cf8, transparent);
            top: 40%; left: 60%;
            animation-delay: -9s;
        }

        @keyframes drift {
            0%   { transform: translate(0, 0) scale(1); }
            100% { transform: translate(40px, 30px) scale(1.08); }
        }

        /* Grid overlay */
        .hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 820px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(99,102,241,0.15);
            border: 1px solid rgba(99,102,241,0.35);
            color: #a5b4fc;
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            margin-bottom: 36px;
            animation: fadeUp 0.8s var(--ease-out) both;
        }

        .hero-badge::before {
            content: '';
            width: 7px; height: 7px;
            border-radius: 50%;
            background: #06b6d4;
            box-shadow: 0 0 8px #06b6d4;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50%       { opacity: 0.5; transform: scale(0.85); }
        }

        .hero h1 {
            font-size: clamp(48px, 8vw, 88px);
            font-weight: 800;
            color: var(--white);
            line-height: 1.0;
            margin-bottom: 28px;
            animation: fadeUp 0.9s 0.1s var(--ease-out) both;
        }

        .hero h1 span {
            background: linear-gradient(135deg, var(--indigo-glow), var(--cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: clamp(16px, 2vw, 20px);
            color: rgba(255,255,255,0.65);
            max-width: 600px;
            margin: 0 auto 48px;
            animation: fadeUp 1s 0.2s var(--ease-out) both;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 38px;
            background: linear-gradient(135deg, var(--indigo), #4338ca);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-family: 'Syne', sans-serif;
            font-weight: 600;
            font-size: 16px;
            transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
            animation: fadeUp 1.1s 0.3s var(--ease-out) both;
        }

        .hero-cta:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(99,102,241,0.5);
        }

        .hero-cta svg { transition: transform 0.3s; }
        .hero-cta:hover svg { transform: translateX(4px); }

        /* Scroll indicator */
        .scroll-hint {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: rgba(255,255,255,0.3);
            font-size: 11px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            animation: fadeUp 1.2s 0.8s var(--ease-out) both;
        }

        .scroll-track {
            width: 1px;
            height: 50px;
            background: rgba(255,255,255,0.1);
            position: relative;
            overflow: hidden;
            border-radius: 1px;
        }

        .scroll-track::after {
            content: '';
            position: absolute;
            top: -100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(99,102,241,0.8));
            animation: scrollDrop 1.8s ease-in-out infinite;
        }

        @keyframes scrollDrop {
            0%   { top: -100%; }
            100% { top: 100%; }
        }

        /* ===== SECTION WRAPPER ===== */
        .section { padding: 120px 24px; }
        .container { max-width: 1160px; margin: 0 auto; }

        .section-label {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--indigo);
            margin-bottom: 16px;
        }

        /* ===== WHY US ===== */
        .why-us { background: var(--white); }

        .why-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: end;
            margin-bottom: 72px;
        }

        .why-header h2 {
            font-size: clamp(36px, 4vw, 52px);
            font-weight: 800;
            line-height: 1.1;
        }

        .why-header p {
            color: var(--muted);
            font-size: 17px;
            padding-bottom: 6px;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .why-card {
            position: relative;
            padding: 40px 32px;
            border-radius: var(--radius-lg);
            background: var(--off-white);
            overflow: hidden;
            transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
            cursor: default;
        }

        .why-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--indigo), var(--cyan));
            opacity: 0;
            transition: opacity 0.4s;
        }

        .why-card:hover::before { opacity: 1; }

        .why-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(79,70,229,0.25);
        }

        .why-card * { position: relative; z-index: 1; }

        .why-card-num {
            font-family: 'Syne', sans-serif;
            font-size: 56px;
            font-weight: 800;
            color: rgba(79,70,229,0.12);
            line-height: 1;
            margin-bottom: 24px;
            transition: color 0.3s;
        }

        .why-card:hover .why-card-num { color: rgba(255,255,255,0.2); }

        .why-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 14px;
            color: var(--text);
            transition: color 0.3s;
        }

        .why-card:hover h3, .why-card:hover p { color: white; }

        .why-card p {
            color: var(--muted);
            font-size: 15px;
            line-height: 1.7;
            transition: color 0.3s;
        }

        /* ===== EXPERTISE ===== */
        .expertise { background: var(--off-white); }

        .expertise-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .expertise-visual {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            aspect-ratio: 4/5;
            background: linear-gradient(145deg, var(--navy), var(--navy-mid));
        }

        .expertise-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.7;
            mix-blend-mode: luminosity;
        }

        /* Floating stat cards */
        .stat-card {
            position: absolute;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(20px);
            border-radius: var(--radius-md);
            padding: 16px 22px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .stat-card-1 { bottom: 40px; left: -30px; animation: float 4s ease-in-out infinite; }
        .stat-card-2 { top: 40px; right: -30px; animation: float 4s 1.5s ease-in-out infinite; }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50%       { transform: translateY(-10px); }
        }

        .stat-num {
            font-family: 'Syne', sans-serif;
            font-size: 28px;
            font-weight: 800;
            color: var(--indigo);
        }

        .stat-label {
            font-size: 12px;
            color: var(--muted);
            font-weight: 500;
        }

        /* Expertise list */
        .expertise-list { display: flex; flex-direction: column; gap: 0; }

        .exp-item {
            padding: 32px 0;
            border-bottom: 1px solid var(--border);
            display: grid;
            grid-template-columns: 48px 1fr;
            gap: 20px;
            align-items: start;
            transition: all 0.3s;
            cursor: default;
        }

        .exp-item:first-child { border-top: 1px solid var(--border); }

        .exp-item:hover { padding-left: 12px; }

        .exp-icon {
            width: 48px; height: 48px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, rgba(79,70,229,0.1), rgba(6,182,212,0.1));
            display: grid;
            place-items: center;
            flex-shrink: 0;
            font-size: 20px;
            transition: background 0.3s;
        }

        .exp-item:hover .exp-icon {
            background: linear-gradient(135deg, var(--indigo), var(--cyan));
        }

        .exp-content h3 {
            font-size: 19px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text);
        }

        .exp-content p {
            font-size: 15px;
            color: var(--muted);
            line-height: 1.65;
        }

        /* ===== FORM SECTION ===== */
        .form-section { background: var(--white); }

        .form-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 80px;
            align-items: start;
        }

        .form-info h2 {
            font-size: clamp(32px, 3.5vw, 48px);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .form-info p {
            color: var(--muted);
            font-size: 16px;
            margin-bottom: 48px;
        }

        .contact-cards { display: flex; flex-direction: column; gap: 16px; }

        .contact-card {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px 24px;
            background: var(--off-white);
            border-radius: var(--radius-md);
            text-decoration: none;
            color: var(--text);
            transition: all 0.3s var(--ease-out);
        }

        .contact-card:hover {
            background: var(--indigo);
            color: white;
            transform: translateX(6px);
        }

        .contact-card:hover .cc-icon { background: rgba(255,255,255,0.2); }
        .contact-card:hover .cc-sub { color: rgba(255,255,255,0.7); }

        .cc-icon {
            width: 44px; height: 44px;
            border-radius: 10px;
            background: rgba(79,70,229,0.1);
            display: grid;
            place-items: center;
            flex-shrink: 0;
            font-size: 18px;
            transition: background 0.3s;
        }

        .cc-text { flex: 1; }
        .cc-label { font-weight: 600; font-size: 14px; }
        .cc-sub { font-size: 13px; color: var(--muted); transition: color 0.3s; }

        /* The form */
        .contact-form {
            background: var(--off-white);
            border-radius: var(--radius-lg);
            padding: 48px;
        }

        .form-message {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #ecfdf5;
            border: 1px solid #a7f3d0;
            color: #059669;
            padding: 16px 22px;
            border-radius: var(--radius-md);
            margin-bottom: 28px;
            font-weight: 500;
            font-size: 15px;
        }

        .form-error {
            background: #fef2f2;
            border-color: #fca5a5;
            color: #b91c1c;
        }

        .form-success {
            background: #ecfdf5;
            border-color: #a7f3d0;
            color: #047857;
        }

        .form-message-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 999px;
            background: rgba(255,255,255,0.4);
            font-size: 0.95rem;
        }
        .honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

        .form-group { display: flex; flex-direction: column; gap: 8px; }

        .form-group label {
            font-size: 13px;
            font-weight: 600;
            color: var(--text);
            letter-spacing: 0.02em;
        }

        .contact-form input,
        .contact-form textarea,
        .contact-form select {
            width: 100%;
            padding: 16px 20px;
            background: white;
            border: 1.5px solid var(--border);
            border-radius: var(--radius-sm);
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            color: var(--text);
            transition: border-color 0.25s, box-shadow 0.25s;
            outline: none;
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder { color: #9ca3af; }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: var(--indigo);
            box-shadow: 0 0 0 4px rgba(99,102,241,0.12);
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 160px;
        }

        .contact-form-grid {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            border: none;
            border-radius: 50px;
            background: linear-gradient(135deg, var(--indigo), #4338ca);
            color: white;
            font-family: 'Syne', sans-serif;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.35s var(--ease-out);
            position: relative;
            overflow: hidden;
            margin-top: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .submit-btn::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .submit-btn:hover::after { opacity: 1; }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 48px rgba(79,70,229,0.45);
        }

        .submit-btn:active { transform: translateY(0); }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .why-header { grid-template-columns: 1fr; gap: 20px; }
            .why-grid { grid-template-columns: 1fr 1fr; }
            .expertise-grid { grid-template-columns: 1fr; gap: 60px; }
            .expertise-visual { aspect-ratio: 16/9; }
            .form-wrapper { grid-template-columns: 1fr; gap: 60px; }
        }

        @media (max-width: 640px) {
            .section { padding: 80px 20px; }
            .why-grid { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
            .contact-form { padding: 32px 24px; }
            .stat-card-1 { left: 10px; }
            .stat-card-2 { right: 10px; }
        }
    