/* ========================================
   MIAHS — Landing Page V2 (Marca Viva)
   Design System: Dirección D
   Palette: Crema, Coral, Verde Cálido
   Target: +40 años, health & wellness
   ======================================== */

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

:root {
    /* Fondos */
    --bg:          #FAF7F4;
    --surface:     #FFFFFF;
    --card:        #FFFFFF;
    --border:      #E8E4E0;
    --border-light:#F0ECE8;

    /* Texto */
    --text:        #3D3D3D;
    --muted:       #787878;
    --light:       #A0A0A0;

    /* Colores de marca */
    --green:       #2A8C78;
    --coral:       #E8704A;
    --gold:        #F0B429;
    --red:         #E05252;
    --blue:        #7BAFD4;

    /* Fondos con opacidad */
    --green-bg:    rgba(42, 140, 120, 0.08);
    --green-bg-md: rgba(42, 140, 120, 0.12);
    --coral-bg:    rgba(232, 112, 74, 0.08);
    --coral-bg-md: rgba(232, 112, 74, 0.12);
    --gold-bg:     rgba(240, 180, 41, 0.10);
    --red-bg:      rgba(224, 82, 82, 0.08);
    --blue-bg:     rgba(123, 175, 212, 0.10);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 50px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    font-size: 16px;
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---------- URGENCY BAR ---------- */
.urgency-bar {
    background: #1A1A1A;
    color: #FFFFFF;
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.urgency-bar strong {
    color: var(--gold);
}
.urgency-bar .deadline {
    color: var(--coral);
    font-weight: 600;
}

/* ---------- NAVBAR ---------- */
.navbar {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0 40px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 43px;
    z-index: 900;
    transition: box-shadow 0.2s ease;
}
.navbar.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.nav-content { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.logo-icon { font-size: 1.5rem; }
.logo-icon-img { height: 32px; width: auto; }
.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.05em;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-link:hover { color: var(--green); }
.nav-cta {
    background: var(--coral);
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.nav-cta:hover {
    background: #D4603F;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232, 112, 74, 0.3);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}
.btn-primary {
    background: var(--coral);
    color: #FFFFFF;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
}
.btn-primary:hover {
    background: #D4603F;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(232, 112, 74, 0.3);
}
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
    background: transparent;
    color: var(--green);
    font-size: 16px;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--border);
}
.btn-secondary:hover {
    border-color: var(--green);
    background: var(--green-bg);
}
.btn-xl { padding: 22px 48px; font-size: 1.1rem; font-weight: 700; }
.btn-full { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none !important; }

/* ---------- HERO ---------- */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 40px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}
.hero-grid { display: contents; }
.hero-content { display: flex; flex-direction: column; gap: 0; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-bg);
    border: 1px solid rgba(42, 140, 120, 0.15);
    border-radius: var(--radius-pill);
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 24px;
    width: fit-content;
    animation: fadeInUp 0.6s ease-out;
}
.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}
.hero-title .highlight {
    color: var(--coral);
    text-decoration: underline;
    text-decoration-color: var(--coral);
    text-underline-offset: 4px;
    text-decoration-thickness: 3px;
}
.hero-subtitle {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}
.hero-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}
.social-proof {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--muted);
    animation: fadeInUp 0.6s ease-out 0.4s both;
}
.proof-badges { display: flex; gap: 4px; }
.proof-badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #FFFFFF;
}
.proof-badge.g { background: var(--green); }
.proof-badge.m { background: var(--gold); }
.proof-badge.a { background: var(--coral); }
.social-proof strong { color: var(--text); font-weight: 700; }

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

