/* ============================================================
   IB Player Pro — Stylesheet
   ============================================================ */

:root {
  --bg: #05070e;
  --bg-2: #0a0f1c;
  --surface: #0f1727;
  --surface-2: #16203a;
  --border: rgba(255, 255, 255, 0.08);
  --text: #eaf2ff;
  --muted: #9aa6c4;
  --primary: #1f6bff;
  --primary-2: #4f93ff;
  --accent: #18e0ff;
  --whatsapp: #25d366;
  --telegram: #229ed9;
  --gold: #ffc83d;
  --gold-2: #ffe08a;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 10px 40px rgba(31, 107, 255, 0.40);
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: "Poppins", "Inter", sans-serif; line-height: 1.2; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: 92%; max-width: var(--container); margin: 0 auto; }
.container--narrow { max-width: 820px; }

.grad {
  background: linear-gradient(90deg, var(--primary-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grad-gold {
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--primary); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 0.95rem; padding: 13px 24px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: 16px 30px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn--whatsapp { background: var(--whatsapp); color: #04210f; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35); }
.btn--whatsapp:hover { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5); }
.btn--telegram { background: var(--telegram); color: #fff; box-shadow: 0 8px 24px rgba(34, 158, 217, 0.35); }
.btn--ghost { background: rgba(255,255,255,0.06); color: var(--text); border-color: var(--border); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); }

/* ===== Topbar ===== */
.topbar {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff; font-size: 0.85rem; font-weight: 600;
}
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: 18px; padding: 8px 0; flex-wrap: wrap; text-align: center; }
.topbar__link { background: rgba(0,0,0,0.2); padding: 4px 12px; border-radius: 999px; transition: background 0.2s; }
.topbar__link:hover { background: rgba(0,0,0,0.4); }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 16, 32, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 0; }

.logo { display: inline-flex; align-items: center; gap: 11px; font-family: "Poppins"; font-weight: 800; font-size: 1.25rem; }
.logo__mark {
  position: relative; width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: grid; place-items: center; color: #fff; font-size: 1.15rem;
  box-shadow: var(--shadow-glow); flex-shrink: 0;
}
.logo__mark-play {
  position: absolute; font-size: 0.42rem; color: var(--primary);
  top: 50%; left: 50%; transform: translate(-50%, -58%);
}
.logo__wrap { display: flex; flex-direction: column; line-height: 1.05; }
.logo__text span { color: var(--accent); }
.logo__tag {
  font-family: "Inter", sans-serif; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.4px;
  color: var(--muted); text-transform: uppercase; margin-top: 3px;
}

.nav__list { display: flex; gap: 26px; }
.nav__link { color: var(--muted); font-weight: 600; font-size: 0.95rem; position: relative; transition: color 0.2s; }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary-2), var(--accent)); transition: width 0.25s var(--ease);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { width: 100%; }

.header__cta { display: inline-flex; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 3px; background: var(--text); border-radius: 3px; transition: 0.3s; }
.nav__toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative; display: flex; align-items: center;
  min-height: 100vh; min-height: 100dvh;        /* full screen on every device */
  padding: 96px 0 64px; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(50% 55% at 50% 0%, rgba(31,107,255,0.35), transparent 65%),
    radial-gradient(40% 50% at 12% 30%, rgba(24,224,255,0.18), transparent 60%),
    radial-gradient(40% 50% at 88% 25%, rgba(31,107,255,0.20), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}
.hero__inner { position: relative; z-index: 1; width: 100%; display: flex; justify-content: center; text-align: center; }
.hero__content { max-width: 820px; width: 100%; }

.badge {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; font-size: 0.85rem;
  background: rgba(31,107,255,0.14); color: var(--primary-2);
  border: 1px solid rgba(79,147,255,0.35); padding: 8px 16px; border-radius: 999px; margin-bottom: 22px;
  max-width: 100%; text-align: center; line-height: 1.35;
}
.badge--wc {
  background: rgba(255,200,61,0.12); color: var(--gold-2);
  border-color: rgba(255,200,61,0.4); box-shadow: 0 0 24px rgba(255,200,61,0.18);
}
.hero__title { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 800; letter-spacing: -1px; }
.hero__subtitle { color: var(--muted); font-size: 1.12rem; margin: 20px auto 24px; max-width: 640px; }
.hero__subtitle strong { color: var(--text); }

.hero__points { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin-bottom: 30px; }
.hero__points--center { max-width: 560px; margin-inline: auto; justify-items: start; }
.hero__points li { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 0.95rem; }
.hero__points i { color: var(--accent); }

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 26px; }
.hero__trust { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; color: var(--muted); font-size: 0.9rem; }
.hero__trust i { color: var(--accent); margin-right: 6px; }

