/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; width: 100%; }
body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--brand-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
h1,h2,h3,h4,h5,h6 { line-height: 1.2; font-family: 'Outfit', sans-serif; }

/* ============================================================
   CSS VARIABLES (Tema Claro Premium - Abelvolks)
============================================================ */
:root {
    --brand-dark:    #F8F9FA;      /* Fundo claro principal */
    --brand-cream:   #FFFFFF;      /* Superfície clara (Cards) */
    --brand-beige:   #F0F2F5;      /* Superfície média clara */
    --brand-white:   #FFFFFF;      /* White cards */
    --brand-green:   #39FF14;      /* Verde neon Abelvolks */
    --brand-green-h: #1FCC00;      /* Hover Verde */
    --brand-red:     #E50914;      /* Vermelho vibrante */
    --brand-gold:    #D4AF37;      /* Dourado (ajustado p/ fundo claro) */
    --brand-yellow:  #F2A900;      /* Amarelo secundário */
    --text-dark:     #111111;      /* Texto principal escuro */
    --text-muted:    #555555;      /* Texto secundário */
    --text-light:    #333333;      /* Texto intermediário */
    --text-inverted: #FFFFFF;      /* Texto branco p/ botões e banners */
    --shadow-glow: 0 0 25px rgba(57, 255, 20, 0.4);
    --shadow-sm: 0 4px 15px rgba(0,0,0,0.06);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --max-w: 1100px;
    --max-w-slim: 760px;
}

/* ============================================================
   LAYOUT UTILITIES
============================================================ */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.container-slim { width: 100%; max-width: var(--max-w-slim); margin: 0 auto; padding: 0 20px; }
.section { padding: 70px 0; }
.section-sm { padding: 50px 0; }
.text-center { text-align: center; }

/* ============================================================
   BOTÃO CTA
============================================================ */
.btn-cta {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--brand-green); color: #000 !important;
    font-family: 'Outfit', 'Poppins', sans-serif; font-size: 16px; font-weight: 800;
    letter-spacing: 0.5px; text-transform: uppercase;
    padding: 20px 36px; border-radius: 50px; border: none;
    cursor: pointer; width: 100%; max-width: 440px; text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.5);
    animation: pulse-cta 2.5s infinite;
}
.btn-cta:hover { background: var(--brand-green-h); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(57, 255, 20, 0.6), inset 0 2px 0 rgba(255, 255, 255, 0.6); }
@keyframes pulse-cta {
    0%,100% { box-shadow: 0 0 20px rgba(57, 255, 20, 0.4); }
    50% { box-shadow: 0 0 40px rgba(57, 255, 20, 0.6); }
}
.btn-cta-wrap { display: flex; justify-content: center; }

/* Glass Panel Utility */
.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Check badge */
.chk {
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--brand-green); color: #000;
    font-size: 11px; font-weight: 800; flex-shrink: 0;
}

/* ============================================================
   1. BARRA TOPO
============================================================ */
.top-bar {
    background: var(--brand-red); color: var(--text-inverted); text-align: center;
    padding: 10px 16px; font-size: 12.5px; font-weight: 700;
    letter-spacing: 0.5px; text-transform: uppercase; position: relative;
}
#dynamic-date-top { display: inline; }

