
    :root {
        --navy: #0A1628;
        --navy-mid: #0F2040;
        --blue: #1E4FD8;
        --blue-bright: #2563EB;
        --blue-light: #22C55E;
        --gold: #22C55E;
        --gold-light: #22C55E;
        --white: #FFFFFF;
        --gray-light: #F0F4FF;
        --gray-mid: #E2E8F0;
        --gray-text: #64748B;
        --text-dark: #0F172A;
        --shadow-sm: 0 2px 12px rgba(10, 22, 40, 0.08);
        --shadow-md: 0 8px 32px rgba(10, 22, 40, 0.12);
        --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.18);
        --radius: 16px;
        --radius-sm: 10px;
        --radius-lg: 24px;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Inter', sans-serif;
        background: #fff;
        color: var(--text-dark);
        overflow-x: hidden;
    }

    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar {
        width: 6px;
    }

    ::-webkit-scrollbar-track {
        background: var(--navy);
    }

    ::-webkit-scrollbar-thumb {
        background: var(--blue);
        border-radius: 3px;
    }

    /* ===== HEADER ===== */
    #header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 20px 0;
        transition: all 0.4s ease;
        background: transparent;
    }

    #header.scrolled {
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        padding: 12px 0;
        box-shadow: 0 2px 24px rgba(10, 22, 40, 0.10);
    }

    .nav-logo {
        font-size: 1.4rem;
        font-weight: 800;
        letter-spacing: -0.5px;
        color: var(--white);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: color 0.3s;
    }

    .nav-logo .logo-icon {
        width: 38px;
        height: 38px;
        background: linear-gradient(135deg, var(--blue), var(--blue-light));
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        color: white;
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    }

    .nav-logo span.brand-text {
        color: var(--white);
        transition: color 0.3s;
    }

    .nav-logo span.brand-accent {
        color: var(--gold);
    }

    #header.scrolled .nav-logo span.brand-text {
        color: var(--navy);
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 8px;
        list-style: none;
    }

    .nav-links a {
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        font-weight: 500;
        font-size: 0.9rem;
        padding: 8px 14px;
        border-radius: 8px;
        transition: all 0.2s;
    }

    .nav-links a:hover {
        color: white;
        background: rgba(255, 255, 255, 0.1);
    }

    #header.scrolled .nav-links a {
        color: var(--gray-text);
    }

    #header.scrolled .nav-links a:hover {
        color: var(--blue);
        background: var(--gray-light);
    }

    .btn-nav {
        background: linear-gradient(135deg, var(--blue), var(--blue-light));
        color: white !important;
        padding: 10px 20px !important;
        border-radius: 10px !important;
        font-weight: 600 !important;
        box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
        transition: all 0.3s !important;
    }

    .btn-nav:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45) !important;
        background: var(--blue) !important;
    }

    .hamburger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: white;
        margin: 5px 0;
        border-radius: 2px;
        transition: all 0.3s;
    }

    #header.scrolled .hamburger span {
        background: var(--navy);
    }

    /* ===== HERO ===== */
    .hero {
        min-height: 100vh;
        background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #112255 100%);
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        padding: 100px 0 60px;
    }

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    }

    .hero-grid {
        position: absolute;
        inset: 0;
        opacity: 0.04;
        background-image: linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
        background-size: 60px 60px;
    }

    .hero-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        pointer-events: none;
    }

    .hero-orb-1 {
        width: 500px;
        height: 500px;
        background: rgba(37, 99, 235, 0.2);
        top: -100px;
        right: -100px;
    }

    .hero-orb-2 {
        width: 300px;
        height: 300px;
        background: rgba(212, 168, 67, 0.08);
        bottom: 50px;
        left: 10%;
    }

    .trust-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border-radius: 50px;
        padding: 8px 16px;
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
        margin-bottom: 28px;
    }

    .trust-badge .dot {
        width: 8px;
        height: 8px;
        background: #22C55E;
        border-radius: 50%;
        animation: pulse-green 2s infinite;
    }

    @keyframes pulse-green {

        0%,
        100% {
            box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4)
        }

        50% {
            box-shadow: 0 0 0 6px rgba(34, 197, 94, 0)
        }
    }

    .hero h1 {
        font-size: clamp(2rem, 4.5vw, 3.2rem);
        font-weight: 800;
        color: white;
        line-height: 1.15;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }

    .hero h1 .highlight {
        color: var(--gold);
        position: relative;
    }

    .hero-sub {
        font-size: 1.05rem;
        color: rgba(255, 255, 255, 0.72);
        line-height: 1.7;
        margin-bottom: 32px;
        max-width: 520px;
    }

    .hero-benefits {
        list-style: none;
        margin-bottom: 36px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .hero-benefits li {
        color: rgba(255, 255, 255, 0.88);
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .hero-benefits li .check-icon {
        width: 22px;
        height: 22px;
        background: rgba(34, 197, 94, 0.2);
        border: 1px solid rgba(34, 197, 94, 0.4);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 0.7rem;
        color: #4ADE80;
    }

    .btn-primary-cta {
        background: linear-gradient(135deg, var(--blue), var(--blue-light));
        color: white;
        border: none;
        padding: 14px 28px;
        border-radius: 12px;
        font-weight: 700;
        font-size: 0.95rem;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 6px 24px rgba(37, 99, 235, 0.4);
        transition: all 0.3s;
    }

    .btn-primary-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 32px rgba(37, 99, 235, 0.55);
        color: white;
        background: var(--blue);
    }

    .btn-whatsapp-cta {
        background: transparent;
        color: white;
        border: 1.5px solid rgba(255, 255, 255, 0.3);
        padding: 14px 28px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 0.95rem;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s;
    }

    .btn-whatsapp-cta:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
        color: white;
    }

    .hero-visual {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-card-main {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
        border: 1px solid rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(20px);
        border-radius: var(--radius-lg);
        padding: 36px;
        width: 100%;
        max-width: 420px;
        box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
        position: relative;
        overflow: hidden;
    }

    .hero-card-main::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--gold), var(--blue-light), transparent);
    }

    .cert-visual {
        background: linear-gradient(135deg, #1a3a6e, #0e2550);
        border-radius: 14px;
        padding: 28px;
        margin-bottom: 24px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        position: relative;
        overflow: hidden;
    }

    .cert-visual::after {
        content: '';
        position: absolute;
        top: -30px;
        right: -30px;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: rgba(37, 99, 235, 0.3);
        filter: blur(20px);
    }

    .cert-seal {
        width: 64px;
        height: 64px;
        background: linear-gradient(135deg, var(--gold), var(--gold-light));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        margin-bottom: 16px;
        box-shadow: 0 8px 24px rgba(212, 168, 67, 0.4);
        animation: float 3s ease-in-out infinite;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0)
        }

        50% {
            transform: translateY(-8px)
        }
    }

    .cert-title {
        color: var(--gold);
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 4px;
    }

    .cert-name {
        color: white;
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 2px;
    }

    .cert-type {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.8rem;
    }

    .cert-info {
        display: flex;
        gap: 12px;
        margin-top: 16px;
    }

    .cert-info-item {
        background: rgba(255, 255, 255, 0.06);
        border-radius: 8px;
        padding: 10px 14px;
        flex: 1;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .cert-info-item .label {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.68rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 3px;
    }

    .cert-info-item .value {
        color: white;
        font-size: 0.88rem;
        font-weight: 600;
    }

    .hero-card-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .hero-stat-item {
        text-align: center;
        padding: 14px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hero-stat-item .num {
        font-size: 1.5rem;
        font-weight: 800;
        color: white;
        line-height: 1;
    }

    .hero-stat-item .num span {
        color: var(--gold);
    }

    .hero-stat-item .lbl {
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.55);
        margin-top: 4px;
    }

    .floating-badge {
        position: absolute;
        background: white;
        border-radius: 12px;
        padding: 10px 14px;
        box-shadow: var(--shadow-md);
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.82rem;
    }

    .floating-badge-1 {
        top: 20px;
        right: -20px;
        animation: floatBadge 4s ease-in-out infinite;
    }

    .floating-badge-2 {
        bottom: 30px;
        left: -20px;
        animation: floatBadge 4s ease-in-out infinite 1.5s;
    }

    @keyframes floatBadge {

        0%,
        100% {
            transform: translateY(0)
        }

        50% {
            transform: translateY(-10px)
        }
    }

    .floating-badge .icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
    }

    .floating-badge .text {
        font-weight: 600;
        color: var(--navy);
        line-height: 1.2;
    }

    .floating-badge .sub {
        font-size: 0.7rem;
        color: var(--gray-text);
    }

    /* ===== SECTION COMMON ===== */
    section {
        padding: 96px 0;
    }

    .section-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--blue);
        background: rgba(37, 99, 235, 0.08);
        border: 1px solid rgba(37, 99, 235, 0.15);
        padding: 6px 14px;
        border-radius: 50px;
        margin-bottom: 16px;
    }

    .section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
        font-weight: 800;
        color: var(--navy);
        line-height: 1.2;
        letter-spacing: -0.5px;
        margin-bottom: 16px;
    }

    .section-sub {
        font-size: 1.05rem;
        color: var(--gray-text);
        line-height: 1.7;
        max-width: 540px;
    }

    /* ===== NUMBERS ===== */
    .numbers-section {
        background: var(--navy);
        padding: 72px 0;
    }

    .stat-card {
        text-align: center;
        padding: 36px 24px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--radius);
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
    }

    .stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
        transform: scaleX(0);
        transition: transform 0.4s;
    }

    .stat-card:hover {
        background: rgba(255, 255, 255, 0.07);
        transform: translateY(-4px);
    }

    .stat-card:hover::before {
        transform: scaleX(1);
    }

    .stat-num {
        font-size: 3rem;
        font-weight: 900;
        color: white;
        line-height: 1;
        margin-bottom: 8px;
    }

    .stat-num .accent {
        color: var(--gold);
    }

    .stat-label {
        color: rgba(255, 255, 255, 0.65);
        font-size: 0.88rem;
        font-weight: 500;
    }

    /* ===== ABOUT ===== */
    .about-section {
        background: var(--gray-light);
    }

    .about-image-wrap {
        position: relative;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
    }

    .about-image-placeholder {
        height: 460px;
        background: linear-gradient(135deg, var(--navy) 0%, #1a3a7a 100%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        position: relative;
        overflow: hidden;
    }

    .about-image-placeholder img {
        width: 100%;
        height: 450px;
        object-fit: cover;
        border-radius: 20px;
    }

    .about-image-placeholder::before {
        content: '';
        position: absolute;
        inset: 0;
        opacity: 0.05;
        background-image: linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
        background-size: 40px 40px;
    }

    .about-img-icon {
        font-size: 4rem;
        color: rgba(255, 255, 255, 0.3);
        margin-bottom: 8px;
    }

    .about-img-label {
        color: rgba(255, 255, 255, 0.4);
        font-size: 0.85rem;
    }

    .about-badge {
        position: absolute;
        bottom: 28px;
        left: -16px;
        background: white;
        border-radius: 14px;
        padding: 14px 18px;
        box-shadow: var(--shadow-md);
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .about-badge .icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, var(--blue), var(--blue-light));
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.1rem;
    }

    .about-badge .text strong {
        display: block;
        font-size: 0.95rem;
        color: var(--navy);
    }

    .about-badge .text span {
        font-size: 0.78rem;
        color: var(--gray-text);
    }

    /* ===== SERVICES ===== */
    .services-section {
        background: white;
    }

    .service-card {
        background: white;
        border: 1.5px solid var(--gray-mid);
        border-radius: var(--radius);
        padding: 32px;
        height: 100%;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
        box-shadow: var(--shadow-sm);
    }

    .service-card::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--blue), var(--blue-light));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s;
    }

    .service-card:hover {
        border-color: var(--blue-light);
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-icon {
        width: 56px;
        height: 56px;
        background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.15));
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 20px;
        transition: all 0.3s;
        border: 1px solid rgba(37, 99, 235, 0.12);
    }

    .service-card:hover .service-icon {
        background: linear-gradient(135deg, var(--blue), var(--blue-light));
        color: white;
        border-color: transparent;
    }

    .service-card h3 {
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 10px;
    }

    .service-card p {
        color: var(--gray-text);
        font-size: 0.9rem;
        line-height: 1.65;
        margin-bottom: 24px;
    }

    .btn-service {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--blue);
        font-weight: 600;
        font-size: 0.88rem;
        text-decoration: none;
        transition: all 0.2s;
    }

    .btn-service:hover {
        gap: 10px;
        color: var(--navy);
    }

    /* ===== CTA MID ===== */
    .cta-mid {
        background: linear-gradient(135deg, var(--blue) 0%, #1a3fa8 100%);
        padding: 72px 0;
        position: relative;
        overflow: hidden;
    }

    .cta-mid::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    }

    .cta-mid h2 {
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        font-weight: 800;
        color: white;
        margin-bottom: 12px;
    }

    .cta-mid p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1rem;
        margin-bottom: 0;
    }

    .btn-cta-white {
        background: white;
        color: var(--blue);
        padding: 14px 28px;
        border-radius: 12px;
        font-weight: 700;
        font-size: 0.95rem;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
        transition: all 0.3s;
    }

    .btn-cta-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25);
        color: var(--blue);
    }

    /* ===== HOW IT WORKS ===== */
    .how-section {
        background: var(--gray-light);
    }

    .timeline {
        position: relative;
    }

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, transparent, var(--blue-light), transparent);
        transform: translateX(-50%);
    }

    .timeline-step {
        display: flex;
        gap: 32px;
        margin-bottom: 48px;
        position: relative;
        align-items: flex-start;
    }

    .timeline-step:nth-child(even) {
        flex-direction: row-reverse;
    }

    .step-num {
        width: 52px;
        height: 52px;
        background: linear-gradient(135deg, var(--blue), var(--blue-light));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        font-weight: 800;
        color: white;
        flex-shrink: 0;
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
        position: relative;
        z-index: 2;
    }

    .step-content {
        background: white;
        border-radius: var(--radius);
        padding: 28px;
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--gray-mid);
        flex: 1;
        transition: all 0.3s;
    }

    .step-content:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-2px);
    }

    .step-content h4 {
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 8px;
        font-size: 1.05rem;
    }

    .step-content p {
        color: var(--gray-text);
        font-size: 0.9rem;
        line-height: 1.6;
        margin: 0;
    }

    .step-icon {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    /* ===== DIFFERENTIALS ===== */
    .diff-section {
        background: white;
    }

    .diff-card {
        background: var(--gray-light);
        border: 1px solid rgba(37, 99, 235, 0.08);
        border-radius: var(--radius);
        padding: 36px;
        height: 100%;
        transition: all 0.3s;
        position: relative;
    }

    .diff-card:hover {
        background: white;
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
        border-color: rgba(37, 99, 235, 0.2);
    }

    .diff-icon {
        width: 52px;
        height: 52px;
        background: linear-gradient(135deg, var(--blue), var(--blue-light));
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        color: white;
        margin-bottom: 20px;
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
    }

    .diff-card h3 {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 10px;
    }

    .diff-card p {
        color: var(--gray-text);
        font-size: 0.9rem;
        line-height: 1.65;
        margin: 0;
    }

    /* ===== MISSION ===== */
    .mission-section {
        background: linear-gradient(135deg, var(--navy), #0e2550);
        position: relative;
        overflow: hidden;
    }

    .mission-section::before {
        content: '';
        position: absolute;
        inset: 0;
        opacity: 0.04;
        background-image: linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
        background-size: 50px 50px;
    }

    .mission-card {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        border-radius: var(--radius-lg);
        padding: 48px;
        position: relative;
    }

    .mission-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .mission-quote {
        font-size: clamp(1.1rem, 2.5vw, 1.35rem);
        color: white;
        line-height: 1.75;
        font-weight: 400;
        margin-bottom: 24px;
    }

    .mission-quote em {
        color: var(--gold);
        font-style: normal;
        font-weight: 600;
    }

    .mission-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.85rem;
    }

    /* ===== COVERAGE ===== */
    .coverage-section {
        background: var(--gray-light);
    }

    .city-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 32px;
    }

    .city-tag {
        background: white;
        border: 1.5px solid var(--gray-mid);
        border-radius: 50px;
        padding: 8px 18px;
        font-size: 0.88rem;
        font-weight: 500;
        color: var(--navy);
        display: flex;
        align-items: center;
        gap: 6px;
        transition: all 0.2s;
        box-shadow: var(--shadow-sm);
    }

    .city-tag:hover {
        border-color: var(--blue);
        color: var(--blue);
        box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
        transform: translateY(-2px);
    }

    .city-tag i {
        color: var(--blue);
        font-size: 0.75rem;
    }

    .coverage-info {
        background: white;
        border-radius: var(--radius);
        padding: 32px;
        border: 1px solid var(--gray-mid);
        box-shadow: var(--shadow-sm);
        margin-top: 40px;
    }

    .coverage-info h4 {
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 12px;
        font-size: 1.05rem;
    }

    .coverage-info p {
        color: var(--gray-text);
        font-size: 0.92rem;
        line-height: 1.65;
        margin: 0;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials-section {
        background: var(--navy);
    }

    .testimonial-slider {
        position: relative;
        overflow: hidden;
    }

    .testimonials-track {
        display: flex;
        transition: transform 0.5s ease;
    }

    .testimonial-card {
        min-width: 100%;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-lg);
        padding: 40px;
        display: none;
    }

    .testimonial-card.active {
        display: block;
    }

    .stars {
        color: var(--gold);
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .testimonial-text {
        font-size: 1.08rem;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.75;
        margin-bottom: 28px;
        font-style: italic;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .author-avatar {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, var(--blue), var(--blue-light));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        color: white;
        font-size: 1.1rem;
    }

    .author-name {
        font-weight: 700;
        color: white;
        margin-bottom: 2px;
    }

    .author-role {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.82rem;
    }

    .slider-controls {
        display: flex;
        gap: 8px;
        margin-top: 28px;
        justify-content: center;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        cursor: pointer;
        transition: all 0.3s;
        border: none;
        padding: 0;
    }

    .slider-dot.active {
        background: var(--gold);
        width: 24px;
        border-radius: 4px;
    }

    /* ===== FAQ ===== */
    .faq-section {
        background: white;
    }

    .faq-item {
        border: 1.5px solid var(--gray-mid);
        border-radius: var(--radius-sm);
        margin-bottom: 10px;
        overflow: hidden;
        transition: all 0.3s;
    }

    .faq-item.open {
        border-color: var(--blue-light);
        box-shadow: var(--shadow-sm);
    }

    .faq-question {
        width: 100%;
        background: none;
        border: none;
        text-align: left;
        padding: 20px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        cursor: pointer;
        transition: all 0.2s;
    }

    .faq-question:hover {
        background: var(--gray-light);
    }

    .faq-item.open .faq-question {
        background: rgba(37, 99, 235, 0.04);
    }

    .faq-question-text {
        font-weight: 600;
        color: var(--navy);
        font-size: 0.97rem;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        background: var(--gray-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        color: var(--blue);
        flex-shrink: 0;
        transition: all 0.3s;
    }

    .faq-item.open .faq-icon {
        background: var(--blue);
        color: white;
        transform: rotate(180deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .faq-answer-inner {
        padding: 0 24px 20px;
        color: var(--gray-text);
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .faq-item.open .faq-answer {
        max-height: 200px;
    }

    /* ===== LOCATION ===== */
    .location-section {
        background: var(--gray-light);
    }

    .map-container {
        border-radius: var(--radius);
        overflow: hidden;
        height: 380px;
        box-shadow: var(--shadow-md);
    }

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
        filter: contrast(1.05) brightness(0.98);
    }

    .contact-info-card {
        background: white;
        border-radius: var(--radius);
        padding: 36px;
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--gray-mid);
        height: 100%;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 24px;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
        background: rgba(37, 99, 235, 0.08);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--blue);
        font-size: 1rem;
        flex-shrink: 0;
    }

    .contact-label {
        font-size: 0.75rem;
        color: var(--gray-text);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 3px;
    }

    .contact-value {
        font-weight: 600;
        color: var(--navy);
        font-size: 0.95rem;
    }

    .contact-btns {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 28px;
    }

    .btn-contact {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 13px 20px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 0.88rem;
        text-decoration: none;
        transition: all 0.2s;
    }

    .btn-maps {
        background: var(--gray-light);
        color: var(--navy);
        border: 1.5px solid var(--gray-mid);
    }

    .btn-maps:hover {
        background: var(--gray-mid);
        color: var(--navy);
    }

    .btn-waze {
        background: rgba(0, 130, 210, 0.08);
        color: #0082D2;
        border: 1.5px solid rgba(0, 130, 210, 0.2);
    }

    .btn-waze:hover {
        background: rgba(0, 130, 210, 0.15);
        color: #0082D2;
    }

    .btn-whatsapp-solid {
        background: #25D366;
        color: white;
        border: none;
    }

    .btn-whatsapp-solid:hover {
        background: #1DB954;
        color: white;
        transform: translateY(-1px);
    }

    /* ===== CTA FINAL ===== */
    .cta-final {
        background: linear-gradient(135deg, var(--navy) 0%, #0e2550 100%);
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }

    .cta-final::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
    }

    .cta-final-card {
        position: relative;
    }

    .cta-final h2 {
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
        font-weight: 800;
        color: white;
        margin-bottom: 16px;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .cta-final p {
        color: rgba(255, 255, 255, 0.75);
        font-size: 1.05rem;
        margin-bottom: 32px;
    }

    .cta-benefits {
        list-style: none;
        margin-bottom: 40px;
    }

    .cta-benefits li {
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    .cta-benefits li i {
        color: #4ADE80;
    }

    .btn-whatsapp-large {
        background: #25D366;
        color: white;
        border: none;
        padding: 16px 36px;
        border-radius: 14px;
        font-weight: 700;
        font-size: 1.05rem;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
        transition: all 0.3s;
    }

    .btn-whatsapp-large:hover {
        background: #1DB954;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
    }

    .cta-trust {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-top: 24px;
    }

    .cta-trust img {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.2);
    }

    .cta-trust-avatars {
        display: flex;
    }

    .cta-trust-avatars .avatar-placeholder {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: linear-gradient(135deg, var(--blue), var(--blue-light));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        font-weight: 700;
        color: white;
        margin-left: -8px;
    }

    .cta-trust-avatars .avatar-placeholder:first-child {
        margin-left: 0;
    }

    .cta-trust-text {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.85rem;
    }

    .cta-trust-text strong {
        color: white;
    }

    /* ===== FOOTER ===== */
    footer {
        background: #060e1c;
        padding: 60px 0 24px;
    }

    .footer-logo {
        font-size: 1.3rem;
        font-weight: 800;
        color: white;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .footer-logo .logo-icon {
        width: 34px;
        height: 34px;
        background: linear-gradient(135deg, var(--blue), var(--blue-light));
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        color: white;
    }

    footer p {
        color: rgba(255, 255, 255, 0.45);
        font-size: 0.88rem;
        line-height: 1.65;
    }

    .footer-title {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.78rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 16px;
    }

    .footer-links {
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.45);
        text-decoration: none;
        font-size: 0.88rem;
        transition: color 0.2s;
    }

    .footer-links a:hover {
        color: white;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        margin-top: 48px;
        padding-top: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: gap;
        gap: 12px;
    }

    .footer-bottom p {
        margin: 0;
    }

    /* ===== WHATSAPP FLOAT ===== */
    .whatsapp-float {
        position: fixed;
        bottom: 28px;
        right: 28px;
        z-index: 9999;
        background: #25D366;
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        text-decoration: none;
        box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
        animation: waPulse 3s ease-in-out infinite;
        transition: all 0.3s;
    }

    .whatsapp-float:hover {
        background: #1DB954;
        color: white;
        transform: scale(1.1);
        box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
    }

    @keyframes waPulse {

        0%,
        100% {
            box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.3)
        }

        50% {
            box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0)
        }
    }

    .whatsapp-label {
        position: fixed;
        bottom: 42px;
        right: 100px;
        z-index: 9999;
        background: white;
        color: var(--navy);
        font-weight: 600;
        font-size: 0.82rem;
        padding: 8px 14px;
        border-radius: 8px;
        box-shadow: var(--shadow-md);
        white-space: nowrap;
        animation: fadeInWA 1s ease 2s both;
    }

    .whatsapp-label::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -6px;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        border-left: 6px solid white;
    }

    @keyframes fadeInWA {
        from {
            opacity: 0;
            transform: translateX(-8px)
        }

        to {
            opacity: 1;
            transform: translateX(0)
        }
    }

    /* ===== RESPONSIVE ===== */
    @media(max-width:768px) {
        section {
            padding: 72px 0;
        }

        .hero {
            padding: 90px 0 60px;
        }

        .timeline::before {
            display: none;
        }

        .timeline-step,
        .timeline-step:nth-child(even) {
            flex-direction: column;
        }

        .hero-visual {
            margin-top: 48px;
        }

        .floating-badge-1,
        .floating-badge-2 {
            display: none;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }

        .hamburger {
            display: block;
        }

        .nav-links {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            flex-direction: column;
            padding: 20px;
            box-shadow: var(--shadow-md);
        }

        .nav-links.open {
            display: flex;
        }

        .nav-links a {
            color: var(--navy) !important;
            padding: 12px 16px;
        }

        .whatsapp-label {
            display: none;
        }
    }

    @media(max-width:576px) {
        .stat-num {
            font-size: 2.4rem;
        }

        .hero-card-stats {
            grid-template-columns: 1fr 1fr;
        }
    }

    /* ===== UTILITIES ===== */
    .text-gold {
        color: var(--gold);
    }

    .bg-navy-grad {
        background: linear-gradient(135deg, var(--navy), #0e2550);
    }

    .divider {
        height: 1px;
        background: var(--gray-mid);
        margin: 0;
    }