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

        :root {
            --bg-primary: #0a0a0a;
            --bg-secondary: #111111;
            --bg-elevated: #1a1a1a;
            --accent-blue: #2563EB;
            --accent-teal: #14B8A6;
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.6);
            --text-muted: rgba(255, 255, 255, 0.4);
            --border: rgba(255, 255, 255, 0.08);
            --border-hover: rgba(255, 255, 255, 0.15);
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            cursor: none;
            overflow-x: hidden;
        }

        a, button {
            cursor: none;
        }

        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: transform 0.15s ease, background 0.15s ease;
            mix-blend-mode: difference;
        }

        .cursor-follower {
            width: 40px;
            height: 40px;
            background: rgba(102, 126, 234, 0.3);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9998;
            transform: translate(-50%, -50%);
            transition: transform 0.25s ease, left 0.15s ease, top 0.15s ease;
            filter: blur(5px);
        }

        @media (max-width: 768px) {
            .cursor, .cursor-follower { display: none; }
            body { cursor: auto; }
            a, button { cursor: pointer; }
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.98);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 1.5rem 5%;
            transition: all 0.3s ease;
        }

        nav {
            max-width: 1600px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            height: 45px;
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 100%;
            width: auto;
            object-fit: contain;
            max-height: 45px;
        }

        nav ul {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        nav a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: #ffffff;
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: #ffffff;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Mobile menu styles */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: none;
            padding: 0.5rem;
            background: none;
            border: none;
            z-index: 1001;
        }

        .hamburger {
            width: 25px;
            height: 3px;
            background: rgba(255, 255, 255, 0.8);
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active .hamburger:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-toggle.active .hamburger:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active .hamburger:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(20px);
            z-index: 999;
            padding-top: 100px;
            opacity: 0;
            transform: translateY(-20px);
            transition: all 0.3s ease;
        }

        .mobile-nav.active {
            display: flex;
            flex-direction: column;
            align-items: center;
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-nav ul {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            list-style: none;
            text-align: center;
            padding: 2rem 0;
        }

        .mobile-nav a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 500;
            padding: 1rem 2rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .mobile-nav a:hover {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.1);
        }

        @media (max-width: 768px) {
            nav ul { display: none; }
            .mobile-menu-toggle { display: flex; }
            header { padding: 1rem 1.5rem; }
            html { font-size: 14px !important; }
        }

        /* ═══════════════════════════════════════
           ANIMATIONS
        ═══════════════════════════════════════ */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Staggered animation delays */
        .fade-in:nth-child(1) { transition-delay: 0s; }
        .fade-in:nth-child(2) { transition-delay: 0.1s; }
        .fade-in:nth-child(3) { transition-delay: 0.2s; }
        .fade-in:nth-child(4) { transition-delay: 0.3s; }
        .fade-in:nth-child(5) { transition-delay: 0.4s; }

        /* Card hover animations */
        .bento-card,
        .opportunity-card,
        .tool-item,
        .audience-item {
            transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .bento-card:hover,
        .opportunity-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        }

        .tool-item:hover {
            transform: translateY(-2px);
        }

        /* Hero text animation */
        .hero-inner {
            animation: heroFadeIn 0.8s ease forwards;
        }

        @keyframes heroFadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-label {
            animation: heroFadeIn 0.6s ease 0.2s forwards;
            opacity: 0;
        }

        .hero h1 {
            animation: heroFadeIn 0.6s ease 0.3s forwards;
            opacity: 0;
        }

        .hero-description {
            animation: heroFadeIn 0.6s ease 0.4s forwards;
            opacity: 0;
        }

        .hero-actions {
            animation: heroFadeIn 0.6s ease 0.5s forwards;
            opacity: 0;
        }

        /* ═══════════════════════════════════════
           HERO SECTION
        ═══════════════════════════════════════ */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 8rem 5% 4rem;
            position: relative;
            overflow: hidden;
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 2rem 5% 3rem;
                min-height: 100vh;
                justify-content: center;
            }
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: 
                radial-gradient(ellipse 80% 50% at 50% -20%, rgba(37, 99, 235, 0.15), transparent),
                radial-gradient(ellipse 60% 40% at 80% 60%, rgba(20, 184, 166, 0.08), transparent);
            pointer-events: none;
        }

        .hero-inner {
            max-width: 1000px;
            width: 100%;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            padding: 0 2rem;
        }

        @media (min-width: 1200px) {
            .hero-inner {
                max-width: 1100px;
            }
        }

        @media (min-width: 1400px) {
            .hero-inner {
                max-width: 1200px;
            }
        }

        .hero-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.375rem 0.875rem;
            background: rgba(37, 99, 235, 0.1);
            border: 1px solid rgba(37, 99, 235, 0.2);
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 500;
            color: #60A5FA;
            margin-bottom: 1.5rem;
        }

        .hero-label::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #60A5FA;
            border-radius: 50%;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
            max-width: 900px;
        }

        @media (min-width: 1200px) {
            .hero h1 {
                font-size: clamp(3rem, 5.5vw, 5rem);
            }
        }

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

        .hero-description {
            font-size: clamp(1rem, 1.5vw, 1.35rem);
            color: var(--text-secondary);
            max-width: 700px;
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        @media (min-width: 1200px) {
            .hero-description {
                max-width: 750px;
                font-size: 1.4rem;
            }
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.875rem 1.5rem;
            background: var(--text-primary);
            color: var(--bg-primary);
            font-weight: 600;
            font-size: 0.9rem;
            border-radius: 8px;
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .btn-primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.875rem 1.5rem;
            background: transparent;
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 0.9rem;
            border: 1px solid var(--border);
            border-radius: 8px;
            text-decoration: none;
            transition: border-color 0.2s, color 0.2s;
        }

        .btn-secondary:hover {
            border-color: var(--border-hover);
            color: var(--text-primary);
        }

        /* ═══════════════════════════════════════
           SECTION BASE
        ═══════════════════════════════════════ */
        section {
            padding: 6rem 2rem;
            position: relative;
        }

        .section-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        @media (min-width: 1400px) {
            .section-inner {
                max-width: 1300px;
            }
        }

        .section-header {
            max-width: 600px;
            margin-bottom: 4rem;
        }

        .section-label {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--accent-teal);
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

        .section-description {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ═══════════════════════════════════════
           WHO THIS IS FOR - HORIZONTAL SCROLL
        ═══════════════════════════════════════ */
        .audience-section {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .audience-section .section-inner {
            padding: 0;
        }

        .audience-section .section-header {
            padding: 0 2rem;
        }

        .audience-track {
            display: flex;
            gap: 1rem;
            overflow-x: auto;
            padding: 0 2rem 1rem 2rem;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .audience-track::-webkit-scrollbar {
            display: none;
        }

        .audience-item {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.5rem;
            background: var(--bg-primary);
            border: 1px solid var(--border);
            border-radius: 10px;
            white-space: nowrap;
        }

        .audience-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(37, 99, 235, 0.1);
            border-radius: 8px;
            font-size: 1.1rem;
        }

        .audience-item h4 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .audience-item p {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* ═══════════════════════════════════════
           WHY HARITIX - BENTO GRID
        ═══════════════════════════════════════ */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 1rem;
        }

        .bento-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2rem;
            transition: border-color 0.3s;
        }

        .bento-card:hover {
            border-color: var(--border-hover);
        }

        .bento-card.span-8 { grid-column: span 8; }
        .bento-card.span-4 { grid-column: span 4; }
        .bento-card.span-6 { grid-column: span 6; }
        .bento-card.span-5 { grid-column: span 5; }
        .bento-card.span-7 { grid-column: span 7; }

        @media (max-width: 900px) {
            .bento-card.span-8,
            .bento-card.span-4,
            .bento-card.span-6,
            .bento-card.span-5,
            .bento-card.span-7 {
                grid-column: span 12;
            }
        }

        .bento-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(20, 184, 166, 0.1);
            border-radius: 12px;
            margin-bottom: 1.5rem;
            font-size: 1.25rem;
        }

        .bento-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .bento-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .bento-highlight {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(20, 184, 166, 0.1));
            border-color: rgba(37, 99, 235, 0.2);
        }

        /* ═══════════════════════════════════════
           OPPORTUNITIES - TWO COLUMN FEATURE
        ═══════════════════════════════════════ */
        .opportunities-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        @media (max-width: 768px) {
            .opportunities-grid {
                grid-template-columns: 1fr;
            }
        }

        .opportunity-card {
            position: relative;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2.5rem;
            overflow: hidden;
        }

        .opportunity-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
        }

        .opportunity-card.partner::before {
            background: linear-gradient(90deg, var(--accent-blue), transparent);
        }

        .opportunity-card.intern::before {
            background: linear-gradient(90deg, var(--accent-teal), transparent);
        }

        .opportunity-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background: rgba(148, 163, 184, 0.1);
            border-radius: 100px;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-muted);
            margin-bottom: 1.25rem;
        }

        .opportunity-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .opportunity-card > p {
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .opportunity-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .opportunity-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.625rem 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .opportunity-features li:last-child {
            border-bottom: none;
        }

        .opportunity-features .check {
            color: var(--accent-teal);
            font-weight: bold;
        }

        .opportunity-perks {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .perk-tag {
            padding: 0.375rem 0.75rem;
            background: rgba(148, 163, 184, 0.08);
            border-radius: 6px;
            font-size: 0.8rem;
            color: var(--text-secondary);
        }

        /* ═══════════════════════════════════════
           GROWTH PATH - STEPPER
        ═══════════════════════════════════════ */
        .growth-section {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .stepper {
            display: flex;
            justify-content: space-between;
            position: relative;
        }

        .stepper::before {
            content: '';
            position: absolute;
            top: 32px;
            left: 80px;
            right: 80px;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
            opacity: 0.3;
        }

        @media (max-width: 768px) {
            .stepper {
                flex-direction: column;
                gap: 2rem;
            }
            .stepper::before {
                display: none;
            }
        }

        .step {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 64px;
            height: 64px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-primary);
            border: 2px solid var(--border);
            border-radius: 16px;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-muted);
            transition: all 0.3s;
        }

        .step:hover .step-number {
            border-color: var(--accent-blue);
            color: var(--accent-blue);
        }

        .step h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .step p {
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        /* ═══════════════════════════════════════
           TOOLS - ICON LIST
        ═══════════════════════════════════════ */
        .tools-list {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }

        @media (max-width: 900px) {
            .tools-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 500px) {
            .tools-list {
                grid-template-columns: 1fr;
            }
        }

        .tool-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.25rem;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 12px;
            transition: border-color 0.2s;
        }

        .tool-item:hover {
            border-color: var(--border-hover);
        }

        .tool-icon {
            width: 44px;
            height: 44px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(37, 99, 235, 0.1);
            border-radius: 10px;
            font-size: 1.1rem;
        }

        .tool-item h4 {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.125rem;
        }

        .tool-item p {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        /* ═══════════════════════════════════════
           CERTIFICATION
        ═══════════════════════════════════════ */
        .cert-section {
            padding: 4rem 2rem;
        }

        .cert-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        @media (max-width: 900px) {
            .cert-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        .cert-content h3 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .cert-content p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .cert-content p strong {
            color: var(--text-primary);
        }

        .cert-features {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .cert-feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .cert-feature-icon {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(34, 197, 94, 0.1);
            border-radius: 50%;
            color: #22c55e;
            font-size: 0.7rem;
        }

        .cert-preview {
            position: relative;
            perspective: 1000px;
        }

        .cert-image-wrapper {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 
                0 25px 50px -12px rgba(0, 0, 0, 0.5),
                0 0 0 1px var(--border);
            transform: rotateY(-5deg) rotateX(2deg);
            transition: transform 0.4s ease;
        }

        .cert-preview:hover .cert-image-wrapper {
            transform: rotateY(0deg) rotateX(0deg) scale(1.02);
        }

        .cert-image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
        }

        .cert-image-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
            pointer-events: none;
            z-index: 1;
        }

        .cert-badge-overlay {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(8px);
            padding: 0.5rem 1rem;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--text-primary);
            border: 1px solid var(--border);
            z-index: 2;
        }

        @media (max-width: 900px) {
            .cert-preview {
                order: -1;
            }

            .cert-image-wrapper {
                transform: none;
            }

            .cert-content {
                text-align: center;
            }

            .cert-features {
                align-items: center;
            }
        }

        /* ═══════════════════════════════════════
           DISCLAIMER
        ═══════════════════════════════════════ */
        .disclaimer {
            padding: 1.5rem 2rem;
            background: rgba(251, 191, 36, 0.05);
            border-left: 3px solid #F59E0B;
            border-radius: 0 12px 12px 0;
        }

        .disclaimer h4 {
            font-size: 0.9rem;
            font-weight: 600;
            color: #FBBF24;
            margin-bottom: 0.75rem;
        }

        .disclaimer ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.375rem;
        }

        .disclaimer li {
            font-size: 0.875rem;
            color: var(--text-secondary);
            padding-left: 1rem;
            position: relative;
        }

        .disclaimer li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--text-muted);
        }

        /* ═══════════════════════════════════════
           APPLICATION FORM
        ═══════════════════════════════════════ */
        .apply-section {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border);
        }

        .form-panel {
            max-width: 640px;
            margin: 0 auto;
            background: var(--bg-primary);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 3rem;
        }

        @media (max-width: 640px) {
            .form-panel {
                padding: 2rem 1.5rem;
                border-radius: 16px;
            }
        }

        .form-title {
            font-size: 1.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .form-subtitle {
            text-align: center;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        @media (max-width: 500px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }

        .form-group {
            margin-bottom: 1.25rem;
        }

        .form-group label {
            display: block;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.875rem 1rem;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 10px;
            color: var(--text-primary);
            font-family: inherit;
            font-size: 0.9rem;
            transition: border-color 0.2s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-blue);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-muted);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394A3B8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
        }

        .form-submit {
            width: 100%;
            padding: 1rem;
            background: var(--text-primary);
            color: var(--bg-primary);
            font-family: inherit;
            font-size: 0.95rem;
            font-weight: 600;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: opacity 0.2s;
        }

        .form-submit:hover {
            opacity: 0.9;
        }

        .form-note {
            text-align: center;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 1rem;
        }

        /* ═══════════════════════════════════════
           FOOTER (from index.html)
        ═══════════════════════════════════════ */
        footer {
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 1.2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.4);
            position: relative;
            z-index: 1;
        }

        footer p {
            margin: 0.3rem 0;
            font-size: 0.9rem;
        }

        footer strong {
            color: rgba(255, 255, 255, 0.6);
        }

        /* ═══════════════════════════════════════
           SOCIAL PROOF SCROLLER
        ═══════════════════════════════════════ */
        .social-proof-section {
            padding: 5rem 0;
            background: var(--bg-primary);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            overflow: hidden;
        }

        .social-proof-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 0 2rem;
        }

        .social-proof-title {
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }

        .social-proof-subtitle {
            font-size: 0.875rem;
            color: var(--text-muted);
            font-weight: 400;
        }

        .scroller-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }

        .scroller-track {
            display: flex;
            gap: 2rem;
            width: max-content;
            animation: scroll 40s linear infinite;
        }

        .scroller-wrapper:hover .scroller-track {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @media (prefers-reduced-motion: reduce) {
            .scroller-track {
                animation: none;
            }
        }

        .profile-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            padding: 1.25rem 1.5rem;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 12px;
            min-width: 140px;
            transition: border-color 0.2s ease;
        }

        .profile-card:hover {
            border-color: var(--border-hover);
        }

        .profile-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-secondary);
            letter-spacing: 0.02em;
        }

        .profile-info {
            text-align: center;
        }

        .profile-name {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-primary);
        }

        .profile-location {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-top: 0.125rem;
        }

        .social-proof-footer {
            text-align: center;
            margin-top: 2rem;
            padding: 0 2rem;
        }

        .social-proof-note {
            font-size: 0.75rem;
            color: var(--text-muted);
            font-style: italic;
        }

        /* ═══════════════════════════════════════
           TYPEWRITER EFFECT
        ═══════════════════════════════════════ */
        .typewriter-container {
            display: inline;
        }

        .typewriter {
            display: inline;
            border-right: 3px solid var(--accent-blue);
            animation: blink 0.7s step-end infinite;
        }

        @keyframes blink {
            from, to { border-color: transparent; }
            50% { border-color: var(--accent-blue); }
        }

        .typewriter-word {
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-teal));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