/* ---------- PRICING CARD ---------- */
.hero-pricing {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}
.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: sticky;
    top: 130px;
}
.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.pricing-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}
.pricing-spots {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
}
.pricing-spots::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}
/* Founder spots — dynamic states */
.spots-warning { color: #FBBF24 !important; }
.spots-warning::before { background: #FBBF24 !important; }
.spots-critical {
    color: #F87171 !important;
    animation: pulse-critical 1.5s ease-in-out infinite;
}
.spots-critical::before {
    background: #F87171 !important;
    animation: pulse-critical 1.5s ease-in-out infinite;
}
.spots-sold-out {
    color: var(--muted) !important;
}
.spots-sold-out::before {
    background: var(--muted) !important;
}
.cta-sold-out {
    background: var(--muted) !important;
    pointer-events: auto;
    opacity: 0.7;
}
@keyframes pulse-critical {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.pricing-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--coral);
    line-height: 1;
    margin-bottom: 4px;
}
.pricing-amount .currency { font-size: 28px; vertical-align: super; }
.pricing-amount .period { font-size: 18px; font-weight: 500; color: var(--muted); }
.pricing-note {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 24px;
}
.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}
.pricing-features li {
    font-size: 14px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-features li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.pricing-cta-primary {
    display: block;
    width: 100%;
    background: var(--coral);
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 14px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
}
.pricing-cta-primary:hover {
    background: #D4603F;
    box-shadow: 0 6px 20px rgba(232, 112, 74, 0.3);
}
.pricing-cta-secondary {
    display: block;
    width: 100%;
    background: transparent;
    color: var(--muted);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 10px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
    margin-top: 8px;
}
.pricing-cta-secondary:hover {
    border-color: rgba(255,255,255,0.25);
    color: var(--text-primary);
}

/* Checkout success banner */
.checkout-success-banner {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 10000;
    background: linear-gradient(135deg, #059669, #10B981);
    padding: 16px 24px;
    animation: slideDown 0.4s ease;
}
.success-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFF;
}
.success-icon { font-size: 28px; }
.success-content strong { font-size: 15px; }
.success-content p { font-size: 13px; opacity: 0.9; margin-top: 2px; }
.success-close {
    background: none; border: none; color: #FFF;
    font-size: 24px; cursor: pointer; margin-left: auto;
    opacity: 0.7; transition: opacity 0.2s;
}
.success-close:hover { opacity: 1; }
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* ========== AUTH MODAL ========== */
.auth-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.auth-modal-overlay.visible { display: flex; }
.auth-modal {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    max-width: 480px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    animation: authFadeIn 0.3s ease;
}
@keyframes authFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.auth-modal-close {
    position: absolute;
    top: 16px; right: 16px;
    background: none; border: none;
    color: var(--muted);
    cursor: pointer;
    transition: color 0.2s;
}
.auth-modal-close:hover { color: var(--text); }
.auth-icon { text-align: center; margin-bottom: 16px; }
.auth-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 8px;
}
.auth-subtitle {
    font-size: 14px;
    color: var(--muted);
    text-align: center;
    line-height: 1.5;
    margin-bottom: 24px;
}
.auth-hint {
    font-size: 12px;
    color: var(--light);
    text-align: center;
    margin-top: 16px;
}
.auth-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    background: var(--bg);
    outline: none;
    margin-bottom: 12px;
    transition: border-color 0.2s;
}
.auth-input:focus { border-color: var(--green); }
.auth-input::placeholder { color: var(--light); }
.auth-btn {
    width: 100%;
    padding: 14px;
    background: var(--coral);
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
}
.auth-btn:hover { background: #D4603F; box-shadow: 0 4px 12px rgba(232,112,74,0.25); }
.auth-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.auth-btn-secondary {
    width: 100%;
    padding: 12px;
    background: transparent;
    color: var(--muted);
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 12px;
}
.auth-btn-secondary:hover { border-color: var(--green); color: var(--text); }
.auth-btn-sm { width: auto; padding: 8px 16px; margin-top: 0; }
.auth-error {
    color: var(--red);
    font-size: 13px;
    text-align: center;
    margin-top: 12px;
    display: none;
}

/* Auth results */
.auth-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.auth-results-header .auth-title { text-align: left; margin-bottom: 2px; }
.auth-results-header .auth-subtitle { text-align: left; margin-bottom: 0; }
.auth-result-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s;
}
.auth-result-card:hover { border-color: var(--green); box-shadow: 0 2px 12px rgba(42,140,120,0.08); }
.auth-result-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.auth-result-date { font-size: 12px; color: var(--muted); }
.auth-result-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 600;
}
.auth-result-score {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}
.auth-result-score-label { font-size: 12px; color: var(--muted); margin-left: 4px; }
.auth-result-dims {
    display: flex;
    gap: 6px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.auth-dim-bar {
    flex: 1;
    min-width: 50px;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}
.auth-dim-fill { height: 100%; border-radius: 3px; }
.auth-no-results {
    text-align: center;
    padding: 40px 20px;
    color: var(--muted);
}
.auth-no-results p { margin-bottom: 16px; }
.nav-auth-link { cursor: pointer; }

/* Mobile auth FAB */
.mobile-auth-fab {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--green);
    color: #FFF;
    border: none;
    box-shadow: 0 4px 16px rgba(42,140,120,0.35);
    cursor: pointer;
    z-index: 90;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.mobile-auth-fab:active { transform: scale(0.93); }
.mobile-auth-fab .material-symbols-outlined { font-size: 24px; }
@media (max-width: 768px) {
    .mobile-auth-fab { display: flex; }
}
.nav-user-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--green);
    color: #FFF;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700;
    cursor: pointer;
    transition: box-shadow 0.2s;
}
.nav-user-avatar:hover { box-shadow: 0 0 0 3px rgba(42,140,120,0.2); }