@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* ===== Stats ===== */
.stats { padding: 30px 0; background: var(--bg-2); border-block: 1px solid var(--border); }
.stats__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.stat__num { font-family: "Poppins"; font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 800; }
.stat__plus { font-family: "Poppins"; font-size: clamp(1.4rem,3vw,2rem); font-weight: 800; color: var(--accent); }
.stat p { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }

/* ===== Brands ===== */
.brands { padding: 40px 0; }
.brands__title { text-align: center; color: var(--muted); margin-bottom: 22px; font-weight: 600; }
.brands__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 34px; }
.brands__row span { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-weight: 700; opacity: 0.85; transition: 0.2s; }
.brands__row span:hover { color: var(--text); opacity: 1; }
.brands__row i { font-size: 1.2rem; color: var(--primary-2); }

/* ===== World Cup 2026 ===== */
.nav__link--gold { color: var(--gold-2); }
.nav__link--gold::after { background: linear-gradient(90deg, var(--gold), var(--gold-2)); }
.eyebrow--gold { color: var(--gold); }

.wc { position: relative; overflow: hidden; border-block: 1px solid rgba(255,200,61,0.18); }
.wc__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(55% 70% at 50% 0%, rgba(255,200,61,0.20), transparent 62%),
    radial-gradient(45% 80% at 12% 60%, rgba(31,107,255,0.20), transparent 65%),
    radial-gradient(45% 80% at 88% 65%, rgba(255,200,61,0.12), transparent 65%),
    linear-gradient(180deg, #090d1a, #0c1326);
}
.wc__inner {
  position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 96px 0;
}
.wc__icon {
  position: relative; width: 104px; height: 104px; border-radius: 28px; display: grid; place-items: center;
  font-size: 3rem; color: #1a1300; margin-bottom: 26px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 22px 60px rgba(255,200,61,0.45); animation: floaty 4s ease-in-out infinite;
}
.wc__icon::after {
  content: ""; position: absolute; inset: -10px; border-radius: 36px;
  border: 1.5px solid rgba(255,200,61,0.4);
}
.wc__eyebrow {
  display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold-2);
  background: rgba(255,200,61,0.10); border: 1px solid rgba(255,200,61,0.35);
  padding: 8px 18px; border-radius: 999px; margin-bottom: 20px;
}
.wc__title { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; max-width: 880px; margin-bottom: 18px; }
.wc__sub { color: var(--muted); font-size: 1.1rem; max-width: 660px; margin: 0 auto 30px; }
.wc__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 780px; margin: 0 auto 34px; }
.wc__list li {
  display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 0.92rem;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,200,61,0.28);
  padding: 11px 18px; border-radius: 999px;
}
.wc__list i { color: var(--gold); }
.wc__btn { font-size: 1.08rem; padding: 17px 34px; }
.wc__note { margin-top: 18px; color: var(--gold-2); font-size: 0.9rem; font-weight: 600; }
.wc__note i { color: var(--gold); margin-right: 6px; }

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--border); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: 2px; font-size: 0.78rem; font-weight: 800;
  color: var(--accent); margin-bottom: 12px;
}
.section__title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; }
.section__sub { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }

.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3,1fr); }
.grid--4 { grid-template-columns: repeat(4,1fr); }

.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s; }
.card:hover { transform: translateY(-6px); border-color: rgba(142,123,255,0.5); box-shadow: var(--shadow); }

/* Features */
.feature__icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.4rem; color: #fff; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--primary), var(--accent)); box-shadow: var(--shadow-glow);
}
.feature h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 0.95rem; }

/* Chip cards */
.chip-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center;
  transition: transform 0.25s var(--ease), border-color 0.25s;
}
.chip-card:hover { transform: translateY(-6px); border-color: rgba(0,212,255,0.5); }
.chip-card i { font-size: 1.8rem; color: var(--accent); margin-bottom: 12px; }
.chip-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.chip-card p { color: var(--muted); font-size: 0.88rem; }

/* Steps */
.steps .step { text-align: center; padding: 30px 24px; position: relative; }
.step__num {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 18px;
  font-family: "Poppins"; font-weight: 800; font-size: 1.4rem; color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent)); box-shadow: var(--shadow-glow);
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); }

/* Pricing */
.pricing { align-items: stretch; }
.plan {
  background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 34px 28px;
  display: flex; flex-direction: column; position: relative; transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.plan:hover { transform: translateY(-6px); }
.plan--featured {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg, var(--primary), var(--accent)) border-box;
  box-shadow: var(--shadow-glow); transform: translateY(-10px);
}
.plan--featured:hover { transform: translateY(-16px); }
.plan__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff;
  font-weight: 700; font-size: 0.8rem; padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.plan__name { font-size: 1.4rem; }
