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

        :root {
            /* Paleta oficial Ether Business (Manual de Marca) */
            --brand-navy: #00357a;       /* Azul Real / Ultramar — color primario */
            --brand-indigo: #3533cd;     /* secundario */
            --brand-purple: #6b1fad;     /* Morado Oscuro / Berenjena */
            --brand-lavender: #8c52ff;   /* Morado Suave / Lavanda */
            --brand-mint: #7efbd2;       /* Menta / Aguamarina — acento */
            --brand-cyan: #5ce1e6;       /* Turquesa Vibrante / Cian — acento */

            --bg-dark: #041b38;          /* derivado de --brand-navy, oscurecido para fondo */
            --bg-darker: #020e1e;
            --bg-card: #0a2748;
            --bg-card-hover: #0f3158;
            --accent: var(--brand-cyan);
            --accent-soft: var(--brand-mint);
            --text-primary: #f3f6f8;
            --text-secondary: #ccd6e0;
            --text-muted: #8a99a8;
            --border-subtle: rgba(255,255,255,0.08);
            --gold: #d4af7a; /* solo uso semántico (aviso "pendiente"), no es color de marca */
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', -apple-system, sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--bg-dark);
        }

        h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif; font-weight: 800;
        }

        a { color: inherit; }

        img { max-width: 100%; display: block; }

        /* Header — mobile first */
        header {
            background-color: rgba(6, 13, 22, 0.94);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid var(--border-subtle);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.85rem 1.25rem;
            gap: 1rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            text-decoration: none;
            flex-shrink: 0;
        }

        .logo-img {
            height: 48px;
            width: auto;
            display: block;
        }

        /* Navegación de escritorio: oculta por defecto (mobile-first) */
        .nav-desktop {
            display: none;
            align-items: center;
            gap: 2rem;
        }

        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.25s;
        }

        .nav-link:hover {
            color: var(--accent);
        }

        .nav-cta {
            background-color: var(--accent);
            color: var(--bg-darker) !important;
            padding: 0.65rem 1.4rem;
            border-radius: 6px;
            font-weight: 700;
            font-size: 0.88rem;
            text-decoration: none;
            transition: background-color 0.25s, transform 0.25s;
            display: inline-block;
        }

        .nav-cta:hover {
            background-color: var(--accent-soft);
            transform: translateY(-1px);
        }

        /* Botón hamburguesa (solo visible en mobile/tablet) */
        .nav-toggle {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            background: none;
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            cursor: pointer;
            flex-shrink: 0;
        }

        .nav-toggle-bar {
            width: 18px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: transform 0.25s ease, opacity 0.2s ease;
        }

        body.nav-open .nav-toggle-bar:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        body.nav-open .nav-toggle-bar:nth-child(2) {
            opacity: 0;
        }
        body.nav-open .nav-toggle-bar:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* Panel de navegación mobile (desplegable) */
        .nav-mobile {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
            max-height: 0;
            overflow: hidden;
            background: var(--bg-darker);
            border-top: 1px solid transparent;
            transition: max-height 0.3s ease, border-color 0.3s ease;
        }

        body.nav-open .nav-mobile {
            max-height: 400px;
            border-top-color: var(--border-subtle);
        }

        .nav-mobile .nav-link {
            padding: 1rem 1.25rem;
            border-bottom: 1px solid var(--border-subtle);
        }

        .nav-mobile .nav-cta {
            margin: 1rem 1.25rem;
            text-align: center;
        }

        body.nav-open {
            overflow: hidden;
        }

        @media (min-width: 900px) {
            .header-container {
                padding: 1.1rem 2rem;
            }

            .logo-img {
                height: 58px;
            }

            .nav-desktop {
                display: flex;
            }

            .nav-toggle,
            .nav-mobile {
                display: none;
            }
        }

        /* Hero */
        .hero {
            position: relative;
            padding: 7rem 2rem 6rem;
            overflow: hidden;
            background:
                radial-gradient(ellipse 80% 60% at 70% 10%, rgba(79, 209, 197, 0.15), transparent),
                linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: linear-gradient(180deg, black, transparent 70%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 780px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .hero-eyebrow {
            display: inline-block;
            color: var(--accent);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            padding: 0.4rem 1rem;
            border: 1px solid rgba(79, 209, 197, 0.3);
            border-radius: 999px;
            background: rgba(79, 209, 197, 0.06);
        }

        .hero h1 {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .hero h1 .highlight {
            color: var(--accent);
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            max-width: 620px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .btn-primary {
            background-color: var(--accent);
            color: var(--bg-darker);
            padding: 1rem 2.2rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: transform 0.25s, box-shadow 0.25s;
            box-shadow: 0 8px 30px rgba(79, 209, 197, 0.25);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 36px rgba(79, 209, 197, 0.35);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--accent);
            padding: 1rem 2.2rem;
            border: 1.5px solid var(--accent);
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: border-color 0.25s, background-color 0.25s, color 0.25s;
        }

        .btn-secondary:hover {
            background-color: rgba(79, 209, 197, 0.1);
            border-color: var(--accent-soft);
        }

        /* Sections */
        section {
            padding: 6rem 2rem;
            max-width: 1180px;
            margin: 0 auto;
        }

        .section-eyebrow {
            display: block;
            text-align: center;
            color: var(--accent);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        section h2 {
            font-size: 2.4rem;
            font-weight: 800;
            text-align: center;
            color: var(--text-primary);
            letter-spacing: -0.01em;
            max-width: 700px;
            margin: 0 auto;
        }

        .section-intro {
            text-align: center;
            color: var(--text-secondary);
            max-width: 620px;
            margin: 1.2rem auto 0;
            font-size: 1.05rem;
        }

        /* Qué es Ether */
        .about-lead {
            max-width: 780px;
            margin: 3rem auto 0;
            text-align: center;
        }

        .about-lead p {
            font-size: 1.15rem;
            color: var(--text-secondary);
            margin-bottom: 1.4rem;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 3.5rem;
        }

        .feature-box {
            background: var(--bg-card);
            border-radius: 12px;
            border: 1px solid var(--border-subtle);
            transition: transform 0.3s, border-color 0.3s;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .feature-box:hover {
            transform: translateY(-4px);
            border-color: rgba(79, 209, 197, 0.35);
            box-shadow: 0 0 28px rgba(79, 209, 197, 0.18);
        }

        .feature-photo {
            width: 100%;
            aspect-ratio: 4 / 3;
            background-size: cover;
            background-position: center;
            flex-shrink: 0;
        }

        .feature-text {
            padding: 1.6rem;
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            background: rgba(79, 209, 197, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            margin-bottom: 1.2rem;
        }

        .feature-icon svg {
            width: 26px;
            height: 26px;
        }

        .feature-box h3 {
            color: var(--text-primary);
            margin-bottom: 0.6rem;
            font-size: 1.15rem;
            font-weight: 700;
        }

        .feature-box p {
            font-size: 0.95rem;
            line-height: 1.65;
            color: var(--text-secondary);
        }

        /* Nosotros */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
            margin-top: 3.5rem;
        }

        .team-member {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 14px;
            overflow: hidden;
            text-align: left;
            transition: transform 0.3s, border-color 0.3s;
        }

        .team-member:hover {
            transform: translateY(-4px);
            border-color: rgba(79, 209, 197, 0.35);
        }

        .team-member-avatar {
            width: 100%;
            aspect-ratio: 4 / 5;
            object-fit: cover;
            display: block;
            background: linear-gradient(135deg, #16283d 0%, #0d1a29 100%);
            /* Unifica tono/iluminación entre fotos dispares (una con fondo claro,
               otras con fondo oscuro) para que todas se integren al fondo navy. */
            filter: saturate(0.85) brightness(0.94) contrast(1.06);
        }

        .team-member-body {
            padding: 1.6rem;
        }

        .team-member-name {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.3rem;
        }

        .team-member-role {
            font-size: 0.82rem;
            color: var(--accent);
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            margin-bottom: 0.9rem;
        }

        .team-member-desc {
            font-size: 0.92rem;
            line-height: 1.65;
            color: var(--text-secondary);
        }

        /* Método / Pilares (transformación integral) */
        .pillars-section {
            background: var(--bg-darker);
        }

        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.2rem;
            margin-top: 3.5rem;
        }

        .pillar-card {
            text-align: center;
            padding: 2rem 1rem;
        }

        .pillar-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            border: 1px solid rgba(79, 209, 197, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            margin: 0 auto 1.2rem;
            background: rgba(79, 209, 197, 0.06);
        }

        .pillar-icon svg {
            width: 30px;
            height: 30px;
        }

        .pillar-card h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .pillar-card p {
            font-size: 0.95rem;
            color: var(--text-secondary);
        }

        /* Testimonios: estilos legacy limpiados — ver .results-grid / .result-card abajo */

        /* Contacto */
        .contact-section {
            background: var(--bg-darker);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 0.85fr 1.15fr;
            gap: 3rem;
            max-width: 1000px;
            margin: 3.5rem auto 0;
        }

        .contact-info h3 {
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            font-weight: 700;
        }

        .contact-detail {
            margin-bottom: 1.6rem;
            padding-bottom: 1.6rem;
            border-bottom: 1px solid var(--border-subtle);
        }

        .contact-detail:last-child {
            border-bottom: none;
        }

        .contact-detail strong {
            color: var(--accent);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            display: block;
            margin-bottom: 0.4rem;
        }

        .contact-detail p {
            font-size: 1.05rem;
            color: var(--text-primary);
        }

        .contact-form {
            background: var(--bg-card);
            padding: 2.2rem;
            border-radius: 14px;
            border: 1px solid var(--border-subtle);
        }

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

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

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.85rem 1rem;
            background: var(--bg-card-hover);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.95rem;
            color: var(--text-primary);
            transition: border-color 0.25s, background-color 0.25s;
        }

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

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

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

        .submit-button {
            background-color: var(--accent);
            color: var(--bg-darker);
            padding: 0.95rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            width: 100%;
            transition: background-color 0.25s, transform 0.25s;
        }

        .submit-button:hover {
            background-color: var(--accent-soft);
            transform: translateY(-1px);
        }

        /* Footer */
        footer {
            background-color: var(--bg-darker);
            border-top: 1px solid var(--border-subtle);
            padding: 3.5rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1180px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2.5rem;
        }

        .footer-brand {
            font-size: 1.1rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            color: var(--text-primary);
            margin-bottom: 0.8rem;
        }

        .footer-brand span { color: var(--accent); }

        .footer-section p {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: var(--text-primary);
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .footer-section a {
            color: var(--text-muted);
            text-decoration: none;
            display: block;
            margin-bottom: 0.7rem;
            font-size: 0.9rem;
            transition: color 0.25s;
        }

        .footer-section a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-subtle);
            padding-top: 2rem;
            max-width: 1180px;
            margin: 0 auto;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .footer-company {
            margin-bottom: 0.6rem;
            color: var(--text-secondary);
            font-weight: 600;
        }

        .disclaimer {
            margin-top: 0.8rem;
            font-size: 0.8rem;
            line-height: 1.6;
            color: var(--text-muted);
            padding: 1rem;
            background: rgba(255,255,255,0.02);
            border-radius: 8px;
            border: 1px solid var(--border-subtle);
        }

        /* Modal */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.75);
            z-index: 1000;
            padding: 2rem;
            align-items: center;
            justify-content: center;
        }

        .modal-box {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            max-width: 600px;
            width: 100%;
            padding: 2.2rem;
            border-radius: 14px;
            max-height: 80vh;
            overflow-y: auto;
        }

        .modal-box h2 {
            text-align: left;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .modal-box p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .modal-close {
            padding: 0.6rem 1.2rem;
            background: var(--accent);
            color: var(--bg-darker);
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 700;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                padding: 4rem 1.5rem 3.5rem;
            }

            .hero h1 {
                font-size: 2.1rem;
            }

            .hero p {
                font-size: 1.05rem;
            }

            section {
                padding: 4rem 1.5rem;
            }

            section h2 {
                font-size: 1.8rem;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

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

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

/* ===== Páginas legales ===== */
.legal-hero {
    padding: 4rem 2rem 2rem;
    max-width: 780px;
    margin: 0 auto;
    text-align: left;
}

.legal-hero .section-eyebrow {
    text-align: left;
}

.legal-hero h1 {
    font-size: 2.2rem;
    margin-top: 0.5rem;
    margin-bottom: 0.6rem;
}

.legal-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.legal-draft-notice {
    margin: 1.5rem 0 0;
    padding: 1rem 1.2rem;
    background: rgba(212, 175, 122, 0.08);
    border: 1px solid rgba(212, 175, 122, 0.3);
    border-radius: 8px;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.legal-draft-notice strong {
    color: var(--gold);
}

.legal-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 1rem 2rem 6rem;
}

.legal-content h2 {
    text-align: left;
    font-size: 1.35rem;
    margin: 2.4rem 0 1rem;
    color: var(--text-primary);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.legal-content ul {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.75;
    margin: 0 0 1rem 1.3rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

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

.legal-content .missing {
    color: var(--gold);
    font-style: italic;
}

.legal-content a {
    color: var(--accent);
    text-decoration: underline;
}

.back-link {
    display: inline-block;
    margin: 2rem 0 0;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

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

/* ===== Tipografía de impacto (solo landing, no páginas legales) ===== */
.hero h1, section h2, .pillar-card h4, .phase-title, .faq-question span {
    font-family: 'Anton', 'Montserrat', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.script-accent {
    font-family: 'Sacramento', cursive;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    color: var(--accent);
    font-size: 1.3em;
    display: inline-block;
    line-height: 0.7;
    padding-right: 0.15em;
}

/* ===== Variante: hero con video de fondo (estilo Wolf Movement) ===== */
.hero-bgvideo {
    max-width: none;
    width: 100%;
    padding: 0;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bgvideo::before {
    display: none;
}

.hero-bgvideo-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-bgvideo-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2,14,30,0.35) 0%, rgba(2,14,30,0.65) 60%, var(--bg-dark) 100%);
    z-index: 1;
}

.hero-bgvideo .hero-content {
    position: relative;
    z-index: 2;
    padding: 9rem 2rem 7rem;
}

@media (max-width: 768px) {
    .hero-bgvideo {
        min-height: 560px;
        background-image: url('hero-video/hero-poster.webp');
        background-size: cover;
        background-position: center;
    }
    .hero-bgvideo-media {
        display: none;
    }
    .hero-bgvideo-scrim {
        background: linear-gradient(180deg, rgba(2,14,30,0.8) 0%, var(--bg-dark) 100%);
    }
    .hero-bgvideo .hero-content {
        padding: 7rem 1.5rem 4rem;
    }
}

/* ===== Variante: tarjetas de equipo estilo "showcase" (foto + overlay) ===== */
.team-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.team-showcase-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: linear-gradient(160deg, #16283d 0%, #0a1626 100%);
    box-shadow: 0 0 0 1px var(--border-subtle);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 0 1px rgba(79,209,197,0.4), 0 18px 40px rgba(79,209,197,0.18);
}

.team-showcase-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) brightness(0.96) contrast(1.05);
}

.team-showcase-scrim {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.6rem 1.3rem 1.3rem;
    background: linear-gradient(180deg, transparent 0%, rgba(2,14,30,0.5) 45%, rgba(2,14,30,0.95) 100%);
    transition: background 0.35s ease;
}

.team-showcase-card:hover .team-showcase-scrim {
    background: linear-gradient(180deg, rgba(10,39,72,0.1) 0%, rgba(10,39,72,0.92) 40%, var(--bg-card-hover) 100%);
}

.team-showcase-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.team-showcase-role {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--accent);
}

/* ===== Switcher entre variantes de diseño (solo para revisión interna) ===== */
.variant-badge {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 200;
    background: var(--accent);
    color: var(--bg-darker);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.7rem 1.15rem;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    transition: transform 0.2s ease;
}

.variant-badge:hover {
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .variant-badge {
        top: 4.2rem;
        bottom: auto;
        right: 0.8rem;
        font-size: 0.68rem;
        padding: 0.55rem 0.8rem;
        opacity: 0.92;
    }
}

/* ===== Botón "volver arriba" ===== */
.scroll-top-btn {
    position: fixed;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 200;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--bg-card-hover);
    border: 1px solid rgba(79, 209, 197, 0.35);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s, border-color 0.25s, background 0.25s;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    padding: 0;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    border-color: var(--accent);
    background: var(--bg-card);
}

.scroll-top-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 640px) {
    .scroll-top-btn {
        bottom: 0.8rem;
        left: 0.8rem;
        width: 42px;
        height: 42px;
    }
}

/* ===== Programa (Fase 1 / Fase 2) ===== */
.program-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.phase-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.phase-card:hover {
    transform: translateY(-3px);
    border-color: rgba(79, 209, 197, 0.4);
    box-shadow: 0 0 28px rgba(79, 209, 197, 0.18);
}

.phase-label {
    display: inline-block;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.phase-title {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
}

.phase-duration {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.4rem;
}

.phase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.phase-list li {
    color: var(--text-secondary);
    font-size: 0.92rem;
    padding-left: 1.4rem;
    position: relative;
    line-height: 1.5;
}

.phase-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.phase-list li.has-icon {
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.phase-list li.has-icon::before {
    content: none;
}

.phase-icon-badge {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(79, 209, 197, 0.12);
    border: 1px solid rgba(79, 209, 197, 0.3);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phase-icon-badge svg {
    width: 18px;
    height: 18px;
}

/* ===== Resultados documentados (texto, sin capturas con datos sensibles) ===== */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem 1.5rem;
    margin-top: 4.5rem;
}

.result-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 3.4rem 1.8rem 2rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.result-card:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 209, 197, 0.35);
    box-shadow: 0 0 28px rgba(79, 209, 197, 0.18);
}

.result-avatar-wrap {
    position: absolute;
    top: -34px;
    left: 50%;
    transform: translateX(-50%);
}

.result-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 3px solid var(--bg-dark);
    box-shadow: 0 0 0 2px var(--accent);
}

