/* ════════════════════════════════════════════════════
   ElevyTV v2 — style.css
   Fontes: Syne (display/titles) + DM Sans (body)
   Tema: Cinema noir, vermelho cinza-carvão, glassmorphism
════════════════════════════════════════════════════ */

/* ── RESET ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #08080f;
  color: #d8d8e8;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }

/* ── DESIGN TOKENS ───────────────────────────── */
:root {
  --bg:         #08080f;
  --bg2:        #0c0c18;
  --bg3:        #101020;
  --surface:    #13131f;
  --surface2:   #18182a;
  --glass:      rgba(255,255,255,0.04);
  --glass-b:    rgba(255,255,255,0.08);

  --red:        #e8192c;
  --red-d:      #a81020;
  --red-glow:   rgba(232,25,44,0.3);
  --red-soft:   rgba(232,25,44,0.1);

  --purple:     #7225e8;
  --gold:       #f0a500;

  --white:      #ffffff;
  --off:        #ddddf0;
  --muted:      #6a6a88;
  --border:     rgba(255,255,255,0.07);
  --border2:    rgba(255,255,255,0.12);

  --font-h: 'Syne', sans-serif;
  --font-b: 'DM Sans', sans-serif;

  --r:    10px;
  --r-lg: 18px;
  --r-xl: 24px;
  --pill: 999px;

  --ease: cubic-bezier(.4,0,.2,1);
  --t:    .25s var(--ease);
}

/* ── CONTAINER ──────────────────────────────── */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── TYPOGRAPHY ─────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-h); line-height: 1.12; color: var(--white); }
em { font-style: normal; color: var(--red); }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-b); font-weight: 600; font-size: .9rem; letter-spacing: .05em;
  border-radius: var(--pill); padding: 13px 28px; cursor: pointer; border: none;
  transition: var(--t); white-space: nowrap;
}
.btn-cta {
  background: linear-gradient(130deg, var(--red) 0%, #bf0e1e 100%);
  color: #fff;
  box-shadow: 0 0 0 0 var(--red-glow);
  animation: pulse-glow 2.8s infinite;
}
.btn-cta:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 10px 36px var(--red-glow); animation: none; }
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 0 0 var(--red-glow); }
  50%      { box-shadow: 0 0 0 12px rgba(232,25,44,0); }
}
.btn-hero { font-size: 1.05rem; padding: 17px 40px; }
.btn-sm   { padding: 9px 20px; font-size: .82rem; }
.btn-full { width: 100%; }
.btn-glass {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border2);
  color: var(--off);
}
.btn-glass:hover { background: rgba(255,255,255,0.13); transform: translateY(-2px); }
.btn-outline-plan {
  background: transparent;
  border: 1.5px solid var(--border2);
  color: var(--off);
}
.btn-outline-plan:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

/* ── SECTION HEADER ─────────────────────────── */
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--red);
  background: var(--red-soft); border: 1px solid rgba(232,25,44,0.22);
  border-radius: var(--pill); padding: 5px 16px; margin-bottom: 14px;
}
.section-title { font-size: clamp(1.75rem, 3.8vw, 2.7rem); margin-bottom: 14px; }
.section-sub { font-size: 1rem; color: var(--muted); max-width: 540px; margin: 0 auto; }

/* ── REVEAL ANIMATION ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .34s; }
.delay-4 { transition-delay: .46s; }
.delay-5 { transition-delay: .58s; }

/* ════════════════════════════════════════════
   ANNOUNCE BAR
════════════════════════════════════════════ */
.announce-bar {
  position: relative; z-index: 200;
  background: linear-gradient(90deg,#1a0010,#200518,#1a0010);
  border-bottom: 1px solid rgba(232,25,44,.2);
  padding: 10px 20px;
}
.announce-inner {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  flex-wrap: wrap; font-size: .82rem; color: #e8b8c0;
  max-width: 1180px; margin: 0 auto; text-align: center;
}
.announce-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--red);
  animation: blink 1.4s infinite; flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.2} }