/* ---------- TEST HERO CARD ---------- */
.test-hero-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    background: var(--green-bg);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}
.test-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.test-hero-subtitle {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.5;
}
.test-hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
.test-hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
}

/* ---------- STATS BAR ---------- */
.stats-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 48px 0;
}
.stat {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-value.green { color: var(--green); }
.stat-value.coral { color: var(--coral); }
.stat-value.dark  { color: var(--text); }
.stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ---------- SECTION HEADER ---------- */
.section-header { text-align: center; margin-bottom: 48px; }
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.2;
}
.section-subtitle {
    font-size: 18px;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--green-bg);
    color: var(--green);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

/* ---------- FEATURES / BENEFITS ---------- */
.benefits { padding: 64px 0; position: relative; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.25s;
    opacity: 0;
    transform: translateY(20px);
}
.feature-card.visible { opacity: 1; transform: translateY(0); }
.feature-card:hover {
    border-color: rgba(42, 140, 120, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}
.feature-icon .material-symbols-outlined { font-size: 28px; }
.feature-icon.green { background: var(--green-bg-md); color: var(--green); }
.feature-icon.coral { background: var(--coral-bg-md); color: var(--coral); }
.feature-icon.gold  { background: var(--gold-bg); color: var(--gold); }
.feature-icon.blue  { background: var(--blue-bg); color: var(--blue); }
.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.feature-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

/* ---------- TEST MODAL ---------- */
.test-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    overflow-y: auto;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.test-modal-overlay.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.test-modal-overlay.visible {
    opacity: 1;
}
.test-modal {
    background: var(--surface);
    border-radius: var(--radius-lg);
    max-width: 640px;
    width: 100%;
    margin: 40px auto;
    padding: 40px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}
.test-modal-overlay.visible .test-modal {
    transform: translateY(0);
}
.test-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}
.test-modal-close:hover {
    background: var(--bg);
    border-color: var(--muted);
}
.test-modal-close .material-symbols-outlined {
    font-size: 20px;
    color: var(--muted);
}

/* ---------- TEST SECTION (legacy) ---------- */
.test-start-wrapper { max-width: 480px; margin: 0 auto; }
.test-start-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
}
.test-start-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.test-start-card > p { font-size: 0.95rem; color: var(--muted); margin-bottom: 24px; }
.test-start-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; text-align: left; }
.start-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
    padding: 8px 16px;
    background: var(--green-bg);
    border-radius: var(--radius-sm);
}
.start-feature span { color: var(--green); font-weight: 700; font-size: 1rem; }
.lead-form-illustration { position: relative; width: 80px; height: 80px; margin: 0 auto 24px; }
.illustration-blob {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--green-bg-md), var(--coral-bg));
    border-radius: 50%; animation: blobPulse 4s ease-in-out infinite;
}
@keyframes blobPulse { 0%, 100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.1); opacity: 1; } }
.illustration-emoji { position: relative; z-index: 1; font-size: 2.5rem; line-height: 80px; display: block; }
.form-disclaimer { font-size: 0.78rem; color: var(--muted); margin-top: 14px; }

/* Test App */
.test-app {
    max-width: 640px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    background: var(--surface);
    border: 1px solid var(--border);
}
.test-progress { margin-bottom: 36px; }
.progress-bar {
    height: 8px;
    background: var(--border-light);
    border-radius: var(--radius-pill);
    overflow: hidden;
    margin-bottom: 10px;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--green), var(--coral));
    border-radius: var(--radius-pill);
    transition: width 0.5s ease;
    width: 14.28%;
}
.progress-text { font-size: 0.8rem; color: var(--muted); font-weight: 500; }

