:root {
            --navy: #0A1628;
            --navy-mid: #12233D;
            --navy-light: #1A3155;
            --blue: #2E86DE;
            --blue-light: #5FA8E3;
            --gold: #D4A843;
            --gold-light: #F0D78C;
            --white: #FAFBFC;
            --gray-50: #F5F7FA;
            --gray-100: #E8ECF1;
            --gray-300: #B0BAC9;
            --gray-500: #6B7A90;
            --gray-700: #3D4C5F;
            --green: #27AE60;
            --orange: #E67E22;
            --radius: 12px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--gray-700);
            background: var(--white);
            overflow-x: hidden;
        }

        /* NAV */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 100;
            padding: 0.9rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(10, 22, 40, 0.97);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(46, 134, 222, 0.1);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }

        .nav-logo img {
            height: 32px;
        }

        .nav-logo span {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--white);
        }

        .nav-links {
            display: flex;
            gap: 1.8rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--gray-300);
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover { color: var(--white); }

        .nav-cta {
            background: var(--blue) !important;
            color: var(--white) !important;
            padding: 0.5rem 1.2rem;
            border-radius: 8px;
            font-weight: 600 !important;
        }

        .nav-cta:hover { background: var(--blue-light) !important; }

        .lang-switch {
            color: var(--gray-500) !important;
            font-size: 0.8rem !important;
            border-left: 1px solid rgba(255,255,255,0.1);
            padding-left: 1.5rem !important;
        }

        /* HERO */
        .hero {
            min-height: 100vh;
            background: linear-gradient(170deg, var(--navy) 0%, var(--navy-mid) 55%, #0D1F35 100%);
            display: flex;
            align-items: center;
            padding: 8rem 2rem 5rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -250px;
            right: -250px;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(46,134,222,0.06) 0%, transparent 70%);
            border-radius: 50%;
        }

        .grid-bg {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(46,134,222,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(46,134,222,0.03) 1px, transparent 1px);
            background-size: 70px 70px;
        }

        .hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-text h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.2rem, 4.5vw, 3.4rem);
            font-weight: 700;
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 1.3rem;
        }

        .hero-text h1 em {
            font-style: normal;
            color: var(--gold);
        }

        .hero-text p {
            font-size: 1.08rem;
            color: var(--gray-300);
            line-height: 1.7;
            margin-bottom: 2rem;
            max-width: 520px;
        }

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

        .btn {
            padding: 0.8rem 1.8rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn-primary { background: var(--blue); color: var(--white); }
        .btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(46,134,222,0.3); }
        .btn-outline { background: transparent; color: var(--gray-300); border: 1px solid rgba(255,255,255,0.15); }
        .btn-outline:hover { border-color: rgba(255,255,255,0.35); color: var(--white); }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.2rem;
        }

        .stat-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: var(--radius);
            padding: 1.5rem;
        }

        .stat-card .number {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 0.3rem;
        }

        .stat-card .label {
            font-size: 0.85rem;
            color: var(--gray-300);
            line-height: 1.4;
        }

        /* TRUST BAR */
        .trust-bar {
            background: var(--gray-50);
            padding: 2rem;
            border-bottom: 1px solid var(--gray-100);
        }

        .trust-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .trust-label {
            font-size: 0.8rem;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
        }

        .trust-logos {
            display: flex;
            gap: 2.5rem;
            align-items: center;
            flex-wrap: wrap;
        }

        .trust-logos span {
            font-size: 0.9rem;
            color: var(--gray-500);
            font-weight: 500;
            opacity: 0.7;
        }

        /* SECTIONS */
        section { padding: 5.5rem 2rem; }

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

        .section-tag {
            font-size: 0.78rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--blue);
            margin-bottom: 0.7rem;
        }

        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.7rem, 3vw, 2.4rem);
            color: var(--navy);
            margin-bottom: 0.8rem;
            line-height: 1.2;
        }

        .section-header p {
            color: var(--gray-500);
            font-size: 1.02rem;
            line-height: 1.6;
        }

        /* SERVICES */
        .services { background: var(--white); }

        .services-grid {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .service-card {
            background: var(--gray-50);
            border-radius: var(--radius);
            padding: 2rem;
            border: 1px solid transparent;
            transition: all 0.35s;
        }

        .service-card:hover {
            background: var(--white);
            border-color: var(--gray-100);
            box-shadow: 0 12px 40px rgba(0,0,0,0.06);
            transform: translateY(-4px);
        }

        .service-icon {
            width: 44px;
            height: 44px;
            background: var(--navy);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.2rem;
        }

        .service-icon svg {
            width: 22px;
            height: 22px;
            stroke: var(--gold);
            fill: none;
            stroke-width: 2;
        }

        .service-card h3 {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }

        .service-card p {
            font-size: 0.9rem;
            color: var(--gray-500);
            line-height: 1.55;
        }

        /* PRODUCT SPOTLIGHT */
        .spotlight {
            background: var(--navy);
            position: relative;
            overflow: hidden;
        }

        .spotlight::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(46,134,222,0.05) 0%, transparent 50%);
        }

        .spotlight-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .spotlight-text .section-tag { color: var(--gold); }

        .spotlight-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.7rem, 3vw, 2.2rem);
            color: var(--white);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .spotlight-text p {
            color: var(--gray-300);
            font-size: 0.98rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .spotlight-features {
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
            margin-bottom: 2rem;
        }

        .spotlight-feature {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            color: var(--gray-300);
            font-size: 0.92rem;
        }

        .spotlight-feature svg {
            width: 18px;
            height: 18px;
            stroke: var(--green);
            flex-shrink: 0;
        }

        .btn-gold {
            background: var(--gold);
            color: var(--navy);
            font-weight: 700;
        }

        .btn-gold:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
        }

        .spotlight-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .browser-mockup {
            background: #1E2D44;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.08);
            overflow: hidden;
            width: 100%;
            max-width: 480px;
        }

        .browser-bar {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1rem;
            background: rgba(0,0,0,0.2);
        }

        .browser-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .browser-dot:nth-child(1) { background: #FF5F57; }
        .browser-dot:nth-child(2) { background: #FFBD2E; }
        .browser-dot:nth-child(3) { background: #28CA41; }

        .browser-url {
            font-size: 0.72rem;
            color: var(--gray-500);
            background: rgba(0,0,0,0.2);
            padding: 0.3rem 0.8rem;
            border-radius: 4px;
            margin-left: 0.5rem;
        }

        .browser-content {
            padding: 1.5rem;
            text-align: center;
        }

        .browser-content .logo-area {
            margin-bottom: 1rem;
        }

        .browser-content h4 {
            font-family: 'Playfair Display', serif;
            color: var(--white);
            font-size: 1.1rem;
            margin-bottom: 0.4rem;
        }

        .browser-content h4 .uy { color: var(--gold); }

        .browser-content .tagline {
            font-size: 0.78rem;
            color: var(--gray-500);
        }

        .browser-content .mini-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .mini-feat {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 6px;
            padding: 0.6rem 0.4rem;
        }

        .mini-feat svg {
            width: 18px;
            height: 18px;
            stroke: var(--blue);
            fill: none;
            stroke-width: 2;
            margin-bottom: 0.3rem;
        }

        .mini-feat span {
            display: block;
            font-size: 0.68rem;
            color: var(--gray-300);
        }

        /* ── Diagonal products block ─────────────────────────── */
        .diag-section {
            background: var(--navy);
            padding: 5.5rem 2rem;
            position: relative;
        }

        .diag-wrap {
            position: relative;
            height: 360px;
            border-radius: 16px;
            overflow: hidden;
            max-width: 1100px;
            margin: 0 auto;
        }

        .diag-bg {
            position: absolute;
            inset: 0;
        }

        .diag-bg--sc {
            background: #0f1f3d;
            clip-path: polygon(0 0, 100% 0, 100% 45%, 0 70%);
        }

        .diag-bg--cp {
            background: #0d2347;
            clip-path: polygon(0 65%, 100% 40%, 100% 100%, 0 100%);
        }

        .diag-content {
            position: absolute;
            z-index: 5;
        }

        .diag-content--sc {
            top: 28px;
            left: 32px;
            max-width: 55%;
        }

        .diag-content--cp {
            bottom: 28px;
            right: 32px;
            max-width: 55%;
            text-align: right;
        }

        .diag-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.35rem;
            font-weight: 700;
            color: #ffffff;
            margin: 0.4rem 0 0.3rem;
            line-height: 1.2;
        }

        .diag-desc {
            font-size: 0.82rem;
            color: rgba(255,255,255,0.55);
            line-height: 1.55;
            margin-bottom: 0.55rem;
        }

        .diag-pills {
            display: flex;
            gap: 0.4rem;
            flex-wrap: wrap;
            margin-bottom: 0.65rem;
        }

        .diag-pills--right { justify-content: flex-end; }

        .diag-pill {
            font-size: 0.7rem;
            color: rgba(255,255,255,0.45);
            border: 0.5px solid rgba(255,255,255,0.15);
            border-radius: 999px;
            padding: 0.2rem 0.65rem;
        }

        .diag-link {
            font-size: 0.82rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: opacity 0.2s;
        }

        .diag-link:hover { opacity: 0.75; }
        .diag-link--sc { color: #4db8e8; }
        .diag-link--cp { color: #f5a623; }

        .product-badge--sc {
            background: rgba(77,184,232,0.2);
            color: #4db8e8;
            border: 0.5px solid rgba(77,184,232,0.3);
        }

        .product-badge--cp {
            background: rgba(245,166,35,0.2);
            color: #f5a623;
            border: 0.5px solid rgba(245,166,35,0.3);
        }

        @media (max-width: 900px) {
            .diag-wrap {
                height: auto;
                border-radius: 12px;
                overflow: visible;
                display: flex;
                flex-direction: column;
                gap: 1px;
            }

            .diag-bg { display: none; }

            .diag-content {
                position: static;
                max-width: 100%;
                padding: 1.8rem;
            }

            .diag-content--sc {
                background: #0f1f3d;
                border-radius: 12px 12px 0 0;
            }

            .diag-content--cp {
                background: #0d2347;
                border-radius: 0 0 12px 12px;
                text-align: left;
            }

            .diag-pills--right { justify-content: flex-start; }
        }

        /* ── Product badges ───────────────────────────────────── */
        .product-badge {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 0.28rem 0.75rem;
            border-radius: 999px;
            margin-bottom: 0.75rem;
        }

        .product-badge--blue {
            background: rgba(46,134,222,0.15);
            color: #5FA8E3;
            border: 1px solid rgba(46,134,222,0.3);
        }

        .product-badge--gold {
            background: rgba(245,166,35,0.15);
            color: #f5a623;
            border: 1px solid rgba(245,166,35,0.3);
        }

        /* ── Products divider ─────────────────────────────────── */
        .products-divider {
            background: var(--navy);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            padding: 0;
        }

        .products-divider-line {
            flex: 1;
            max-width: 300px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
        }

        .products-divider-dot {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.2);
            flex-shrink: 0;
        }

        /* ── Compatriotas spotlight ───────────────────────────── */
        .spotlight-alt {
            background: linear-gradient(170deg, #081422 0%, #0d1f38 100%);
        }

        .spotlight-alt::before {
            background: linear-gradient(225deg, rgba(245,166,35,0.06) 0%, transparent 55%);
        }

        .spotlight-text--cp .section-tag { color: #f5a623; }

        /* ── Compatriotas browser card ────────────────────────── */
        .browser-mockup--cp { border-color: rgba(245,166,35,0.15); }

        .cp-feed-ui {
            padding: 0;
        }

        .cp-feed-topbar {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.06);
            background: rgba(13,35,71,0.5);
        }

        .cp-feed-brand {
            font-family: 'Playfair Display', serif;
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--white);
        }

        .cp-feed-brand span { color: #f5a623; }

        .cp-article-card {
            margin: 0.9rem;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(245,166,35,0.12);
            border-radius: 8px;
            padding: 0.85rem;
        }

        .cp-article-meta {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .cp-cat {
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #4db8e8;
            background: rgba(77,184,232,0.12);
            border: 1px solid rgba(77,184,232,0.2);
            padding: 0.15rem 0.5rem;
            border-radius: 999px;
        }

        .cp-date {
            font-size: 0.67rem;
            color: var(--gray-500);
        }

        .cp-headline {
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--white);
            line-height: 1.4;
            margin-bottom: 0.55rem;
        }

        .cp-debate-q {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.7rem;
            color: var(--gray-300);
            font-style: italic;
            margin-bottom: 0.7rem;
        }

        .cp-vote-row {
            display: flex;
            gap: 0.5rem;
        }

        .cp-vote {
            flex: 1;
            padding: 0.35rem 0.5rem;
            border-radius: 6px;
            font-size: 0.7rem;
            font-weight: 600;
            font-family: 'DM Sans', sans-serif;
            border: none;
            cursor: default;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
        }

        .cp-vote span {
            font-size: 0.75rem;
            font-weight: 700;
        }

        .cp-vote.favor {
            background: rgba(45,122,58,0.25);
            color: #6fcf97;
            border: 1px solid rgba(45,122,58,0.35);
        }

        .cp-vote.contra {
            background: rgba(180,40,40,0.2);
            color: #eb7f7f;
            border: 1px solid rgba(180,40,40,0.3);
        }

        .cp-feed-footer {
            padding: 0.6rem 1rem;
            font-size: 0.67rem;
            color: var(--gray-500);
            border-top: 1px solid rgba(255,255,255,0.05);
            text-align: right;
        }

        /* FOUNDER */
        .founder { background: var(--gray-50); }

        .founder-inner {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 3rem;
            align-items: start;
        }

        .founder-avatar {
            width: 120px;
            height: 120px;
            background: var(--navy);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gold);
        }

        .founder-text h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            color: var(--navy);
            margin-bottom: 0.3rem;
        }

        .founder-title {
            font-size: 0.9rem;
            color: var(--blue);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .founder-text p {
            color: var(--gray-500);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .founder-companies {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
            margin-top: 0.8rem;
        }

        .company-tag {
            background: var(--white);
            border: 1px solid var(--gray-100);
            border-radius: 6px;
            padding: 0.3rem 0.7rem;
            font-size: 0.78rem;
            color: var(--gray-700);
            font-weight: 500;
        }

        .linkedin-link {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            color: var(--blue);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            margin-top: 0.8rem;
        }

        .linkedin-link:hover { text-decoration: underline; }

        /* HOW WE WORK */
        .how-section { background: var(--white); }

        .how-grid {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .how-step { text-align: center; }

        .step-num {
            width: 48px;
            height: 48px;
            background: var(--navy);
            color: var(--gold);
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            font-weight: 700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }

        .how-step h3 {
            font-size: 1rem;
            color: var(--navy);
            margin-bottom: 0.4rem;
        }

        .how-step p {
            font-size: 0.88rem;
            color: var(--gray-500);
            line-height: 1.5;
        }

        /* CONTACT */
        .contact {
            background: var(--navy);
            text-align: center;
        }

        .contact .section-tag { color: var(--gold); }
        .contact h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.7rem, 3vw, 2.4rem);
            color: var(--white);
            margin-bottom: 0.8rem;
        }
        .contact > p,
        .contact-desc {
            color: var(--gray-300);
            font-size: 1rem;
            margin-bottom: 2.5rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .contact-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: var(--radius);
            padding: 1.8rem;
            text-align: left;
        }

        .contact-card h4 {
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--gold);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .contact-card p {
            color: var(--gray-300);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .contact-card a {
            color: var(--blue-light);
            text-decoration: none;
        }

        .contact-card a:hover { text-decoration: underline; }

        .contact-email-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--blue);
            color: var(--white);
            padding: 0.8rem 2rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            margin-top: 2rem;
            transition: all 0.3s;
        }

        .contact-email-btn:hover { background: var(--blue-light); transform: translateY(-2px); }

        .contact-form-wrapper {
            max-width: 500px;
            margin: 2.5rem auto 0;
            text-align: left;
        }

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

        .form-group label {
            display: block;
            font-size: 0.82rem;
            color: var(--gray-300);
            margin-bottom: 0.4rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            color: var(--white);
            font-family: 'DM Sans', sans-serif;
            font-size: 0.92rem;
            outline: none;
            transition: border-color 0.3s;
        }

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

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

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

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

        .form-submit {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--blue);
            color: var(--white);
            padding: 0.8rem 2rem;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            font-family: 'DM Sans', sans-serif;
            transition: all 0.3s;
            margin-top: 0.5rem;
        }

        .form-submit:hover { background: var(--blue-light); transform: translateY(-2px); }
        .form-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

        .form-message {
            margin-top: 1rem;
            padding: 0.8rem 1rem;
            border-radius: 8px;
            font-size: 0.9rem;
            display: none;
        }

        .form-message.success {
            display: block;
            background: rgba(39, 174, 96, 0.15);
            border: 1px solid rgba(39, 174, 96, 0.3);
            color: #6FCF97;
        }

        .form-message.error {
            display: block;
            background: rgba(235, 87, 87, 0.15);
            border: 1px solid rgba(235, 87, 87, 0.3);
            color: #EB5757;
        }

        .recaptcha-wrapper {
            margin: 1rem 0;
        }

        /* FOOTER */
        footer {
            background: #060E1A;
            padding: 2rem;
            border-top: 1px solid rgba(255,255,255,0.04);
        }

        .footer-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        footer p {
            color: var(--gray-500);
            font-size: 0.82rem;
        }

        .footer-links {
            display: flex;
            gap: 1.5rem;
        }

        .footer-links a {
            color: var(--gray-500);
            text-decoration: none;
            font-size: 0.82rem;
        }

        .footer-links a:hover { color: var(--gray-300); }

        /* ANIMATIONS */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(25px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-text h1 { animation: fadeInUp 0.8s ease both; }
        .hero-text p { animation: fadeInUp 0.8s ease 0.15s both; }
        .hero-buttons { animation: fadeInUp 0.8s ease 0.3s both; }
        .hero-stats { animation: fadeInUp 0.8s ease 0.45s both; }

        /* RESPONSIVE */
        @media (max-width: 900px) {
            .nav-links { display: none; }
            .hero-inner { grid-template-columns: 1fr; }
            .hero-stats { grid-template-columns: repeat(2, 1fr); }
            .services-grid { grid-template-columns: 1fr; }
            .spotlight-inner { grid-template-columns: 1fr; }
            .spotlight-visual { order: -1; }
            .founder-inner { grid-template-columns: 1fr; text-align: center; }
            .founder-avatar { margin: 0 auto; }
            .founder-companies { justify-content: center; }
            .how-grid { grid-template-columns: 1fr; gap: 1.5rem; }
            .contact-cards { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
            .footer-inner { flex-direction: column; text-align: center; }
        }