.announce-link { color: var(--red); font-weight: 700; }
.announce-link:hover { text-decoration: underline; }
.announce-close {
  background: none; border: none; cursor: pointer; color: var(--muted);
  font-size: .9rem; padding: 2px 6px; margin-left: auto;
  transition: color var(--t);
}
.announce-close:hover { color: var(--white); }

/* ════════════════════════════════════════════
   HEADER
════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 150;
  padding: 16px 0;
  transition: background var(--t), box-shadow var(--t), padding var(--t);
}
.site-header.up { top: 36px; } /* offset for announce bar */
.site-header.scrolled {
  background: rgba(8,8,15,.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
  padding: 11px 0;
}
.header-inner { display: flex; align-items: center; gap: 20px; }
.logo {
  font-family: var(--font-h); font-size: 1.75rem; font-weight: 800;
  color: var(--white); letter-spacing: -.01em; flex-shrink: 0;
}
.logo em { color: var(--red); font-weight: 800; }
.logo-play { color: var(--red); margin-right: 2px; font-size: 1.2rem; }
.header-nav { display: flex; gap: 28px; margin: 0 auto; }
.header-nav a {
  font-size: .87rem; font-weight: 500; color: var(--muted);
  transition: color var(--t);
}
.header-nav a:hover { color: var(--white); }
.header-right { display: flex; align-items: center; gap: 12px; margin-left: auto; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--off); border-radius: 2px; transition: var(--t); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
.mobile-nav {
  display: none; flex-direction: column; gap: 4px; padding: 16px 24px 24px;
  background: rgba(8,8,15,.98);
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 0; font-size: 1rem; font-weight: 500; color: var(--off); border-bottom: 1px solid var(--border); }
.mobile-nav a:last-of-type { border: none; }
.mobile-nav-cta { margin-top: 12px; }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-film-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 200px;
}
.hero-gradient {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(232,25,44,.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 20%, rgba(114,37,232,.14) 0%, transparent 60%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(8,8,15,1) 50%, transparent 100%),
    var(--bg);
}
.hero-spotlight {
  position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0;
}
.spotlight-1 { width:500px; height:500px; top:-120px; left:-100px; background:radial-gradient(circle,rgba(232,25,44,.16) 0%,transparent 70%); }
.spotlight-2 { width:400px; height:400px; top:100px; right:0; background:radial-gradient(circle,rgba(114,37,232,.13) 0%,transparent 70%); }
.spotlight-3 { width:600px; height:300px; bottom:0; left:30%; background:radial-gradient(ellipse,rgba(8,8,15,.8) 0%,transparent 70%); }

.hero-content { position: relative; z-index: 5; max-width: 820px; }

.hero-live-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,25,44,.12); border: 1px solid rgba(232,25,44,.28);
  border-radius: var(--pill); padding: 7px 16px;
  font-size: .82rem; font-weight: 600; color: #ff9faa; margin-bottom: 28px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); animation: blink 1.3s infinite; flex-shrink: 0;
}
.live-divider { color: rgba(255,159,170,.4); }

.hero-headline {
  font-family: var(--font-h); font-size: clamp(2rem, 5.5vw, 3.9rem);
  font-weight: 800; color: var(--white); line-height: 1.08;
  margin-bottom: 24px; letter-spacing: -.02em;
}
.hl {
  display: inline;
  background: linear-gradient(90deg,#ff4d5e,#e8192c,#c0112a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub { font-size: clamp(.95rem,2vw,1.15rem); color: var(--muted); margin-bottom: 32px; }
.hero-sub strong { color: var(--off); }
.br-hide { display: none; }

.hero-social-proof {
  display: flex; align-items: center; gap: 14px; margin-bottom: 36px; flex-wrap: wrap;
}
.proof-avatars { display: flex; }
.proof-av {
  width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .88rem; color: #fff; margin-right: -10px;
}
.proof-stars { font-size: .9rem; color: #ffd700; letter-spacing: .05em; }
.proof-label { font-size: .82rem; color: var(--muted); margin-top: 2px; }

.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }

.hero-microcopy {
  display: flex; align-items: center; gap: 6px;
  font-size: .78rem; color: var(--muted); margin-bottom: 32px;
}
.hero-microcopy svg { color: #25d366; flex-shrink: 0; }

.hero-devices { display: flex; gap: 8px; flex-wrap: wrap; }
.device-chip {
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  border-radius: var(--pill); padding: 6px 14px; font-size: .78rem; color: var(--muted);
  backdrop-filter: blur(8px);
}

.hero-scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted); font-size: .72rem; z-index: 5;
  animation: float 2.8s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(9px)} }