.plan__desc { color: var(--muted); font-size: 0.9rem; margin-bottom: 18px; }
.plan__price { font-family: "Poppins"; font-size: 3rem; font-weight: 800; display: flex; align-items: flex-start; gap: 2px; margin-bottom: 22px; }
.plan__cur { font-size: 1.4rem; margin-top: 8px; }
.plan__per { font-size: 0.95rem; font-weight: 600; color: var(--muted); align-self: flex-end; margin-bottom: 12px; margin-left: 6px; }
.plan__features { display: grid; gap: 12px; margin-bottom: 26px; flex: 1; }
.plan__features li { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 0.95rem; }
.plan__features i { color: var(--whatsapp); }
.pricing__note { text-align: center; margin-top: 30px; color: var(--muted); }
.pricing__note i { color: var(--gold); }
.pricing__note a { color: var(--accent); font-weight: 700; }

/* Reviews / Trust */
.trust-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 22px 34px; margin-top: 26px; }
.trust-row__item { display: flex; align-items: center; gap: 12px; text-align: left; }
.trust-row__item span { color: var(--muted); font-size: 0.9rem; }
.trust-star { font-size: 1.8rem; color: #00b67a; }
.trust-google { font-size: 1.7rem; color: #4285f4; }
.trust-row__stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 2px; }

.review { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.review__stars { color: var(--gold); margin-bottom: 12px; letter-spacing: 2px; }
.review p { font-size: 0.98rem; margin-bottom: 18px; }
.review__user { display: flex; align-items: center; gap: 12px; }
.review__avatar {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.review__user small { color: var(--muted); }

/* FAQ */
.faq { display: grid; gap: 14px; }
.faq__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 4px 22px; transition: border-color 0.2s; }
.faq__item[open] { border-color: rgba(142,123,255,0.5); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  font-weight: 700; font-size: 1.05rem; cursor: pointer; padding: 18px 0; list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary i { color: var(--accent); transition: transform 0.25s; }
.faq__item[open] summary i { transform: rotate(180deg); }
.faq__item p { color: var(--muted); padding-bottom: 20px; }

/* CTA */
.cta { padding: 80px 0; text-align: center; background: linear-gradient(135deg, rgba(108,92,231,0.18), rgba(0,212,255,0.12)); border-block: 1px solid var(--border); }
.cta__inner { max-width: 720px; margin: 0 auto; }
.cta h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; }
.cta p { color: var(--muted); font-size: 1.1rem; margin: 16px 0 28px; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding-top: 60px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 36px; padding-bottom: 40px; }
.footer__brand p { color: var(--muted); margin: 16px 0; font-size: 0.95rem; max-width: 320px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--border); color: var(--text); transition: 0.2s;
}
.footer__social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer__col h4 { margin-bottom: 16px; font-size: 1.05rem; }
.footer__col ul { display: grid; gap: 10px; }
.footer__col a { color: var(--muted); font-size: 0.95rem; transition: color 0.2s; }
.footer__col a:hover { color: var(--accent); }
.footer__contact i { color: var(--accent); width: 18px; }
.footer__bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: var(--muted); font-size: 0.88rem; }
.footer__legal a { color: var(--accent); }

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: var(--whatsapp); color: #fff;
  display: grid; place-items: center; font-size: 1.7rem; box-shadow: 0 10px 30px rgba(37,211,102,0.5);
}
.whatsapp-float__pulse {
  position: absolute; inset: 0; border-radius: 50%; background: var(--whatsapp); z-index: -1;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(1.8);opacity:0} }