/* Questions */
.question-slide { animation: slideIn 0.4s ease-out; }
@keyframes slideIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
.question-dimension {
    display: inline-block;
    padding: 4px 12px;
    background: var(--green-bg);
    color: var(--green);
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}
.question-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.35;
}
.question-help { font-size: 0.85rem; color: var(--muted); margin-bottom: 28px; }
.options-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.option-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}
.option-btn:hover {
    border-color: rgba(42, 140, 120, 0.4);
    background: var(--green-bg);
}
.option-btn.selected {
    border-color: var(--green);
    background: var(--green-bg-md);
    color: var(--green);
    font-weight: 600;
    box-shadow: 0 0 0 3px rgba(42, 140, 120, 0.1);
}
.option-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}
.option-btn.selected .option-radio { border-color: var(--green); background: var(--green); }
.option-btn.selected .option-radio::after { content: ''; width: 8px; height: 8px; background: #FFFFFF; border-radius: 50%; }
.test-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

/* ---------- RESULTS ---------- */
.results-section { max-width: 800px; margin: 0 auto; }
.results-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    animation: fadeInUp 0.6s ease-out;
}
.results-header {
    padding: 48px 40px 32px;
    text-align: center;
    background: linear-gradient(135deg, var(--green-bg), var(--coral-bg));
}
.results-user-name { font-size: 1.1rem; color: var(--muted); margin-bottom: 8px; }
.results-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 32px;
}