.scroll-mouse {
  width: 22px; height: 36px; border: 2px solid var(--border2); border-radius: 12px;
  display: flex; align-items: flex-start; justify-content: center; padding-top: 5px;
}
.scroll-wheel {
  width: 3px; height: 7px; background: var(--muted); border-radius: 2px;
  animation: wheel 1.8s ease infinite;
}
@keyframes wheel { 0%{opacity:1;transform:translateY(0)} 100%{opacity:0;transform:translateY(12px)} }

/* ════════════════════════════════════════════
   STATS BAR
════════════════════════════════════════════ */
.stats-bar {
  background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 28px 0; position: relative; overflow: hidden;
}
.stats-inner {
  display: flex; justify-content: center; align-items: center; gap: 0; flex-wrap: wrap;
}
.stat-item {
  flex: 1; min-width: 140px; text-align: center;
  padding: 8px 24px; border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block; font-family: var(--font-h); font-size: 2.2rem; font-weight: 800;
  color: var(--white); letter-spacing: -.02em;
}
.stat-lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }

/* ════════════════════════════════════════════
   CATALOG
════════════════════════════════════════════ */
.catalog { padding: 100px 0; background: var(--bg2); }

.cat-filters {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px;
}
.cat-pill {
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--pill);
  padding: 8px 18px; font-size: .82rem; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: var(--t); font-family: var(--font-b);
}
.cat-pill:hover { color: var(--off); border-color: var(--border2); }
.cat-pill.active { background: var(--red-soft); border-color: rgba(232,25,44,.35); color: #ff8f99; }

.catalog-wrap {
  position: relative; display: flex; align-items: center; gap: 0;
}
.catalog-scroll {
  display: flex; gap: 16px; overflow-x: auto; scroll-behavior: smooth;
  padding: 12px 4px 20px; -webkit-overflow-scrolling: touch; flex: 1;
  /* hide scrollbar */
  scrollbar-width: none; -ms-overflow-style: none;
}
.catalog-scroll::-webkit-scrollbar { display: none; }

.catalog-card {
  flex-shrink: 0; width: 200px; cursor: pointer;
  transition: opacity .3s;
}
.catalog-card.hidden { display: none; }

.card-img {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 2/2.82; background: var(--surface);
}
.card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.catalog-card:hover .card-img img { transform: scale(1.07); }

.card-overlay {
  position: absolute; inset: 0; border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.85) 100%);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 14px; opacity: 0; transition: opacity .35s var(--ease);
}
.catalog-card:hover .card-overlay { opacity: 1; }
.card-badge {
  align-self: flex-start; background: rgba(0,0,0,.55); backdrop-filter: blur(8px);
  border: 1px solid var(--bc,#fff); border-radius: var(--pill);
  padding: 4px 12px; font-size: .72rem; font-weight: 700; color: var(--white);
}
.card-overlay-body { }
.card-overlay-body h3 { font-family: var(--font-h); font-size: 1rem; color: #fff; margin-bottom: 10px; }
.card-play-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red); color: #fff; font-size: .78rem; font-weight: 700;
  padding: 7px 14px; border-radius: var(--pill); transition: var(--t);
}
.card-play-btn:hover { background: var(--red-d); }

.card-meta-cat { font-size: .72rem; font-weight: 700; margin-top: 10px; }
.card-meta-title { font-size: .85rem; font-weight: 600; color: var(--off); margin-top: 4px; }