.result-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.result-amount {
    display: inline-block;
    font-family: 'Anton', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    color: var(--accent);
    background: rgba(79, 209, 197, 0.12);
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.result-teaser {
    color: var(--text-secondary);
    font-size: 0.92rem;
    font-style: italic;
    line-height: 1.55;
    margin-bottom: 1.3rem;
    min-height: 2.7em;
}

.result-teaser strong {
    color: var(--text-primary);
    font-style: normal;
}

.result-expand {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: none;
    border: 1px solid var(--border-subtle);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    cursor: pointer;
    transition: border-color 0.25s, background-color 0.25s, transform 0.25s;
    font-family: 'Montserrat', sans-serif;
}

.result-expand svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.result-expand:hover {
    border-color: var(--accent);
    background: rgba(79, 209, 197, 0.1);
    transform: scale(1.03);
}

/* Lightbox de testimonios */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 12, 0.88);
    z-index: 1000;
    padding: 3rem 1.5rem;
    overflow-y: auto;
}

.lightbox.open {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

body.lightbox-open {
    overflow: hidden;
}

.lightbox-content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    max-width: 420px;
    width: 100%;
    overflow: hidden;
}

.lightbox-content img {
    width: 100%;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(2, 6, 12, 0.6);
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
    z-index: 2;
}

.lightbox-caption {
    padding: 1.4rem;
}

.lightbox-name {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.lightbox-caption p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.lightbox-disclaimer {
    color: var(--text-muted) !important;
    font-size: 0.78rem !important;
    font-style: italic;
    margin-bottom: 0 !important;
}

.results-disclaimer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 2rem;
    font-style: italic;
}

/* ===== FAQ / Objeciones ===== */
.faq-list {
    max-width: 780px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    text-align: left;
    padding: 1.2rem 1.5rem;
    font-size: 0.98rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.faq-question .faq-icon {
    color: var(--accent);
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: transform 0.25s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.4rem;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
}

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