/* Gauge */
.gauge-container { position: relative; width: 220px; height: 130px; margin: 0 auto 24px; }
.gauge-svg { width: 100%; height: 100%; }
.gauge-bg { fill: none; stroke: var(--border); stroke-width: 16; stroke-linecap: round; }
.gauge-fill { fill: none; stroke-width: 16; stroke-linecap: round; transition: stroke-dashoffset 1.5s ease, stroke 0.5s; }
.gauge-score { font-size: 3rem; font-weight: 900; fill: var(--text); }
.gauge-max { font-size: 0.85rem; fill: var(--muted); }
.results-level {
    display: inline-block;
    padding: 8px 24px;
    border-radius: var(--radius-pill);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 8px;
}
/* Bandas v2 */
.results-level.level-vida-activa { background: rgba(34, 197, 94, 0.15); color: #22c55e; }
.results-level.level-buen-camino { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.results-level.level-oportunidad { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.results-level.level-alerta { background: rgba(249, 115, 22, 0.15); color: #f97316; }
.results-level.level-critica { background: rgba(239, 68, 68, 0.15); color: #ef4444; }

/* Results Body */
.results-body { padding: 40px; }

/* Titular emocional */
.results-titular { text-align: center; margin-bottom: 28px; }
.results-titular h3 { font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.results-subtitular { font-size: 0.95rem; color: var(--muted); }

/* Interpretación */
.results-interpretation {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    border-left: 4px solid var(--green);
}
.results-interpretation p { font-size: 0.92rem; color: var(--text); line-height: 1.7; white-space: pre-line; }

/* Mensajes edad y sexo */
.results-age-msg, .results-sex-msg {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 20px;
    background: var(--surface);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid var(--border-light);
}
.results-age-msg .msg-icon, .results-sex-msg .msg-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.results-age-msg p, .results-sex-msg p { font-size: 0.88rem; color: var(--text); line-height: 1.6; margin: 0; }

/* Dimension cards v2 */
.dimension-section { margin-bottom: 36px; }
.dimension-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.dimension-intro { font-size: 0.88rem; color: var(--muted); margin-bottom: 20px; }
.dimension-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s;
}
.dimension-card:hover { border-color: rgba(42, 140, 120, 0.3); }
.dimension-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
}
.dimension-icon { font-size: 1.4rem; flex-shrink: 0; }
.dimension-info { flex: 1; }
.dimension-name { font-weight: 600; color: var(--text); font-size: 0.88rem; display: block; margin-bottom: 6px; }
.dimension-bar-wrap { display: flex; align-items: center; gap: 10px; }
.dimension-track { height: 10px; background: var(--border-light); border-radius: var(--radius-pill); overflow: hidden; flex: 1; }
.dimension-value {
    height: 100%;
    border-radius: var(--radius-pill);
    transition: width 1s ease;
    background: linear-gradient(90deg, var(--green), #2A8C78);
}
.dimension-value.good { background: linear-gradient(90deg, var(--green), #2A8C78); }
.dimension-value.moderate { background: linear-gradient(90deg, var(--gold), #E0A020); }
.dimension-value.low { background: linear-gradient(90deg, var(--red), #ef4444); }
.dimension-score { color: var(--muted); font-size: 0.82rem; font-weight: 600; white-space: nowrap; }
.dimension-expand-icon { font-size: 0.9rem; color: var(--muted); transition: transform 0.3s; }
.dimension-card.expanded .dimension-expand-icon { transform: rotate(180deg); }
.dimension-card-body {
    display: none;
    padding: 0 20px 20px;
}
.dimension-card.expanded .dimension-card-body { display: block; animation: fadeInUp 0.3s ease-out; }
.dimension-card-body p { font-size: 0.88rem; color: var(--text); line-height: 1.6; margin-bottom: 10px; }
.dim-modifier { padding: 10px 14px; background: var(--bg); border-radius: var(--radius-sm); }
.dim-modifier span { margin-right: 6px; }

/* Mayor oportunidad */
.mayor-oportunidad {
    background: linear-gradient(135deg, var(--green-bg), var(--coral-bg));
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-top: 16px;
}
.mayor-op-header { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; }
.mayor-oportunidad p { font-size: 0.88rem; color: var(--text); line-height: 1.6; margin-bottom: 6px; }

/* Plan transition */
.plan-transition {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 32px;
    border-left: 4px solid var(--green);
}
.plan-transition h3 { font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.plan-transition p { font-size: 0.9rem; color: var(--text); line-height: 1.6; margin-bottom: 6px; }

/* Action Plan v2 — Momentos del día */
.action-plan-section { margin-bottom: 36px; }
.action-plan-section > h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.action-plan-section > p.plan-intro { font-size: 0.9rem; color: var(--muted); margin-bottom: 24px; }
.action-plan-moments { display: flex; flex-direction: column; gap: 24px; }
.moment-block {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.moment-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
}
.moment-emoji { font-size: 1.6rem; }
.moment-header h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}
.moment-subtitle { font-size: 0.82rem; color: var(--muted); font-style: italic; }
.moment-options { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.moment-option {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    cursor: pointer;
    transition: all 0.2s;
}
.moment-option:hover { border-color: rgba(42, 140, 120, 0.3); }
.moment-option.recommended { border-color: var(--green); background: var(--green-bg); }
.moment-option-header { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.rec-badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--green);
    background: rgba(42, 140, 120, 0.1);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
}
.option-meta { font-size: 0.78rem; color: var(--muted); margin-left: auto; }
.moment-option-body { display: none; margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--border-light); }
.moment-option.expanded .moment-option-body { display: block; animation: fadeInUp 0.3s ease-out; }
.option-cuando { font-size: 0.84rem; color: var(--muted); margin-bottom: 10px; }
.option-pasos { padding-left: 18px; margin-bottom: 12px; }
.option-pasos li { font-size: 0.85rem; color: var(--text); line-height: 1.6; margin-bottom: 6px; }
.option-porque { font-size: 0.84rem; color: var(--muted); font-style: italic; line-height: 1.5; }
/* Legacy action-card kept minimal for compatibility */
.action-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}
.action-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.action-card li {
    font-size: 0.85rem;
    color: var(--text);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}
.action-card li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.action-card .action-benefit {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
    font-size: 0.78rem;
    color: var(--muted);
    font-style: italic;
}

/* Píldoras */
.pildoras-section { margin-bottom: 36px; }
.pildoras-section > h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}
.pildoras-section > .pildoras-intro { font-size: 0.92rem; color: var(--muted); margin-bottom: 20px; }
.pildoras-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.pildora-card {
    background: linear-gradient(135deg, var(--green-bg), var(--blue-bg));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.2s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.pildora-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--coral));
    opacity: 0;
    transition: all 0.2s;
}
.pildora-card:hover {
    transform: translateY(-3px);
    border-color: rgba(42, 140, 120, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.pildora-card:hover::before { opacity: 1; }
.pildora-emoji { font-size: 1.8rem; margin-bottom: 10px; }
.pildora-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.pildora-card .pildora-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.5; margin-bottom: 12px; }
.pildora-detail { display: none; margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--border); }
.pildora-card.expanded .pildora-detail { display: block; animation: fadeInUp 0.3s ease-out; }
.pildora-serie { margin-bottom: 10px; }
.pildora-serie h5 {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}
.exercise-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.exercise-list li {
    font-size: 0.8rem;
    color: var(--text);
    padding: 4px 8px;
    background: var(--surface);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 6px;
}
.exercise-time { font-size: 0.7rem; color: var(--green); font-weight: 600; white-space: nowrap; }
.pildora-timing {
    margin-top: 10px;
    padding: 8px 12px;
    background: var(--surface);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--muted);
}
.pildora-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green);
    margin-top: 4px;
}
.pildora-final-note {
    margin-top: 20px;
    text-align: center;
    padding: 16px;
    background: linear-gradient(135deg, var(--green-bg), var(--coral-bg));
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    color: var(--text);
    font-weight: 600;
}
.pildora-final-note span { display: block; font-size: 0.8rem; color: var(--muted); font-weight: 400; margin-top: 4px; }

/* Pildora recommended */
.pildora-card.recommended { border-color: var(--green); }
.pildora-rec-badge {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 8px;
}
.pildora-subtitle { font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }

/* Exercise detailed list */
.exercise-list-detailed { display: flex; flex-direction: column; gap: 10px; }
.exercise-item {
    padding: 10px 14px;
    background: var(--bg);
    border-radius: var(--radius-sm);
}
.exercise-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}
.exercise-time {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--green);
    background: var(--green-bg);
    padding: 2px 8px;
    border-radius: var(--radius-pill);
}
.exercise-focus {
    font-size: 0.72rem;
    color: var(--muted);
    margin-left: auto;
}
.exercise-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.5; margin: 0; }