/* Carousel nav */
.cat-nav {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.07); backdrop-filter: blur(10px);
  border: 1px solid var(--border2); cursor: pointer; color: var(--off);
  display: flex; align-items: center; justify-content: center;
  transition: var(--t); z-index: 2;
}
.cat-nav:hover { background: rgba(255,255,255,.14); }
.cat-nav-left  { margin-right: 8px; }
.cat-nav-right { margin-left: 8px; }

.catalog-bottom { text-align: center; margin-top: 40px; }
.catalog-bottom p { color: var(--muted); font-size: .88rem; margin-bottom: 20px; }

/* ════════════════════════════════════════════
   TICKER
════════════════════════════════════════════ */
.ticker-wrap {
  overflow: hidden; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 14px 0; position: relative;
}
.ticker-track {
  display: flex; width: max-content;
  animation: ticker 35s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { white-space: nowrap; font-size: .82rem; color: var(--muted); padding: 0 4px; }
.ticker-dot { margin: 0 20px; color: var(--red); }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ════════════════════════════════════════════
   BENEFITS
════════════════════════════════════════════ */
.benefits { padding: 100px 0; background: var(--bg); }
.benefits-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px,1fr)); gap: 18px;
  margin-bottom: 48px;
}
.bcard {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 32px 28px; position: relative; overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.bcard:hover { transform: translateY(-5px); border-color: var(--border2); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.bcard--hl { background: linear-gradient(160deg, #130d22, #0f0b1a); border-color: rgba(114,37,232,.25); }
.bcard--hl:hover { border-color: rgba(114,37,232,.5); }
.bcard-icon { font-size: 2rem; margin-bottom: 16px; }
.bcard h3 { font-family: var(--font-h); font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.bcard p  { font-size: .88rem; color: var(--muted); line-height: 1.65; }
.bcard-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,var(--purple),transparent); }
.benefits-cta { text-align: center; }

/* ════════════════════════════════════════════
   IMPACT
════════════════════════════════════════════ */
.impact {
  position: relative; padding: 110px 0; overflow: hidden; text-align: center;
}
.impact-ambient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(232,25,44,.14) 0%, transparent 70%),
    var(--bg3);
}
.impact-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.impact-inner { position: relative; z-index: 2; max-width: 740px; margin: 0 auto; }
.impact-eyebrow { font-size: .78rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.impact-title {
  font-family: var(--font-h); font-size: clamp(2.2rem,5vw,3.8rem); font-weight: 800;
  color: var(--white); margin-bottom: 20px; line-height: 1.1;
}
.impact-title em {
  display: block;
  background: linear-gradient(90deg,#ff6070,var(--red),#a80f20);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.impact-desc { font-size: 1.05rem; color: var(--muted); margin-bottom: 40px; }
.impact-checks {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 28px;
}
.impact-checks span {
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  border-radius: var(--pill); padding: 6px 16px; font-size: .8rem; color: var(--off);
}

/* ════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════ */
.how-it-works { padding: 90px 0; background: var(--bg2); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; }
.step {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 32px 28px; transition: var(--t);
}
.step:hover { border-color: var(--border2); transform: translateY(-4px); }
.step-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.step-n { font-family: var(--font-h); font-size: 3rem; color: var(--red); line-height: 1; opacity: .8; }
.step-e { font-size: 2rem; }
.step h3 { font-family: var(--font-h); font-size: 1.1rem; color: var(--white); margin-bottom: 10px; }
.step p  { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ════════════════════════════════════════════
   PLANS
════════════════════════════════════════════ */
.plans { padding: 100px 0; background: var(--bg3); position: relative; overflow: hidden; }
.plans-glow {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(114,37,232,.1) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.plans-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px,1fr)); gap: 22px;
  position: relative; z-index: 2; margin-bottom: 28px;
}
.pcard {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 36px 28px; position: relative; text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.pcard:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.45); }
.pcard--feat {
  background: linear-gradient(160deg,#160d30,#0e0920);
  border-color: var(--purple);
  box-shadow: 0 0 0 1px var(--purple), 0 24px 60px rgba(114,37,232,.2);
  transform: scale(1.04);
}
.pcard--feat:hover { transform: scale(1.04) translateY(-6px); }
.pcard-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg,var(--purple),#5010cc);
  color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; padding: 5px 18px; border-radius: var(--pill); white-space: nowrap;
}
.pcard-name { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.pcard--feat .pcard-name { color: #b89ae8; }
.pcard-price { display: flex; align-items: flex-end; justify-content: center; gap: 4px; margin-bottom: 28px; }
.pcard-price sup { font-size: 1rem; color: var(--muted); margin-bottom: 8px; font-weight: 700; }
.pcard-price span { font-family: var(--font-h); font-size: 3.4rem; color: var(--white); line-height: 1; }
.pcard-price small { font-size: .82rem; color: var(--muted); margin-bottom: 8px; }
.pcard-list { list-style: none; text-align: left; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.pcard-list li { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--off); }
.pcard-list svg { color: #25d366; flex-shrink: 0; }
.plans-note { text-align: center; font-size: .84rem; color: var(--muted); display: flex; align-items: center; justify-content: center; gap: 6px; position: relative; z-index: 2; }

/* ════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════ */
.testimonials { padding: 100px 0; background: var(--bg); }
.tgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 18px; }
.tcard {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 26px 24px; transition: var(--t);
}
.tcard:hover { border-color: rgba(232,25,44,.18); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.35); }
.tcard-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.tcard-av {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--c,#e8192c); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; color: #fff;
}
.tcard-who { flex: 1; }
.tcard-who strong { display: block; font-size: .9rem; color: var(--white); }
.tcard-who span   { font-size: .76rem; color: var(--muted); }
.tcard-stars { color: #ffd700; font-size: .9rem; }
.tcard-text { font-size: .88rem; color: var(--off); line-height: 1.65; font-style: italic; margin-bottom: 14px; }
.tcard-verified { display: flex; align-items: center; gap: 5px; font-size: .72rem; color: #25d366; }

/* ════════════════════════════════════════════
   URGENCY
════════════════════════════════════════════ */
.urgency-band {
  padding: 32px 0;
  background: linear-gradient(90deg,#1c0808,#260a0a,#1c0808);
  border-top: 1px solid rgba(232,25,44,.2); border-bottom: 1px solid rgba(232,25,44,.2);
}
.urgency-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.urgency-text { display: flex; align-items: center; gap: 14px; }
.urgency-flame { font-size: 2rem; }
.urgency-text strong { display: block; color: var(--white); font-size: 1.05rem; margin-bottom: 4px; }
.urgency-text p { font-size: .88rem; color: #ffbbbb; }

/* ════════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.faq { padding: 100px 0; background: var(--bg2); }
.faq-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; transition: border-color var(--t);
}
.faq-item.open { border-color: rgba(232,25,44,.28); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-b); font-size: .95rem; font-weight: 600; color: var(--white);
  transition: color var(--t);
}
.faq-q:hover { color: var(--red); }
.faq-icon { flex-shrink: 0; color: var(--muted); transition: transform var(--t); }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item.open .faq-a { max-height: 180px; }
.faq-a p { padding: 0 22px 18px; font-size: .88rem; color: var(--muted); line-height: 1.7; }

.faq-side-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 32px 28px; text-align: center; position: sticky; top: 100px;
}
.faq-side-icon { font-size: 2.5rem; margin-bottom: 16px; }
.faq-side-card h3 { font-family: var(--font-h); font-size: 1.15rem; color: var(--white); margin-bottom: 10px; }
.faq-side-card p  { font-size: .88rem; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }
.faq-online { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: .78rem; color: #25d366; margin-top: 14px; }
.online-dot { width: 8px; height: 8px; border-radius: 50%; background: #25d366; animation: blink 1.6s infinite; }

/* ════════════════════════════════════════════
   FINAL CTA
════════════════════════════════════════════ */
.final-cta { padding: 130px 0; position: relative; overflow: hidden; text-align: center; }
.final-cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(232,25,44,.16) 0%, transparent 65%),
    var(--bg);
}
.final-cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.final-eyebrow { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; font-weight: 700; }
.final-title { font-family: var(--font-h); font-size: clamp(1.8rem,4.5vw,3.2rem); color: var(--white); margin-bottom: 20px; }
.final-sub { font-size: 1rem; color: var(--muted); margin-bottom: 40px; line-height: 1.7; }
.final-sub strong { color: var(--off); }
.final-note { margin-top: 18px; font-size: .82rem; color: #ff9faa; font-weight: 600; }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer { background: var(--surface); border-top: 1px solid var(--border); padding: 60px 0 32px; }
.footer-inner { display: flex; flex-direction: column; gap: 0; }
.footer-top {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 32px;
  flex-wrap: wrap; padding-bottom: 40px; margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.footer-logo { font-family: var(--font-h); font-size: 1.8rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.footer-logo em { color: var(--red); }
.footer-brand p { font-size: .85rem; color: var(--muted); max-width: 200px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .88rem; color: var(--muted); transition: color var(--t); }
.footer-links a:hover { color: var(--white); }
.footer-wpp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff; font-size: .88rem; font-weight: 700;
  padding: 12px 24px; border-radius: var(--pill); transition: var(--t);
}
.footer-wpp:hover { background: #1ab855; transform: translateY(-2px); }
.footer-bottom { text-align: center; font-size: .76rem; color: var(--muted); }

/* ════════════════════════════════════════════
   FLOATING WPP
════════════════════════════════════════════ */
.wpp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,.45);
  transition: var(--t);
  animation: wpp-bounce 3s ease-in-out infinite;
}
.wpp-float:hover { background: #1ab855; transform: scale(1.1); animation: none; }
.wpp-ring {
  position: absolute; width: 100%; height: 100%; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.5);
  animation: ring-expand 2s ease-out infinite;
}
@keyframes wpp-bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes ring-expand { 0%{transform:scale(1);opacity:.8} 100%{transform:scale(1.6);opacity:0} }

/* ════════════════════════════════════════════
   TOASTS
════════════════════════════════════════════ */
.toast-container { position: fixed; bottom: 104px; left: 20px; z-index: 500; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.toast {
  background: rgba(20,20,36,.92); backdrop-filter: blur(16px);
  border: 1px solid var(--border2); border-left: 3px solid #25d366;
  border-radius: var(--r-lg); padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  min-width: 264px; max-width: 300px;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  animation: toast-in .4s var(--ease) forwards;
}
.toast.out { animation: toast-out .4s var(--ease) forwards; }
.toast-av {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem; color: #fff;
}
.toast-body { flex: 1; min-width: 0; }
.toast-name { font-size: .84rem; font-weight: 700; color: var(--white); }
.toast-action { font-size: .76rem; color: var(--muted); margin-top: 2px; }
.toast-time { font-size: .68rem; color: var(--muted); flex-shrink: 0; align-self: flex-start; }
@keyframes toast-in  { from{opacity:0;transform:translateX(-24px)} to{opacity:1;transform:translateX(0)} }
@keyframes toast-out { from{opacity:1;transform:translateX(0)} to{opacity:0;transform:translateX(-24px)} }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 960px) {
  .header-nav { display: none; }
  .hamburger  { display: flex; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-side-card { position: static; }
  .pcard--feat { transform: none; }
  .pcard--feat:hover { transform: translateY(-6px); }
  .footer-top { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .hero { padding: 120px 0 80px; }
  .hero-headline { font-size: clamp(1.8rem,8vw,2.6rem); }
  .hero-cta-group { flex-direction: column; }
  .btn-hero { width: 100%; }
  .stats-inner { gap: 0; }
  .stat-item { min-width: 50%; border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .urgency-inner { flex-direction: column; align-items: flex-start; }
  .urgency-inner .btn { width: 100%; justify-content: center; }
  .announce-close { display: none; }
  .catalog-card { width: 160px; }
  .br-hide { display: initial; }
  .wpp-float { bottom: 16px; right: 16px; width: 54px; height: 54px; }
  .toast-container { left: 12px; }
  .toast { min-width: 230px; max-width: 260px; }
}
@media (min-width: 641px) {
  .br-hide { display: none; }
}