/* ============================================================
   2. HERO
============================================================ */
.hero { background: var(--brand-dark); padding: 25px 0 50px; text-align: center; }
@media (min-width: 768px) {
    .hero { padding: 50px 0 60px; }
}
.hero-label {
    display: inline-block; background: rgba(212, 175, 55, 0.1); color: var(--brand-gold);
    font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
    padding: 8px 20px; border-radius: 50px; margin-bottom: 24px;
    border: 1px solid var(--brand-gold); box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.hero h1 { max-width: 850px; margin: 0 auto 16px; }
.hero-subtitle-sub {
    font-size: clamp(16px, 3.5vw, 22px); font-weight: 500; color: #444; 
    margin-bottom: 35px; line-height: 1.4; letter-spacing: -0.3px;
    max-width: 700px; margin-left: auto; margin-right: auto;
}
.hero-img-wrap {
    max-width: 320px; margin: 0 auto 35px; background: rgba(255, 255, 255, 1);
    border-radius: 20px; padding: 12px; box-shadow: var(--shadow-glow);
    position: relative; border: 1px solid rgba(57, 255, 20, 0.4);
}
@media (min-width: 768px) {
    .hero-img-wrap { max-width: 480px; padding: 16px; }
}
.hero-img-wrap::before {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 80%; height: 80%; background: radial-gradient(circle, rgba(57, 255, 20, 0.25) 0%, rgba(255,255,255,0) 70%);
    z-index: -1; filter: blur(30px);
}
.hero-img-wrap img { width: 100%; border-radius: 12px; display: block; position: relative; z-index: 1; }
.sticker-badge {
    position: absolute; top: -15px; right: -15px; width: 100px; height: 100px;
    background: var(--brand-red); border: 3px solid var(--brand-white); border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15); display: flex; flex-direction: column;
    align-items: center; justify-content: center; z-index: 10; transform: rotate(8deg);
    animation: float-badge 4s ease-in-out infinite;
}
@media (min-width: 768px) {
    .sticker-badge { width: 125px; height: 125px; top: -20px; right: -20px; border-width: 4px; }
}
@keyframes float-badge {
    0%, 100% { transform: rotate(8deg) translateY(0); }
    50% { transform: rotate(8deg) translateY(-5px); }
}
.sticker-badge .sb-title { color: var(--text-inverted); font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 900; line-height: 1; margin-bottom: 2px; }
.sticker-badge .sb-mid { color: var(--text-inverted); font-family: 'Poppins', sans-serif; font-size: 8px; font-weight: 800; letter-spacing: 0.5px; line-height: 1; text-align: center; max-width: 80px; }
.sticker-badge .sb-banner {
    background: #111111; color: var(--brand-gold); font-family: 'Poppins', sans-serif;
    font-size: 6px; font-weight: 900; padding: 4px 6px; border-radius: 30px;
    text-transform: uppercase; margin-top: 5px; letter-spacing: 0.5px; white-space: nowrap; border: 1px solid var(--brand-gold);
}
@media (min-width: 768px) {
    .sticker-badge .sb-title { font-size: 26px; }
    .sticker-badge .sb-mid { font-size: 9px; max-width: 90px; }
    .sticker-badge .sb-banner { font-size: 7px; padding: 4px 8px; margin-top: 6px; }
}
.hero-desc-italic {
    font-size: clamp(14px, 2.2vw, 16px); color: var(--text-muted);
    max-width: 680px; margin: 0 auto 30px; line-height: 1.6; font-style: italic;
}
.hero-desc-italic strong { color: var(--brand-gold); font-weight: 700; }
.hero-checklist {
    list-style: none; max-width: 580px; margin: 0 auto 35px; text-align: left;
    display: flex; flex-direction: column; gap: 12px;
}
.hero-checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--text-dark); line-height: 1.5; font-weight: 500; }
.hero-checklist li .chk { background: none; color: #00A300; font-size: 18px; font-weight: 900; line-height: 1; margin-top: 2px; width: auto; height: auto; border-radius: 0; display: inline-block; flex-shrink: 0; }
.chk-desc { color: var(--text-muted); font-weight: 400; }
.delivery-note { font-size: 12.5px; color: var(--text-muted); margin-top: 14px; text-align: center; }
.delivery-note strong { color: var(--text-dark); }

/* ============================================================
   3. SHOWCASE (Grid visual)
============================================================ */
.showcase { background: var(--brand-cream); }
.showcase h2 { font-family: 'Poppins', sans-serif; font-size: clamp(20px, 3.5vw, 28px); font-weight: 800; text-transform: uppercase; text-align: center; margin-bottom: 10px; color: var(--text-dark); }
.showcase-sub { text-align: center; color: var(--text-muted); font-size: 14px; margin-bottom: 40px; }
.marquee { overflow: hidden; width: 100%; margin-bottom: 14px; }
.marquee-track { display: flex; gap: 12px; width: max-content; animation: scroll-left 22s linear infinite; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.gif-card { width: 175px; height: 230px; border-radius: var(--radius-md); overflow: hidden; background: var(--brand-white); box-shadow: var(--shadow-sm); flex-shrink: 0; border: 1px solid rgba(0,0,0,0.05); }
.gif-card img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 576px) { .gif-card { width: 210px; height: 270px; } }

/* ============================================================
   4. FEATURES GRID
============================================================ */
.features-section { background: var(--brand-dark); }
.features-section h2 { font-size: clamp(20px, 3vw, 26px); font-weight: 800; text-transform: uppercase; text-align: center; margin-bottom: 8px; color: var(--text-dark); }
.features-grid { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 720px; margin: 40px auto 0; }
@media (min-width: 576px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
.feature-card { display: flex; align-items: flex-start; gap: 14px; background: var(--brand-white); border-radius: var(--radius-md); padding: 22px; border: 1px solid rgba(0,0,0,0.05); box-shadow: var(--shadow-sm); transition: transform 0.3s ease; }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(0, 163, 0, 0.3); box-shadow: var(--shadow-md); }
.feature-icon { width: 44px; height: 44px; background: rgba(57, 255, 20, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #00A300; border: 1px solid rgba(57, 255, 20, 0.5); box-shadow: 0 0 10px rgba(57, 255, 20, 0.1); }
.feature-icon svg { width: 20px; height: 20px; }
.feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: #00A300; }
.feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   5. BENEFITS BOX
============================================================ */
.benefits-section { background: var(--brand-dark); }
.benefits-box { background: var(--brand-beige); border-radius: var(--radius-lg); padding: 40px 24px; text-align: center; max-width: 720px; margin: 0 auto; border: 1px solid rgba(0,0,0,0.05); box-shadow: var(--shadow-md); }
.benefits-box h2 { font-size: clamp(18px, 3vw, 26px); font-weight: 800; line-height: 1.25; margin-bottom: 28px; color: var(--text-dark); }
.benefits-list { list-style: none; text-align: left; max-width: 540px; margin: 0 auto 28px; display: flex; flex-direction: column; gap: 12px; }
.benefits-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.45; color: var(--text-muted); }
.benefits-list li span:last-child { color: var(--text-dark); font-weight: 500; }
@media (min-width: 768px) { .benefits-box { padding: 60px 50px; } .benefits-box h2 { font-size: 28px; } }

/* ============================================================
   6. SCARCITY
============================================================ */
.scarcity { background: var(--brand-red); color: var(--text-inverted); text-align: center; }
.scarcity h2 { font-size: clamp(18px, 3vw, 26px); font-weight: 800; color: var(--text-inverted); line-height: 1.25; max-width: 680px; margin: 0 auto 14px; }
.scarcity-label { font-size: 12px; letter-spacing: 2px; font-weight: 700; text-transform: uppercase; opacity: 0.9; margin-bottom: 18px; }
.countdown { display: inline-flex; align-items: center; gap: 8px; font-size: 32px; font-weight: 800; margin-bottom: 24px; font-variant-numeric: tabular-nums; }
.cd-digit { background: rgba(0,0,0,0.15); border-radius: 6px; padding: 8px 14px; min-width: 54px; text-align: center; border: 1px solid rgba(255,255,255,0.3); }

/* ============================================================
   7. PERSONA
============================================================ */
.persona-section { background: var(--brand-cream); }
.persona-section h2 { font-size: clamp(20px, 3vw, 28px); font-weight: 800; text-transform: uppercase; text-align: center; margin-bottom: 8px; color: var(--text-dark); }
.persona-grid { display: grid; grid-template-columns: 1fr; gap: 14px; max-width: 780px; margin: 40px auto 0; }
@media (min-width: 640px) { .persona-grid { grid-template-columns: repeat(2, 1fr); } }
.persona-card { display: flex; align-items: flex-start; gap: 14px; background: var(--brand-white); border-radius: var(--radius-md); padding: 22px; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.05); }
.persona-icon { width: 28px; height: 28px; background: var(--brand-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #000; font-weight: 800; font-size: 14px; flex-shrink: 0; }
.persona-card h3 { font-size: 14px; font-weight: 700; text-transform: uppercase; margin-bottom: 5px; letter-spacing: 0.3px; color: var(--text-dark); }
.persona-card p { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   8. OFERTA / RECAP
============================================================ */
.offer-section { background: var(--brand-beige); }
.offer-eyebrow { text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #00A300; margin-bottom: 8px; }
.offer-section h2 { font-size: clamp(22px, 4vw, 34px); font-weight: 800; text-transform: uppercase; text-align: center; margin-bottom: 8px; color: var(--text-dark); }
.offer-sub { text-align: center; font-size: 14px; color: var(--text-muted); margin-bottom: 50px; }
.offer-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 500px; margin: 0 auto; }
@media (min-width: 768px) { .offer-grid { grid-template-columns: repeat(2, 1fr); max-width: 900px; } }
.main-deliver-card { background: var(--brand-white); border-radius: var(--radius-lg); overflow: hidden; position: relative; display: flex; flex-direction: column; box-shadow: var(--shadow-md); border: 1px solid rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.main-deliver-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.main-deliver-card .dc-badge { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); background: var(--brand-green); color: #000; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 5px 18px; border-radius: 50px; white-space: nowrap; z-index: 5; box-shadow: 0 3px 12px rgba(0,0,0,0.1); }
.main-deliver-card .dc-img { max-width: 280px; margin: 55px auto 0; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.05); }
.main-deliver-card .dc-body { padding: 26px 24px 32px; }
.main-deliver-card .dc-title { font-size: 18px; font-family: 'Outfit', sans-serif; font-weight: 800; text-transform: uppercase; color: var(--brand-gold); text-align: center; margin-bottom: 18px; letter-spacing: 0.5px; }
.main-deliver-card .dc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.main-deliver-card .dc-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-dark); line-height: 1.4; font-weight: 500; }

/* ============================================================
   9. DEPOIMENTOS
============================================================ */
.testimonials { background: var(--brand-dark); }
.testimonials h2 { font-size: clamp(20px, 3vw, 28px); font-weight: 800; text-transform: uppercase; text-align: center; margin-bottom: 8px; color: var(--text-dark); }
.testi-screenshots { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; max-width: 900px; margin: 30px auto 0; }
.testi-screenshots img { border-radius: var(--radius-md); box-shadow: var(--shadow-sm); width: 100%; max-width: 300px; border: 1px solid rgba(0,0,0,0.05); }

/* ============================================================
   10. PRICING
============================================================ */
.pricing { background: var(--brand-cream); }
.pricing h2 { font-size: clamp(20px, 3vw, 28px); font-weight: 800; text-transform: uppercase; text-align: center; margin-bottom: 6px; color: var(--text-dark); }
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 480px; margin: 40px auto 0; }
.price-card { background: var(--brand-white); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; position: relative; box-shadow: var(--shadow-lg); border: 2.5px solid var(--brand-green); display: flex; flex-direction: column; align-items: center; }
.price-card h3 { font-size: 20px; font-weight: 900; text-transform: uppercase; margin-bottom: 12px; color: var(--brand-gold); }
.price-top-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--brand-green); color: #000; font-size: 11px; font-weight: 800; text-transform: uppercase; padding: 6px 18px; border-radius: 50px; white-space: nowrap; box-shadow: 0 4px 12px rgba(57, 255, 20, 0.3); display: inline-flex; align-items: center; gap: 4px; }
.price-card-img { position: relative; max-width: 280px; margin: 0 auto 20px; width: 100%; }
.price-card-img img { border-radius: var(--radius-md); width: 100%; display: block; box-shadow: var(--shadow-md); border: 1px solid rgba(0,0,0,0.05); }
.price-sticker { position: absolute; width: 75px; height: 75px; background: var(--brand-red); border: 2.5px solid #fff; border-radius: 50%; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 5; }
.price-sticker .ps-num { color: var(--text-inverted); font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 900; line-height: 1; }
.price-sticker .ps-text { color: var(--text-inverted); font-family: 'Poppins', sans-serif; font-size: 6px; font-weight: 800; letter-spacing: 0.2px; line-height: 1; text-align: center; max-width: 65px; margin-top: 1px; }
.price-sticker--top-right { top: -8px; right: -8px; transform: rotate(6deg); }
.pf-list { list-style: none; text-align: left; width: 100%; margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.pf-list li { font-size: 14px; display: flex; align-items: flex-start; gap: 8px; color: var(--text-dark); line-height: 1.45; font-weight: 500; }
.pf-list li .chk-tick { color: #00A300; font-size: 15px; font-weight: 900; flex-shrink: 0; }
.price-old { font-size: 12px; color: var(--brand-red); text-decoration: line-through; font-weight: 600; display: block; margin-bottom: 4px; text-transform: lowercase; }
.price-new { font-size: 48px; font-weight: 900; color: var(--text-dark); line-height: 1; margin: 2px 0 8px; letter-spacing: -1px; }
.price-installment { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; display: block; font-weight: 600; }
.price-economy { font-size: 12px; font-weight: 600; margin-bottom: 20px; display: block; color: var(--text-muted); }
.price-economy strong { font-weight: 800; color: #00A300; }
.payment-logos { margin-top: 18px; max-width: 220px; width: 100%; filter: grayscale(1); opacity: 0.6; }

/* ============================================================
   11. GARANTIA
============================================================ */
.guarantee { background: var(--brand-beige); }
.guarantee-box { display: flex; flex-direction: column; align-items: center; gap: 24px; background: var(--brand-white); border-radius: var(--radius-lg); padding: 36px 24px; max-width: 720px; margin: 0 auto; border: 1px solid rgba(0,0,0,0.05); box-shadow: var(--shadow-md); }
@media (min-width: 576px) { .guarantee-box { flex-direction: row; text-align: left; padding: 44px; } }
.guarantee-badge { width: 110px; flex-shrink: 0; }
.guarantee-info h2 { font-size: clamp(17px, 2.5vw, 22px); font-weight: 800; text-transform: uppercase; margin-bottom: 12px; color: var(--brand-red); }
.guarantee-info p { font-size: 14.5px; color: var(--text-muted); line-height: 1.65; margin-bottom: 12px; }
.guarantee-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.guarantee-list li { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--text-dark); }
.guarantee-list li span:first-child { color: var(--brand-red); font-size: 18px; }

/* ============================================================
   12. COMO FUNCIONA
============================================================ */
.how-it-works { background: var(--brand-dark); }
.how-it-works h2 { font-size: clamp(20px, 3vw, 28px); font-weight: 800; text-transform: uppercase; text-align: center; margin-bottom: 8px; color: var(--text-dark); }
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 900px; margin: 40px auto 0; }
@media (min-width: 576px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step-card { background: var(--brand-cream); border-radius: var(--radius-md); padding: 28px 20px; text-align: center; position: relative; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.05); }
.step-num { position: absolute; top: -12px; left: 18px; width: 28px; height: 28px; border-radius: 50%; background: var(--brand-green); color: #000; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; }
.step-icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(57, 255, 20, 0.15); color: #00A300; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; fill: currentColor; }
.step-icon svg { width: 26px; height: 26px; fill: currentColor; }
.step-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: #00A300; }
.step-card p { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   13. FAQ
============================================================ */
.faq { background: var(--brand-cream); }
.faq h2 { font-size: clamp(20px, 3vw, 28px); font-weight: 800; text-transform: uppercase; text-align: center; margin-bottom: 8px; color: var(--text-dark); }
.faq-list { max-width: 680px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
.faq-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 18px 0; background: none; border: none; font-family: 'Poppins', sans-serif; font-size: 15.5px; font-weight: 600; color: var(--text-dark); cursor: pointer; text-align: left; gap: 12px; }
.faq-chevron { flex-shrink: 0; transition: transform 0.3s; color: #00A300; }
.faq-btn[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; }
.faq-body p { font-size: 14px; color: var(--text-muted); line-height: 1.65; padding-bottom: 18px; }
.faq-body.open { max-height: 300px; }

/* ============================================================
   14. FOOTER
============================================================ */
.footer { background: #111111; color: rgba(255,255,255,0.7); padding: 32px 20px; text-align: center; font-size: 11.5px; line-height: 1.7; border-top: 1px solid rgba(0,0,0,0.05); }
.footer p { max-width: 720px; margin: 0 auto; }
.footer strong { color: #ffffff; }

/* ============================================================
   15. EXIT INTENT POPUP
=========================================================== */
.exit-popup-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
    backdrop-filter: blur(5px); padding: 20px;
}
.exit-popup-overlay.show { opacity: 1; visibility: visible; }
.exit-popup-content {
    background: var(--brand-white); border-radius: var(--radius-lg);
    width: 100%; max-width: 450px; position: relative;
    border: 2px solid var(--brand-red); box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transform: translateY(-20px) scale(0.95); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center; overflow: hidden;
}
.exit-popup-overlay.show .exit-popup-content { transform: translateY(0) scale(1); }
.exit-popup-close {
    position: absolute; top: 10px; right: 15px; background: none; border: none;
    color: var(--text-dark); font-size: 28px; cursor: pointer; line-height: 1; z-index: 10;
}
.ep-header {
    background: var(--brand-red); color: var(--text-inverted); padding: 15px;
    font-size: 18px; font-weight: 900; letter-spacing: 1px;
}
.ep-body { padding: 30px 25px; }
.ep-body h3 { font-size: 20px; color: var(--text-dark); margin-bottom: 12px; }
.ep-body h3 strong { color: var(--brand-gold); font-size: 24px; }
.ep-body p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.5; }
.ep-price { margin-bottom: 20px; }
.ep-price span { display: block; font-size: 13px; color: var(--text-muted); text-decoration: line-through; }
.ep-price strong { display: block; font-size: 42px; font-weight: 900; color: #00A300; line-height: 1; }
.ep-decline {
    display: block; margin-top: 15px; font-size: 12px; color: var(--text-muted);
    text-decoration: underline; transition: color 0.2s;
}
.ep-decline:hover { color: var(--text-dark); }

/* ============================================================
   16. AUDIO PLAYER
============================================================ */
.audio-section { background: var(--brand-dark); padding: 40px 0 80px; }
.audio-player-wrapper { max-width: 720px; margin: 0 auto; padding: 32px; display: flex; flex-direction: column; gap: 24px; background: var(--brand-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid rgba(0,0,0,0.05); }
.audio-header { text-align: center; margin-bottom: 10px; }
.pulse-dot { display: inline-block; width: 10px; height: 10px; background: var(--brand-green); border-radius: 50%; margin-bottom: 12px; box-shadow: 0 0 10px var(--brand-green); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0% { box-shadow: 0 0 0 0 rgba(57,255,20,0.7); } 70% { box-shadow: 0 0 0 10px rgba(57,255,20,0); } 100% { box-shadow: 0 0 0 0 rgba(57,255,20,0); } }
.audio-header h2 { font-size: clamp(20px, 3.5vw, 26px); font-weight: 800; text-transform: uppercase; color: var(--text-dark); margin-bottom: 8px; }
.audio-header p { font-size: 14px; color: var(--text-muted); }

.player-container { background: rgba(0,0,0,0.03); border-radius: 16px; padding: 20px; border: 1px solid rgba(0,0,0,0.05); }
.now-playing { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.track-artwork { position: relative; width: 60px; height: 60px; border-radius: 10px; overflow: hidden; flex-shrink: 0; background: #000; box-shadow: var(--shadow-sm); }
.track-artwork img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.playing-bars { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 3px; background: rgba(0,0,0,0.4); opacity: 0; transition: opacity 0.3s; }
.playing-bars.active { opacity: 1; }
.playing-bars span { width: 4px; height: 15px; background: var(--brand-green); border-radius: 2px; animation: bounce-bar 1s infinite alternate ease-in-out; }
.playing-bars span:nth-child(2) { animation-delay: 0.2s; }
.playing-bars span:nth-child(3) { animation-delay: 0.4s; }
.playing-bars span:nth-child(4) { animation-delay: 0.1s; }
@keyframes bounce-bar { 0% { height: 5px; } 100% { height: 25px; } }

.track-info { display: flex; flex-direction: column; }
.track-title { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.track-artist { font-size: 12px; color: #00A300; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

.player-controls { display: flex; align-items: center; justify-content: center; gap: 24px; margin-bottom: 20px; }
.btn-control { background: none; border: none; color: var(--text-dark); width: 36px; height: 36px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; opacity: 0.7; }
.btn-control:hover { opacity: 1; background: rgba(0,0,0,0.05); }
.btn-control svg { width: 24px; height: 24px; }
.btn-play { background: var(--brand-green); color: #000; border: none; width: 56px; height: 56px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; box-shadow: 0 4px 15px rgba(57,255,20,0.3); }
.btn-play:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(57,255,20,0.5); }
.btn-play svg { width: 32px; height: 32px; margin-left: 2px; }

.progress-container { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--text-muted); font-variant-numeric: tabular-nums; }
.progress-bar-bg { flex: 1; height: 6px; background: rgba(0,0,0,0.1); border-radius: 3px; cursor: pointer; position: relative; overflow: hidden; }
.progress-bar-fill { position: absolute; left: 0; top: 0; height: 100%; width: 0%; background: #00A300; border-radius: 3px; pointer-events: none; }

.playlist-container { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.playlist-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 8px; background: rgba(0,0,0,0.02); cursor: pointer; transition: all 0.2s; border: 1px solid transparent; }
.playlist-item:hover { background: rgba(0,0,0,0.04); }
.playlist-item.active { background: rgba(57,255,20,0.1); border-color: rgba(57,255,20,0.3); }
.pi-number { font-size: 13px; color: var(--text-muted); font-weight: 600; width: 20px; text-align: center; }
.playlist-item.active .pi-number { color: #00A300; }
.pi-title { flex: 1; font-size: 14px; font-weight: 500; color: var(--text-dark); }
.playlist-item.active .pi-title { color: var(--text-dark); font-weight: 700; }
.pi-icon { color: #00A300; font-size: 12px; opacity: 0; transition: opacity 0.2s; }
.playlist-item.active .pi-icon { opacity: 1; }
.pulse-eq { display: block; width: 12px; height: 12px; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2300A300"><path d="M12 3v18m-5-8v8m10-12v12"/></svg>') no-repeat center; background-size: contain; animation: pulse-eq-anim 1s infinite alternate; }
@keyframes pulse-eq-anim { 0% { opacity: 0.5; } 100% { opacity: 1; } }