/* Results CTA v2 */
.results-cta {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, var(--green-bg), var(--coral-bg));
    border-radius: var(--radius-lg);
    margin-top: 20px;
}
.cta-transition-text { text-align: left; margin-bottom: 24px; }
.cta-transition-text h3 { font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.cta-transition-text p { font-size: 0.9rem; color: var(--text); line-height: 1.6; margin-bottom: 8px; }

/* ---------- HOW IT WORKS ---------- */
.how-it-works { padding: 64px 0; text-align: center; border-top: 1px solid var(--border); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 48px; }
.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
}
.step-card.visible { opacity: 1; transform: translateY(0); transition: all 0.6s ease-out; }
.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--green);
    border: 2px solid rgba(42, 140, 120, 0.3);
    background: var(--surface);
}
.step-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
}
.step-card p { font-size: 0.875rem; color: var(--muted); max-width: 260px; }

/* ---------- CLUB MIAHS ---------- */
.club-section {
    padding: 80px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}
.club-how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
    margin-bottom: 64px;
}
.club-how-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}
.club-how-content > p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 16px;
}
.club-daily-questions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
    padding: 20px;
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}
.club-question {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
}
.club-how-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.club-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}
.club-feature-item .material-symbols-outlined {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.club-feature-item strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--text);
}
.club-feature-item p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

/* ---------- BENEFICIOS / ¿ES PARA TI? ---------- */
.benefits-notice {
    padding: 64px 0;
}
.benefits-notice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.benefit-notice-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 20px;
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
}
.benefit-notice-item.visible {
    opacity: 1;
    transform: translateY(0);
}
.benefit-notice-item .material-symbols-outlined {
    flex-shrink: 0;
    font-size: 1.2rem;
}
.benefit-notice-item p {
    font-size: 0.875rem;
    color: var(--text);
    line-height: 1.5;
    margin: 0;
}

/* Fundador */
.club-founder {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: start;
    padding: 40px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-bottom: 48px;
}
.founder-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-top: 12px;
    margin-bottom: 4px;
}
.founder-title {
    font-size: 0.85rem;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 16px;
}
.founder-content p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 12px;
}
.founder-avatar {
    text-align: center;
}
.founder-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--green);
}