/* World Cup interstitial popup (modal) */
.wc-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; }
.wc-modal[hidden] { display: none; }
.wc-modal__overlay {
  position: absolute; inset: 0; background: rgba(3,5,12,0.80);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.wc-modal.show .wc-modal__overlay { opacity: 1; }
.wc-modal__card {
  position: relative; z-index: 1; width: 100%; max-width: 440px; text-align: center; overflow: hidden;
  background: linear-gradient(180deg, #14203c, #0b1426);
  border: 1px solid rgba(255,200,61,0.45); border-radius: 24px; padding: 42px 30px 28px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.65), 0 0 70px rgba(255,200,61,0.16);
  transform: translateY(26px) scale(0.95); opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}
.wc-modal.show .wc-modal__card { transform: none; opacity: 1; }
.wc-modal__glow {
  position: absolute; top: -70px; left: 50%; transform: translateX(-50%);
  width: 280px; height: 220px; pointer-events: none;
  background: radial-gradient(circle, rgba(255,200,61,0.40), transparent 70%);
}
.wc-modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 2; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid var(--border); color: var(--text);
  font-size: 1.5rem; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: 0.25s;
}
.wc-modal__close:hover { background: rgba(255,255,255,0.18); transform: rotate(90deg); }
.wc-modal__icon {
  position: relative; z-index: 1; width: 80px; height: 80px; margin: 0 auto 18px; border-radius: 22px;
  display: grid; place-items: center; font-size: 2.3rem; color: #1a1300;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 16px 44px rgba(255,200,61,0.5); animation: floaty 4s ease-in-out infinite;
}
.wc-modal__tag {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 1.4px; color: var(--gold-2); background: rgba(255,200,61,0.10);
  border: 1px solid rgba(255,200,61,0.35); padding: 6px 15px; border-radius: 999px; margin-bottom: 14px;
}
.wc-modal__title { font-size: 1.65rem; font-weight: 800; line-height: 1.2; margin-bottom: 10px; }
.wc-modal__text { color: var(--muted); font-size: 0.96rem; margin-bottom: 22px; }
.wc-modal__offer { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 22px; }
.wc-modal__price { font-family: "Poppins"; font-weight: 800; font-size: 2.6rem; display: inline-flex; align-items: flex-start; line-height: 1; }
.wc-modal__price span { font-size: 1.3rem; margin-top: 6px; margin-right: 2px; }
.wc-modal__per { color: var(--gold-2); font-size: 0.82rem; text-align: left; font-weight: 700; line-height: 1.25; }
.wc-modal__btn { width: 100%; }
.wc-modal__dismiss {
  display: block; width: 100%; margin-top: 14px; background: none; border: none;
  color: var(--muted); font-size: 0.85rem; cursor: pointer; transition: color 0.2s;
}
.wc-modal__dismiss:hover { color: var(--text); }
@media (max-width: 460px) {
  .wc-modal__card { padding: 38px 22px 24px; }
  .wc-modal__title { font-size: 1.45rem; }
}

/* Back to top */
.to-top {
  position: fixed; bottom: 24px; left: 24px; z-index: 90;
  width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--border);
  background: var(--surface); color: var(--text); cursor: pointer; display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: 0.3s;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--primary); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
  .header__cta { display: none; }
  /* Mobile menu = full-width dropdown anchored BELOW the sticky header.
     (Avoids the backdrop-filter containing-block trap that breaks position:fixed.) */
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    box-shadow: 0 24px 50px rgba(0,0,0,0.55);
    padding: 10px 0 16px;
    max-height: calc(100dvh - 64px); overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(-14px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  }
  .nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__list { flex-direction: column; gap: 0; width: 90%; margin: 0 auto; }
  .nav__link { display: block; padding: 15px 4px; font-size: 1.05rem; border-bottom: 1px solid var(--border); }
  .nav__link::after { display: none; }
  .nav__toggle { display: flex; }
  .section { padding: 58px 0; }
  .grid--3 { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2,1fr); gap: 28px 12px; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-6px); }
  .hero__points { grid-template-columns: 1fr; }
  .hero__points--center { justify-items: center; }
  .wc__inner { padding: 64px 0; }
  .wc__icon { width: 84px; height: 84px; font-size: 2.4rem; margin-bottom: 22px; }
  .wc__sub { font-size: 1rem; }
}

@media (max-width: 600px) {
  .container { width: 90%; }
  .topbar { display: none; }       /* remove the top announcement bar on mobile */
  .hero { padding: 66px 0 48px; }
  .badge { font-size: 0.78rem; padding: 7px 14px; }
  .hero__title { font-size: clamp(1.9rem, 9vw, 2.8rem); }
  .hero__subtitle { font-size: 1rem; margin-top: 16px; }
  .hero__points { gap: 9px; margin-bottom: 24px; }
  .hero__actions { gap: 12px; }
  .hero__trust { gap: 12px 18px; justify-content: center; font-size: 0.85rem; }
  .section__title { font-size: clamp(1.6rem, 6.5vw, 2rem); }
  .section__head { margin-bottom: 36px; }
  .stat__num { font-size: 2rem; }
  .trust-row { gap: 16px 22px; }
  .plan { padding: 28px 22px; }
  .cta__actions { flex-direction: column; }
  .whatsapp-float { width: 54px; height: 54px; font-size: 1.5rem; bottom: 18px; right: 18px; }
  .to-top { bottom: 18px; left: 18px; width: 42px; height: 42px; }
}

@media (max-width: 460px) {
  .logo__tag { display: none; }
  .logo { font-size: 1.15rem; }
  .grid--4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .hero__actions .btn, .cta__actions .btn { width: 100%; }
  .topbar__inner { flex-direction: column; gap: 5px; }
  .plan__price { font-size: 2.6rem; }
}

/* Very small phones */
@media (max-width: 360px) {
  .hero__title { font-size: 1.7rem; }
  .stats__grid { grid-template-columns: 1fr; }
}

/* Short / landscape screens: don't force a full-height hero */
@media (max-height: 640px) and (max-width: 992px) {
  .hero { min-height: auto; padding: 92px 0 48px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