/* Pricing reubicado */
.club-pricing-wrapper {
    display: flex;
    justify-content: center;
}
.club-pricing-card {
    background: var(--surface);
    border: 2px solid var(--coral);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 420px;
    width: 100%;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials { padding: 64px 0; position: relative; overflow: hidden; border-top: 1px solid var(--border); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}
.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.25s;
    opacity: 0;
    transform: translateY(20px);
}
.testimonial-card.visible { opacity: 1; transform: translateY(0); }
.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.testimonial-featured { border-color: rgba(42, 140, 120, 0.3); }
.testimonial-stars { display: flex; gap: 2px; }
.star-icon { color: var(--gold); font-size: 1.2rem; }
.testimonial-card > p { font-size: 0.92rem; color: var(--text); line-height: 1.7; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; background: var(--border-light); flex-shrink: 0; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-bg-md);
    color: var(--green);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.testimonial-author strong { display: block; font-size: 0.88rem; color: var(--text); }
.testimonial-author span { font-size: 0.75rem; color: var(--muted); }

/* ---------- FINAL CTA ---------- */
.final-cta { padding: 64px 0 80px; text-align: center; }
.cta-card {
    position: relative;
    padding: 80px 40px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--green-bg-md), var(--coral-bg-md));
    overflow: hidden;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.2;
}
.cta-content p { font-size: 1.15rem; color: var(--muted); margin-bottom: 32px; }

/* ---------- FOOTER ---------- */
.footer { padding: 64px 0 40px; border-top: 1px solid var(--border); position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; color: var(--muted); max-width: 360px; line-height: 1.7; }
.footer-nav h4, .footer-legal h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.footer-nav ul, .footer-legal ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-nav a, .footer-legal a { font-size: 0.875rem; color: var(--muted); transition: color 0.2s; }
.footer-nav a:hover, .footer-legal a:hover { color: var(--green); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }
.footer-social { display: flex; gap: 16px; }
.social-link { color: var(--muted); transition: color 0.2s; }
.social-link:hover { color: var(--green); }


/* ---------- TEASER + GATE ---------- */
.teaser-gate { max-width: 640px; margin: 0 auto; }
.teaser-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    animation: fadeInUp 0.6s ease-out;
}
.teaser-calculating { padding: 60px 40px; text-align: center; }
.calculating-spinner { width: 80px; height: 80px; margin: 0 auto 24px; position: relative; }
.calculating-spinner::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 4px solid var(--green-bg-md);
    border-top-color: var(--green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.calculating-spinner::after { content: '🧮'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
@keyframes spin { to { transform: rotate(360deg); } }
.teaser-calculating h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.teaser-calculating p { color: var(--muted); font-size: 0.95rem; }
.calculating-dots::after { content: ''; animation: dots 1.5s steps(4, end) infinite; }
@keyframes dots { 0% { content: ''; } 25% { content: '.'; } 50% { content: '..'; } 75% { content: '...'; } }
.teaser-preview {
    padding: 32px 40px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--green-bg), var(--coral-bg));
}
.teaser-preview h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}
.teaser-score-reveal { position: relative; margin-bottom: 16px; }
.teaser-big-number {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    animation: countReveal 0.5s ease-out;
}
.teaser-max { font-size: 1rem; color: var(--muted); margin-top: 4px; }
@keyframes countReveal { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }
.teaser-blurred-preview { position: relative; padding: 16px 40px; overflow: hidden; min-height: 120px; }
.blurred-content { filter: blur(8px); opacity: 0.3; pointer-events: none; user-select: none; }
.blurred-content .fake-bar { height: 10px; background: var(--border); border-radius: var(--radius-pill); margin-bottom: 12px; }
.blurred-content .fake-bar:nth-child(1) { width: 80%; background: var(--green-bg-md); }
.blurred-content .fake-bar:nth-child(2) { width: 60%; background: var(--coral-bg-md); }
.blurred-content .fake-bar:nth-child(3) { width: 45%; background: var(--green-bg-md); }
.blurred-content .fake-bar:nth-child(4) { width: 70%; background: var(--coral-bg-md); }
.blurred-content .fake-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.blurred-content .fake-card { height: 40px; background: var(--border-light); border-radius: var(--radius-md); }
.blur-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(250, 247, 244, 0.2) 0%, rgba(250, 247, 244, 0.95) 40%);
    z-index: 2;
}
.blur-overlay .lock-icon { font-size: 1.8rem; margin-bottom: 8px; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.blur-overlay h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}
.blur-overlay p { font-size: 0.8rem; color: var(--muted); }
.gate-form-section { padding: 24px 40px 32px; text-align: center; }
.gate-header { margin-bottom: 20px; }
.gate-header .lock-icon { font-size: 1.5rem; display: block; margin-bottom: 8px; }
.gate-header h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}
.gate-header p { font-size: 0.8rem; color: var(--muted); }
.gate-form { max-width: 380px; margin: 0 auto; }
.gate-form .form-group { text-align: left; margin-bottom: 14px; }
.gate-form .form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.gate-form .form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text);
    transition: all 0.2s;
    background: var(--surface);
}
.gate-form .form-group input::placeholder { color: var(--light); }
.gate-form .form-group input:focus {
    outline: none;
    border-color: var(--green);
    background: var(--green-bg);
    box-shadow: 0 0 0 4px rgba(42, 140, 120, 0.08);
}
.gate-benefits { display: flex; flex-direction: column; gap: 6px; margin-top: 16px; }
.gate-benefit { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--muted); }
.gate-benefit span:first-child { color: var(--green); }

/* ---------- CONSENT CHECKS (GDPR) ---------- */
.consent-checks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 16px 0 8px;
    text-align: left;
}
.consent-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
    min-height: 20px;
}
.consent-check input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.consent-checkmark {
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 2px solid var(--border);
    border-radius: 4px;
    background: var(--surface);
    transition: all 0.2s;
}
.consent-check input:checked ~ .consent-checkmark {
    background: var(--green);
    border-color: var(--green);
}
.consent-check input:checked ~ .consent-checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.consent-check input:focus-visible ~ .consent-checkmark {
    box-shadow: 0 0 0 3px rgba(42, 140, 120, 0.15);
}
.consent-text {
    font-size: 0.75rem;
    line-height: 1.4;
    color: var(--muted);
}
.consent-text a {
    color: var(--green);
    text-decoration: underline;
}
.consent-required .consent-text {
    color: var(--text);
}
.form-legal-note {
    font-size: 0.7rem;
    color: var(--light);
    line-height: 1.4;
    margin-top: 12px;
    text-align: left;
}
#gate-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; }
    .pricing-card { position: static; max-width: 400px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .navbar { padding: 0 20px; top: 43px; }
    .nav-links { display: none; }
    .nav-auth-link { display: none; }
    .hero { padding: 40px 20px; }
    .hero-title { font-size: 32px; }
    .features-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat { border-right: none; border-bottom: 1px solid var(--border); padding: 20px; }
    .stat:nth-child(2) { border-right: none; }
    .stat:nth-child(odd) { border-right: 1px solid var(--border); }
    .stat:nth-last-child(-n+2) { border-bottom: none; }
    .steps-grid { grid-template-columns: 1fr; gap: 32px; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .club-how-grid { grid-template-columns: 1fr; gap: 32px; }
    .benefits-notice-grid { grid-template-columns: 1fr; }
    .club-founder { grid-template-columns: 1fr; text-align: center; padding: 24px; }
    .founder-avatar { order: -1; }
    .club-pricing-card { padding: 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .test-app { padding: 32px 24px; }
    .pildoras-grid { grid-template-columns: 1fr; }
    .moment-option-header { flex-direction: column; align-items: flex-start; }
    .option-meta { margin-left: 0; }
    .results-header { padding: 32px 24px 24px; }
    .results-body { padding: 24px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .test-modal-overlay { padding: 12px; }
    .test-modal { padding: 24px 20px; margin: 16px auto; max-height: calc(100vh - 32px); }
    .test-modal-close { top: 10px; right: 10px; }
    body { padding-bottom: 0; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 28px; }
    .hero-ctas { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat { border-right: none; border-bottom: 1px solid var(--border); padding: 20px; }
    .stat:last-child { border-bottom: none; }
    .cta-card { padding: 48px 24px; }
    .cta-content h2 { font-size: 1.8rem; }
    .section-title { font-size: 1.5rem; }
    .teaser-preview, .gate-form-section { padding-left: 20px; padding-right: 20px; }
    .teaser-big-number { font-size: 3.5rem; }
    .teaser-blurred-preview { padding: 12px 20px; }
}
