/* ==========================================================================
   IPTV8K — Cinematic Redesign
   Tokens · Reset · Components · Layout · Responsive
   ========================================================================== */

:root {
  /* Surfaces */
  --bg-0: #08090c;
  --bg-1: #0f1116;
  --bg-2: #161922;
  --bg-3: #1d2230;

  /* Lines & ink */
  --line:    rgba(255, 255, 255, 0.08);
  --line-2:  rgba(255, 255, 255, 0.14);
  --ink-0:   #f6f7fa;
  --ink-1:   #a4abb8;
  --ink-2:   #6b7280;

  /* Brand */
  --accent:       #22c55f;
  --accent-2:     #16c47f;
  --accent-soft:  rgba(34, 197, 95, 0.12);
  --accent-glow:  rgba(34, 197, 95, 0.35);
  --hot:          #e50914;
  --hot-soft:     rgba(229, 9, 20, 0.14);

  /* Type */
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows */
  --sh-sm:  0 2px 6px rgba(0,0,0,0.35);
  --sh-md:  0 14px 34px -12px rgba(0,0,0,0.55), 0 1px 0 rgba(255,255,255,0.04) inset;
  --sh-lg:  0 28px 70px -20px rgba(0,0,0,0.65), 0 1px 0 rgba(255,255,255,0.06) inset;
  --sh-glow:0 0 0 1px rgba(34,197,95,0.55), 0 28px 70px -20px rgba(34,197,95,0.35);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 180ms;
  --t-med:  280ms;
  --t-slow: 480ms;

  /* Layout */
  --container: 1240px;
  --pad-x: clamp(18px, 4vw, 40px);

  /* Header heights */
  --hdr-h:       72px;
  --hdr-h-sm:    60px;
  --topbar-h:    36px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-0);
  background: var(--bg-0);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { padding: 0; margin: 0; list-style: none; }
h1,h2,h3,h4 { margin: 0; font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; line-height: 1.08; }
p { margin: 0; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}
body.no-scroll { overflow: hidden; }
::selection { background: var(--accent-glow); color: var(--ink-0); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.muted { color: var(--ink-1); }

/* ---------- Reusable typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 8.6vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.display--sm { font-size: clamp(34px, 5vw, 60px); line-height: 1.05; }
.display__grad {
  background: linear-gradient(120deg, var(--accent) 10%, var(--accent-2) 60%, #74e0a8 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.h2 {
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.lede {
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--ink-1);
  max-width: 60ch;
  line-height: 1.65;
}
.eyebrow {
  display: inline-block;
  font: 600 12px/1 var(--font-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 10px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-glow);
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}
.eyebrow--invert { color: var(--bg-0); background: rgba(8,9,12,0.18); border-color: rgba(8,9,12,0.25); }
.eyebrow--red { color: #ff5560; background: var(--hot-soft); border-color: rgba(229,9,20,0.4); }
.section-head { max-width: 880px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head__sub {
  margin-top: 14px;
  color: var(--ink-1);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.65;
}

/* ---------- Buttons ---------- */
.btn {
  --bg: transparent;
  --fg: var(--ink-0);
  --bd: var(--line-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  font: 600 14px/1 var(--font-body);
  letter-spacing: 0.01em;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bd);
  border-radius: var(--r-pill);
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-fast) var(--ease);
  white-space: nowrap;
  position: relative;
  isolation: isolate;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--sm  { padding: 10px 16px; font-size: 13px; }
.btn--lg  { padding: 15px 26px; font-size: 15px; }
.btn--xl  { padding: 18px 32px; font-size: 16px; }
.btn--block { display: flex; width: 100%; }
.btn--primary {
  --bg: linear-gradient(180deg, #2dd47a 0%, var(--accent) 50%, #1ba74e 100%);
  --fg: #04200f;
  --bd: transparent;
  box-shadow: 0 10px 24px -10px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.45);
  text-shadow: 0 1px 0 rgba(255,255,255,0.18);
}
.btn--primary:hover { box-shadow: 0 16px 36px -12px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.55); }
.btn--ghost {
  --bg: rgba(255,255,255,0.04);
  --fg: var(--ink-0);
  --bd: var(--line-2);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.22); }

/* ---------- Chips ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 10px;
  border-radius: var(--r-pill);
  font: 600 12px/1 var(--font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.chip--live { background: var(--accent-soft); color: var(--accent); border: 1px solid var(--accent-glow); }
.chip--ghost { background: rgba(0,0,0,0.5); border: 1px solid var(--line-2); color: var(--ink-0); backdrop-filter: blur(6px); }
.chip__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(34,197,95,0.18);
  animation: pulseDot 1.6s var(--ease) infinite;
}
.chip__dot--red { background: var(--hot); box-shadow: 0 0 0 4px rgba(229,9,20,0.22); }
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,95,0.45); }
  50%     { box-shadow: 0 0 0 8px rgba(34,197,95,0); }
}

.badge {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 8px;
  font: 600 10px/1 var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent-glow);
}

/* ==========================================================================
   Topbar / Header / Drawer
   ========================================================================== */

/* Keyboard users land here first and can jump past the nav. Off-screen until
   focused, never display:none — a hidden link is not reachable by tab. */
.skip-link {
  position: absolute;
  left: 8px;
  top: -60px;
  z-index: 10000;
  padding: 10px 16px;
  background: var(--accent);
  color: #08090c;
  font-weight: 700;
  font-size: 14px;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
  transition: top 140ms ease;
}
.skip-link:focus { top: 0; outline: 2px solid #fff; outline-offset: 2px; }

.topbar {
  position: relative;
  height: var(--topbar-h);
  background: linear-gradient(90deg, var(--accent-2) 0%, var(--accent) 100%);
  color: #04200f;
  overflow: hidden;
  z-index: 60;
}
.topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: var(--pad-x);
}
.topbar__text {
  font: 600 13px/1 var(--font-body);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .topbar__inner { justify-content: flex-start; overflow: hidden; }
  .topbar__text { animation: marquee 22s linear infinite; padding-left: 100%; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 9, 12, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: background var(--t-med) var(--ease), border-color var(--t-med) var(--ease), height var(--t-med) var(--ease);
}
.site-header.is-scrolled { background: rgba(8, 9, 12, 0.85); border-bottom-color: var(--line-2); }
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--hdr-h);
  transition: height var(--t-med) var(--ease);
}
.site-header.is-scrolled .site-header__inner { height: var(--hdr-h-sm); }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand__mark { display: inline-flex; }
.brand__text {
  font: 700 18px/1 var(--font-display);
  letter-spacing: -0.01em;
  color: var(--ink-0);
}
.brand__accent {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav { margin-inline: auto; }
.nav__list {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav__list a {
  display: inline-block;
  padding: 8px 12px;
  font: 500 14px/1 var(--font-body);
  color: var(--ink-1);
  border-radius: var(--r-pill);
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.nav__list a:hover,
.nav__list a[aria-current="page"] {
  color: var(--ink-0);
  background: rgba(255,255,255,0.06);
}

.site-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.hamburger {
  display: none;
  width: 42px; height: 42px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.hamburger span {
  width: 18px; height: 2px;
  background: var(--ink-0);
  border-radius: 2px;
  transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Drawer ---------- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr min(86vw, 380px);
}
.drawer[hidden] { display: none; }
.drawer__scrim {
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(2px);
  animation: fadeIn var(--t-med) var(--ease);
}
.drawer__panel {
  background: var(--bg-1);
  border-left: 1px solid var(--line-2);
  display: flex;
  flex-direction: column;
  padding: 18px 20px 24px;
  animation: slideInR var(--t-med) var(--ease);
}
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.drawer__close {
  width: 40px; height: 40px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-0);
}
.drawer__nav {
  display: flex; flex-direction: column;
  margin-top: 10px;
  flex: 1;
}
.drawer__nav a {
  padding: 14px 4px;
  font: 600 17px/1 var(--font-display);
  border-bottom: 1px solid var(--line);
  color: var(--ink-0);
}
.drawer__nav a:hover { color: var(--accent); }
.drawer__foot { display: grid; gap: 10px; padding-top: 16px; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInR { from { transform: translateX(20px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

@media (max-width: 980px) {
  .nav { display: none; }
  .site-header__actions .btn--ghost { display: none; }
  .hamburger { display: inline-flex; }
}
@media (max-width: 520px) {
  .site-header__actions .btn--primary { display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(60px, 9vw, 120px) 0 clamp(80px, 9vw, 130px);
  background:
    radial-gradient(80% 60% at 20% 0%, rgba(34,197,95,0.18), transparent 60%),
    radial-gradient(70% 50% at 80% 30%, rgba(229,9,20,0.10), transparent 60%),
    var(--bg-0);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.85) brightness(0.55);
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,9,12,0.55) 0%, rgba(8,9,12,0.35) 35%, rgba(8,9,12,0.85) 100%),
    linear-gradient(90deg, rgba(8,9,12,0.85) 0%, rgba(8,9,12,0.25) 40%, rgba(8,9,12,0.55) 100%);
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  position: relative;
}
.hero__copy { max-width: 720px; }
.hero__copy .display { margin-top: 18px; }
.hero__copy .lede { margin-top: 22px; font-size: clamp(15px, 1.2vw, 18px); color: #d6dae3; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.brand-strip li { display: inline-flex; align-items: center; }
.brand-strip img {
  height: 26px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  opacity: 0.78;
  filter: brightness(1.15) contrast(1.05);
  transition: opacity var(--t-fast) var(--ease), filter var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.brand-strip li:hover img { opacity: 1; filter: brightness(1.25) contrast(1.1); transform: translateY(-1px); }
@media (max-width: 640px) {
  .brand-strip { gap: 12px 18px; justify-content: center; }
  .brand-strip img { height: 20px; max-width: 84px; }
}

/* Hero panel (now playing card) */
.hero__panel {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: end;
}
.np-card {
  position: relative;
  width: min(420px, 100%);
  background: linear-gradient(180deg, rgba(22,25,34,0.95), rgba(15,17,22,0.95));
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  padding: 14px;
  box-shadow: var(--sh-lg);
  transform: rotate(-1.5deg);
  transition: transform var(--t-slow) var(--ease);
  z-index: 2;
  backdrop-filter: blur(8px);
}
.np-card--shadow {
  position: absolute;
  inset: auto -22px -28px auto;
  width: min(380px, 90%);
  height: 80%;
  background: linear-gradient(180deg, rgba(34,197,95,0.18), rgba(229,9,20,0.12));
  filter: blur(40px);
  border: 0;
  z-index: 1;
  transform: none;
  border-radius: var(--r-xl);
}
.np-card__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.np-card__quality {
  font: 600 11px/1 var(--font-body);
  letter-spacing: 0.16em;
  color: var(--ink-1);
  padding: 6px 10px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
}
.np-card__art {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #000;
}
.np-card__art img { width: 100%; height: 100%; object-fit: cover; }
.np-card__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff, #d8dde3);
  box-shadow: 0 14px 30px rgba(0,0,0,0.55);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform var(--t-fast) var(--ease);
}
.np-card__play:hover { transform: scale(1.06); }
.np-card__body { padding: 14px 6px 4px; }
.np-card__title { font: 700 16px/1.2 var(--font-display); }
.np-card__sub { color: var(--ink-1); font-size: 12px; margin-top: 4px; letter-spacing: 0.04em; }
.np-card__row { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.np-card__avatars { display: inline-flex; }
.np-card__avatars i {
  display: inline-block; width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid var(--bg-1);
  background: linear-gradient(135deg, #4b5563, #9ca3af);
  margin-left: -8px;
}
.np-card__avatars i:first-child { margin-left: 0; background: linear-gradient(135deg, #22c55f, #16c47f); }
.np-card__avatars i:nth-child(2) { background: linear-gradient(135deg, #f97316, #facc15); }
.np-card__avatars i:nth-child(3) { background: linear-gradient(135deg, #6366f1, #ec4899); }

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 18px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--ink-2);
  font: 500 11px/1 var(--font-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}
.hero__scroll span {
  width: 2px; height: 38px;
  background: linear-gradient(180deg, transparent, var(--ink-0));
  border-radius: 2px;
  animation: scrollHint 2.4s var(--ease) infinite;
}
@keyframes scrollHint {
  0%   { transform: scaleY(0.2); transform-origin: top; }
  50%  { transform: scaleY(1);   transform-origin: top; }
  51%  { transform: scaleY(1);   transform-origin: bottom; }
  100% { transform: scaleY(0);   transform-origin: bottom; }
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__panel { display: none; }
  .brand-strip { gap: 12px 22px; margin-top: 36px; justify-content: center; }
  .hero__scroll { display: none; }
  .hero__cta { justify-content: center; }
}

/* ==========================================================================
   STATS
   ========================================================================== */

.stats {
  position: relative;
  margin-top: clamp(-60px, -6vw, -90px);
  z-index: 3;
}
.stats__card {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: clamp(22px, 3vw, 36px) clamp(20px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(22,25,34,0.92), rgba(15,17,22,0.92));
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  backdrop-filter: blur(20px) saturate(140%);
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #fff 0%, #aab2c0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.stat__label {
  margin-top: 8px;
  color: var(--ink-1);
  font-size: clamp(13px, 1vw, 14px);
  letter-spacing: 0.02em;
}
.stat__div {
  width: 1px;
  height: 60%;
  min-height: 36px;
  background: linear-gradient(180deg, transparent, var(--line-2), transparent);
}
@media (max-width: 760px) {
  .stats__card { grid-template-columns: 1fr; gap: 18px; padding: 24px; }
  .stat__div { display: none; }
  .stat + .stat { padding-top: 18px; border-top: 1px solid var(--line); }
}

/* ==========================================================================
   BENTO MOSAIC
   ========================================================================== */

.mosaic { padding: clamp(80px, 10vw, 140px) 0 clamp(40px, 6vw, 60px); }
.mosaic .section-head { margin-bottom: 44px; }

.bento {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Wide series banner */
.bento__banner {
  position: relative;
  display: block;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line-2);
  aspect-ratio: 16 / 6;
  background: var(--bg-1);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.bento__banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter var(--t-med) var(--ease);
}
.bento__banner::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,9,12,0.92) 0%, rgba(8,9,12,0.55) 40%, rgba(8,9,12,0.05) 100%),
    linear-gradient(180deg, transparent 30%, rgba(8,9,12,0.65) 100%);
  pointer-events: none;
}
.bento__banner:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.bento__banner:hover img { transform: scale(1.04); filter: saturate(1.1); }
.bento__banner-overlay {
  position: absolute;
  inset: auto auto 50% 6%;
  transform: translateY(50%);
  z-index: 2;
  max-width: min(440px, 70%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bento__banner-overlay h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink-0);
}
.bento__banner-overlay p { font-size: 13px; line-height: 1.5; }

@media (max-width: 720px) {
  .bento__banner { aspect-ratio: 16 / 9; }
  .bento__banner-overlay { inset: auto 16px 16px; transform: none; max-width: 90%; }
}

/* Poster shelf */
.shelf {
  display: grid;
  grid-template-columns: 1.5fr repeat(5, 1fr);
  gap: 14px;
}
.shelf__item { display: block; }
.shelf__item--featured { grid-row: span 2; }
.shelf__item:not(.shelf__item--featured) {
  grid-column: auto;
}

/* Standard posters fall on rows under the featured */
.shelf > .shelf__item:nth-child(2),
.shelf > .shelf__item:nth-child(3),
.shelf > .shelf__item:nth-child(4),
.shelf > .shelf__item:nth-child(5),
.shelf > .shelf__item:nth-child(6) { /* row 1, cols 2-6 */ }

.poster {
  position: relative;
  display: block;
  height: 100%;
  aspect-ratio: 2 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-1);
  border: 1px solid var(--line);
  isolation: isolate;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.shelf__item--featured .poster { aspect-ratio: auto; height: 100%; min-height: 460px; border-radius: var(--r-lg); }
.poster img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter var(--t-med) var(--ease);
}
.poster::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
  z-index: 1;
}
.poster:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--accent-glow);
}
.poster:hover img { transform: scale(1.06); filter: saturate(1.1) brightness(1.05); }

.poster__chip {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 3;
  padding: 4px 9px;
  font: 700 10px/1 var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--accent);
  color: #04200f;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 12px -4px var(--accent-glow);
}
.poster__chip--new { background: var(--hot); color: #fff; }

.poster__overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 12px 14px 14px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateY(8px);
  opacity: 0;
  transition: transform var(--t-med) var(--ease), opacity var(--t-med) var(--ease);
}
.poster:hover .poster__overlay,
.poster:focus-visible .poster__overlay {
  transform: translateY(0);
  opacity: 1;
}
.shelf__item--featured .poster__overlay {
  opacity: 1;
  transform: none;
  padding: 18px 22px 22px;
}
.poster__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-0);
  line-height: 1.2;
}
.shelf__item--featured .poster__title { font-size: clamp(18px, 2vw, 24px); }
.poster__sub {
  font-size: 11px;
  color: var(--ink-1);
  letter-spacing: 0.04em;
}
.shelf__item--featured .poster__sub { font-size: 13px; }
.poster__play {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 7px 12px 7px 9px;
  background: #fff;
  color: #04200f;
  border-radius: var(--r-pill);
  font: 700 11px/1 var(--font-body);
  align-self: flex-start;
}

@media (max-width: 1024px) {
  .shelf {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
  /* Show first 7 (1 featured + 6) at this size */
  .shelf > .shelf__item:nth-child(n+8) { display: none; }
}
@media (max-width: 720px) {
  .shelf { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .shelf__item--featured { grid-column: span 3; grid-row: auto; }
  .shelf__item--featured .poster { aspect-ratio: 16 / 9; min-height: 0; }
  .shelf > .shelf__item:nth-child(n+8) { display: block; }
  .shelf > .shelf__item:nth-child(n+11) { display: none; }
}
@media (max-width: 480px) {
  .shelf { grid-template-columns: repeat(2, 1fr); }
  .shelf__item--featured { grid-column: span 2; }
}

.taxonomy {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.taxonomy li {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.taxonomy__icon {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
  background: linear-gradient(180deg, rgba(34,197,95,0.18), transparent);
  border: 1px solid var(--accent-glow);
  border-radius: var(--r-md);
}
.taxonomy strong { display: block; font-family: var(--font-display); font-size: 15px; }
.taxonomy small { display: block; color: var(--ink-1); font-size: 12px; margin-top: 2px; }
@media (max-width: 760px) {
  .taxonomy { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   PRICING
   ========================================================================== */

.pricing {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(34,197,95,0.06), transparent 70%),
    var(--bg-0);
}
.pricing .section-head { margin-bottom: 36px; }

.billing-toggle {
  position: relative;
  display: inline-flex;
  margin-top: 22px;
  background: var(--bg-1);
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  padding: 4px;
  isolation: isolate;
}
.billing-toggle__btn {
  position: relative;
  z-index: 2;
  padding: 10px 22px;
  font: 600 13px/1 var(--font-body);
  color: var(--ink-1);
  border-radius: var(--r-pill);
  transition: color var(--t-fast) var(--ease);
  display: inline-flex; align-items: center;
}
.billing-toggle__btn.is-active { color: #04200f; }
.billing-toggle__btn .badge { background: rgba(8,9,12,0.18); color: #04200f; border-color: rgba(8,9,12,0.18); }
.billing-toggle__pill {
  position: absolute;
  z-index: 1;
  top: 4px; bottom: 4px; left: 4px;
  width: calc(50% - 4px);
  border-radius: var(--r-pill);
  background: linear-gradient(180deg, #2dd47a, var(--accent));
  box-shadow: 0 8px 22px -10px var(--accent-glow);
  transition: transform var(--t-med) var(--ease);
}
.billing-toggle[data-active="yearly"] .billing-toggle__pill { transform: translateX(100%); }

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 32px 32px;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
  overflow: hidden;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--line-2); }

.plan--featured {
  background:
    radial-gradient(90% 70% at 50% 0%, rgba(34,197,95,0.16), transparent 70%),
    linear-gradient(180deg, #0f1a13 0%, #0a1410 100%);
  border-color: transparent;
  box-shadow: var(--sh-glow), var(--sh-lg);
  transform: scale(1.04);
}
.plan--featured::before,
.plan--featured::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, var(--accent) 18%, var(--accent) 82%, transparent 100%);
  box-shadow: 0 0 16px var(--accent-glow);
  pointer-events: none;
}
.plan--featured::before { left: 0; }
.plan--featured::after  { right: 0; }
.plan--featured:hover { transform: scale(1.04) translateY(-4px); }

.plan__ribbon {
  position: absolute;
  top: 14px; right: 14px;
  padding: 4px 10px;
  font: 700 10.5px/1 var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(34,197,95,0.3);
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.plan__head { margin-bottom: 24px; }
.plan__name { font-family: var(--font-display); font-size: 28px; font-weight: 700; letter-spacing: -0.01em; }
.plan__tag { color: var(--ink-2); font-size: 14px; margin-top: 6px; }
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.plan__currency { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--ink-1); align-self: flex-start; padding-top: 14px; }
.plan__amount   { font-family: var(--font-display); font-weight: 800; font-size: clamp(64px, 7vw, 92px); line-height: 0.95; letter-spacing: -0.03em; color: var(--ink-0); }
.plan__period   { color: var(--ink-2); font-size: 15px; margin-left: 4px; font-weight: 500; }

.plan__perm { font-size: 14px; color: var(--ink-2); margin: 6px 0 18px; }
.plan__perm-was { text-decoration: line-through; color: var(--ink-2); margin-right: 8px; opacity: 0.7; }

.plan__features { display: flex; flex-direction: column; gap: 12px; margin: 22px 0 24px; padding-top: 22px; border-top: 1px dashed var(--line-2); flex: 1; }
.plan__features li {
  position: relative;
  padding-left: 30px;
  font-size: 14.5px;
  color: var(--ink-1);
  line-height: 1.5;
}
.plan__features li::before {
  content: "";
  position: absolute; left: 0; top: 3px;
  width: 18px; height: 18px;
  background: var(--accent-soft);
  border: 1px solid rgba(34,197,95,0.35);
  border-radius: 50%;
}
.plan__features li::after {
  content: "";
  position: absolute; left: 5px; top: 7px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.plan__channels {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 18px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.plan__channels li {
  display: flex; align-items: center; justify-content: center;
  min-height: 22px;
}
.plan__channels img {
  max-width: 100%;
  max-height: 18px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  filter: brightness(1.2);
}

@media (max-width: 980px) {
  .plans { grid-template-columns: 1fr; }
  .plan--featured { order: -1; transform: none; }
  .plan--featured:hover { transform: translateY(-4px); }
}

/* 1-month strip */
.strip-plan {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2fr auto;
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  margin-top: 36px;
  padding: clamp(24px, 3vw, 36px);
  background:
    linear-gradient(120deg, rgba(34,197,95,0.92) 0%, rgba(22,196,127,0.92) 100%);
  color: #04200f;
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.strip-plan::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(40% 80% at 100% 50%, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
}
.strip-plan__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-top: 8px;
}
.strip-plan__price span { font-size: 0.45em; vertical-align: top; padding-top: 0.2em; opacity: 0.85; }
.strip-plan__sub { margin-top: 6px; font-weight: 600; opacity: 0.85; }
.strip-plan__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 18px;
}
.strip-plan__features li {
  position: relative;
  padding-left: 22px;
  font: 600 14px/1.4 var(--font-body);
}
.strip-plan__features li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  font-weight: 800;
}
.strip-plan__cta { display: flex; flex-direction: column; gap: 10px; }
.strip-plan__cta .btn--primary {
  --bg: #04200f;
  --fg: #fff;
  box-shadow: 0 14px 28px -10px rgba(4,32,15,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
  text-shadow: none;
}
.strip-plan__cta .btn--ghost {
  --bg: rgba(255,255,255,0.18);
  --fg: #04200f;
  --bd: rgba(4,32,15,0.25);
}

@media (max-width: 880px) {
  .strip-plan { grid-template-columns: 1fr; }
  .strip-plan__features { grid-template-columns: 1fr; }
}

.pricing__note {
  margin-top: 24px;
  text-align: center;
  color: var(--ink-1);
  font-size: 14px;
}
.pricing__brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 32px;
  margin: 36px auto 0;
  max-width: 980px;
  padding: 22px 28px;
  background: linear-gradient(180deg, var(--bg-1), rgba(15,17,22,0.6));
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
}
.pricing__brands li { display: inline-flex; }
.pricing__brands img {
  height: 24px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  opacity: 0.78;
  filter: brightness(1.15);
  transition: opacity var(--t-fast) var(--ease), filter var(--t-fast) var(--ease);
}
.pricing__brands li:hover img { opacity: 1; filter: brightness(1.25); }

/* ==========================================================================
   SPLIT (UEFA + Movies)
   ========================================================================== */

.split { padding: clamp(70px, 9vw, 130px) 0; position: relative; }
.split--live   { background: radial-gradient(70% 50% at 0% 50%, rgba(34,197,95,0.10), transparent 60%); }
.split--movies { background: radial-gradient(70% 50% at 100% 50%, rgba(229,9,20,0.10), transparent 60%); }
.split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.split__inner--reverse .split__media { order: 2; }
.split__copy .h2 { margin: 14px 0 18px; }
.split__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.check-list { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.check-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px;
  color: var(--ink-0);
}
.check {
  display: inline-flex;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent-glow);
  color: var(--accent);
  align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 14px;
}

.frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--line-2);
  background: var(--bg-1);
}
.frame img { width: 100%; height: auto; display: block; }
.frame--tilt { transform: rotate(-1.5deg); transition: transform var(--t-slow) var(--ease); }
.frame--tilt:hover { transform: rotate(0); }
.frame--red { box-shadow: 0 28px 70px -20px rgba(229,9,20,0.4), 0 0 0 1px rgba(229,9,20,0.25); }
.frame__chip {
  position: absolute;
  top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border-radius: var(--r-pill);
  font: 700 11px/1 var(--font-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.frame__chip--new { background: var(--hot); }
.frame__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff, #d8dde3);
  box-shadow: 0 18px 36px rgba(0,0,0,0.55);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform var(--t-fast) var(--ease);
}
.frame__play:hover { transform: scale(1.06); }

@media (max-width: 880px) {
  .split__inner { grid-template-columns: 1fr; }
  .split__inner--reverse .split__media { order: 0; }
}

/* ==========================================================================
   QUALITY carousel
   ========================================================================== */

.quality { padding: clamp(70px, 9vw, 130px) 0; }
.quality .section-head { margin-bottom: 40px; }
.quality__cta { text-align: center; margin-top: 36px; }

.carousel {
  position: relative;
  border-radius: var(--r-xl);
}
.carousel__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 18px;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__slide {
  flex: 0 0 92%;
  scroll-snap-align: center;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--bg-1);
}
.carousel__slide > img { width: 100%; height: auto; display: block; aspect-ratio: 16/8; object-fit: cover; }
@media (min-width: 720px) { .carousel__slide { flex-basis: 80%; } }
@media (min-width: 1100px) { .carousel__slide { flex-basis: 75%; } }

/* qcard — feature slide composition */
.qcard {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  min-height: 360px;
}
.qcard__art {
  position: relative;
  overflow: hidden;
  background: #000;
}
.qcard__art img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 900ms var(--ease);
}
.qcard:hover .qcard__art img { transform: scale(1.04); }
.qcard__art::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,9,12,0.0) 60%, rgba(8,9,12,0.85) 100%),
    linear-gradient(180deg, transparent 60%, rgba(8,9,12,0.4) 100%);
  pointer-events: none;
}
.qcard__art--poster img { object-fit: cover; object-position: center top; }
.qcard__info {
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.qcard__info h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink-0);
}
.qcard__info p {
  color: var(--ink-1);
  font-size: 14.5px;
  line-height: 1.65;
}
.qcard__info .btn { align-self: flex-start; margin-top: 6px; }
.qcard__info .eyebrow { align-self: flex-start; }

@media (max-width: 720px) {
  .qcard { grid-template-columns: 1fr; min-height: 0; }
  .qcard__art { aspect-ratio: 16 / 9; }
}

.carousel__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(8,9,12,0.7);
  border: 1px solid var(--line-2);
  color: var(--ink-0);
  display: inline-flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  z-index: 3;
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.carousel__nav:hover { background: var(--accent); color: #04200f; transform: translateY(-50%) scale(1.05); border-color: transparent; }
.carousel__nav--prev { left: -8px; }
.carousel__nav--next { right: -8px; }
@media (max-width: 720px) { .carousel__nav { display: none; } }

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.carousel__dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line-2);
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.carousel__dots button.is-active { background: var(--accent); transform: scale(1.4); }

/* Testimonials carousel */
.carousel--testi .carousel__track { padding-bottom: 8px; }
.carousel--testi .carousel__slide { all: unset; }
.testi {
  flex: 0 0 calc(100% - 32px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
  margin: 4px 0;
}
.testi::before {
  content: "“";
  position: absolute;
  top: 8px; right: 18px;
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: var(--accent-soft);
  pointer-events: none;
}
@media (min-width: 720px) { .testi { flex-basis: calc(50% - 9px); } }
@media (min-width: 1100px) { .testi { flex-basis: calc(33.333% - 12px); } }

.testi__head { display: flex; align-items: center; gap: 12px; }
.testi__head img,
.testi__avatar-fallback {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--line-2);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: inline-flex; align-items: center; justify-content: center;
  font: 700 18px/1 var(--font-display);
  color: #04200f;
}
.testi__name { font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.testi__stars { color: var(--accent); letter-spacing: 0.06em; font-size: 13px; margin-top: 2px; }
.testi__quote { color: var(--ink-1); font-size: 14px; line-height: 1.65; }

/* ==========================================================================
   WHATSAPP REVIEWS — phone marquee
   ========================================================================== */

.wa-reviews {
  position: relative;
  padding: clamp(70px, 9vw, 130px) 0 clamp(80px, 9vw, 130px);
  overflow: hidden;
  isolation: isolate;
  background: var(--bg-0);
}
.wa-reviews__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 10% 0%, rgba(37, 211, 102, 0.14), transparent 60%),
    radial-gradient(50% 40% at 90% 100%, rgba(34, 197, 95, 0.10), transparent 60%);
}

.wa-reviews__head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: clamp(24px, 4vw, 60px);
  align-items: end;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.wa-reviews__head .h2 { margin: 14px 0 14px; max-width: 640px; }
.wa-reviews__head .section-head__sub { max-width: 560px; }

.eyebrow--wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #25D366;
  background: rgba(37, 211, 102, 0.10);
  border-color: rgba(37, 211, 102, 0.35);
}

.wa-reviews__stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.wa-stat {
  padding: 14px 18px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  min-width: 110px;
  text-align: left;
}
.wa-stat strong {
  display: block;
  font: 700 22px/1 var(--font-display);
  letter-spacing: -0.01em;
  color: var(--ink-0);
  font-variant-numeric: tabular-nums;
}
.wa-stat small {
  display: block;
  margin-top: 4px;
  color: var(--ink-1);
  font-size: 12px;
  letter-spacing: 0.04em;
}

@media (max-width: 880px) {
  .wa-reviews__head { grid-template-columns: 1fr; align-items: start; }
  .wa-reviews__stats { gap: 10px; }
  .wa-stat { padding: 12px 14px; min-width: 100px; }
}

/* Marquee */
.wa-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  padding: 24px 0;
}
.wa-marquee__track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: wa-scroll 80s linear infinite;
}
.wa-marquee:hover .wa-marquee__track,
.wa-marquee:focus-within .wa-marquee__track {
  animation-play-state: paused;
}
@keyframes wa-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Phone mockup */
.wa-phone {
  position: relative;
  flex: 0 0 auto;
  width: clamp(220px, 22vw, 280px);
  aspect-ratio: 9 / 19;
  border-radius: 36px;
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 26px 60px -22px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.06) inset,
    0 6px 16px -6px rgba(34,197,95,0.18);
  padding: 8px;
  margin: 0;
  overflow: hidden;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  cursor: grab;
}
.wa-phone:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow:
    0 36px 80px -24px rgba(0,0,0,0.85),
    0 0 0 1px rgba(34,197,95,0.4) inset,
    0 10px 30px -8px rgba(34,197,95,0.35);
}
.wa-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  display: block;
  background: #ece5dd;
}
.wa-phone__notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 18px;
  border-radius: 12px;
  background: #000;
  z-index: 2;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
}
.wa-phone__notch::after {
  content: "";
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #1a1a1a;
  box-shadow: inset 0 0 0 1px rgba(34,197,95,0.4);
}

.wa-reviews__cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: clamp(28px, 3vw, 44px);
}

@media (max-width: 640px) {
  .wa-phone { width: 220px; border-radius: 30px; padding: 6px; }
  .wa-phone img { border-radius: 24px; }
  .wa-phone__notch { width: 60px; height: 14px; top: 10px; }
  .wa-marquee__track { gap: 16px; animation-duration: 60s; }
}

@media (prefers-reduced-motion: reduce) {
  .wa-marquee__track { animation: none; }
  .wa-marquee {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-mask-image: none; mask-image: none;
  }
  .wa-phone { scroll-snap-align: start; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-wrap {
  padding: clamp(70px, 9vw, 130px) 0;
  background: radial-gradient(60% 40% at 100% 0%, rgba(34,197,95,0.08), transparent 70%);
}
.faq-wrap__inner {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.faq-wrap__intro .h3 { margin-bottom: 14px; }
.faq-wrap__poster-wrap {
  position: relative;
  margin-top: 32px;
  height: clamp(300px, 34vw, 440px);
  max-width: 560px;
}
.faq-wrap__poster-wrap img {
  position: absolute;
  width: clamp(140px, 18vw, 220px);
  height: auto;
  border-radius: var(--r-md);
  border: 1px solid var(--line-2);
  box-shadow: var(--sh-lg);
  background: var(--bg-1);
  transition: transform var(--t-slow) var(--ease);
}
.faq-wrap__poster-wrap img:nth-child(1) { left: 0;   top: 8%;  transform: rotate(-7deg); z-index: 1; }
.faq-wrap__poster-wrap img:nth-child(2) { left: 32%; top: 0;   transform: rotate(2deg);  z-index: 3; }
.faq-wrap__poster-wrap img:nth-child(3) { left: 60%; top: 12%; transform: rotate(8deg);  z-index: 2; }
.faq-wrap__poster-wrap:hover img:nth-child(1) { transform: rotate(-9deg) translate(-6px, -4px); }
.faq-wrap__poster-wrap:hover img:nth-child(3) { transform: rotate(10deg) translate(6px, -4px); }

.faq { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.faq__item {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.faq__item[open] { border-color: var(--accent-glow); background: linear-gradient(180deg, var(--bg-2), var(--bg-1)); }
.faq__sum {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font: 600 15px/1.3 var(--font-display);
  color: var(--ink-0);
}
.faq__sum::-webkit-details-marker { display: none; }
.faq__icon {
  position: relative;
  width: 22px; height: 22px;
  flex: none;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  transition: transform var(--t-med) var(--ease);
}
.faq__icon::before { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.faq__icon::after  { top: 50%; left: 0; height: 2px; width: 100%; transform: translateY(-50%); }
.faq__item[open] .faq__icon::before { transform: translateX(-50%) rotate(90deg); }
.faq__body { padding: 0 22px 20px; color: var(--ink-1); font-size: 14.5px; line-height: 1.7; }

@media (max-width: 880px) {
  .faq-wrap__inner { grid-template-columns: 1fr; }
  .faq-wrap__intro img { max-width: 100%; }
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */

.final-cta {
  position: relative;
  isolation: isolate;
  padding: clamp(80px, 10vw, 140px) 0;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(80% 60% at 50% 30%, rgba(34,197,95,0.18), transparent 60%), var(--bg-0);
}
.final-cta__art {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.final-cta__img {
  position: absolute;
  border-radius: var(--r-md);
  border: 1px solid var(--line-2);
  box-shadow: var(--sh-lg);
  width: clamp(140px, 18vw, 220px);
  aspect-ratio: 2 / 3;
  height: auto;
  opacity: 0.5;
  filter: saturate(0.9) blur(0.5px);
  object-fit: cover;
}
.final-cta__img--a { left: -2vw;  top: 8%;    transform: rotate(-9deg); }
.final-cta__img--b { left: 12vw;  bottom: 6%; transform: rotate(6deg);  }
.final-cta__img--c { right: -2vw; top: 6%;    transform: rotate(8deg);  }
.final-cta__img--d { right: 12vw; bottom: 8%; transform: rotate(-5deg); }
.final-cta__inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.final-cta .display--sm { margin: 16px 0 18px; }
.final-cta .lede { margin-inline: auto; color: var(--ink-1); }
.final-cta__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

.final-cta__strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 26px;
  margin: 40px auto 0;
  max-width: 720px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.final-cta__strip li { display: inline-flex; }
.final-cta__strip img {
  height: 22px;
  width: auto;
  max-width: 96px;
  object-fit: contain;
  opacity: 0.7;
  filter: brightness(1.15);
}

@media (max-width: 880px) {
  .final-cta__img { width: 100px; opacity: 0.32; }
  .final-cta__img--b, .final-cta__img--d { display: none; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-foot {
  background: linear-gradient(180deg, var(--bg-0) 0%, #050608 100%);
  border-top: 1px solid var(--line);
  padding-top: 56px;
}
.site-foot__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: 48px;
}
.site-foot__col h4 {
  font: 600 13px/1 var(--font-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-1);
  margin-bottom: 16px;
}
.site-foot__col ul { display: flex; flex-direction: column; gap: 10px; }
.site-foot__col a {
  color: var(--ink-1);
  font-size: 14px;
  transition: color var(--t-fast) var(--ease);
}
.site-foot__col a:hover { color: var(--accent); }
.site-foot__col--brand { max-width: 320px; }
.site-foot__col--brand .brand { margin-bottom: 14px; }

.site-foot__col ul.pay {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  flex-direction: initial;
  gap: 6px;
  max-width: 260px;
}
.pay__badge {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  height: 36px;
  padding: 0;
  background: var(--bg-1);
  border: 1px solid var(--line-2);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.pay__badge:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px -4px rgba(34,197,95,.35);
}
.pay__badge svg {
  width: 100%;
  height: 100%;
  display: block;
}
.pay__note {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 6px;
}
.pay__note::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}
@media (max-width: 480px) {
  .site-foot__col ul.pay { grid-template-columns: repeat(4, 1fr); max-width: 100%; }
}

.site-foot__bottom {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  background: rgba(255,255,255,0.02);
}
.site-foot__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--ink-2);
  font-size: 12px;
  flex-wrap: wrap;
}
.site-foot__bottom-inner a { color: var(--ink-1); }
.site-foot__bottom-inner a:hover { color: var(--accent); }

@media (max-width: 760px) {
  .site-foot__inner { grid-template-columns: 1fr 1fr; }
  .site-foot__col--brand { grid-column: span 2; }
}

/* ==========================================================================
   Floating CTA + WhatsApp
   ========================================================================== */

.float-buy {
  position: fixed;
  right: 18px;
  bottom: 90px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 14px;
  background: linear-gradient(180deg, #2dd47a, var(--accent));
  color: #04200f;
  border-radius: var(--r-pill);
  box-shadow: 0 18px 36px -12px var(--accent-glow), 0 1px 0 rgba(255,255,255,0.45) inset;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.float-buy.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.float-buy strong { display: block; font: 700 14px/1.1 var(--font-display); }
.float-buy small  { display: block; font: 600 11px/1.1 var(--font-body); opacity: 0.75; margin-top: 2px; }
.float-buy__fire {
  font-size: 22px;
  filter: drop-shadow(0 0 4px rgba(229,9,20,0.5));
}
.float-buy:hover { transform: translateY(-2px); }

.float-wa {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 70;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px rgba(37,211,102,0.4);
  animation: bounceIn 600ms var(--ease) 800ms both;
  transition: transform var(--t-fast) var(--ease);
}
.float-wa:hover { transform: scale(1.08); }
@keyframes bounceIn {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}

@media (max-width: 640px) {
  /* On mobile, the contact rail already shows a WhatsApp icon on the right —
     hide the duplicate floating one and move the buy pill above the rail. */
  .float-wa { display: none; }
  .float-buy {
    left: auto;
    right: 10px;
    bottom: 312px;
    padding: 10px 14px 10px 12px;
  }
  .float-buy small { display: none; }
}

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .chip__dot { animation: none; box-shadow: 0 0 0 4px rgba(34,197,95,0.18); }
}

/* ==========================================================================
   STICKY CONTACT RAIL (left edge)
   ========================================================================== */

.rail {
  position: fixed;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rail__btn {
  position: relative;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 8px 18px -8px rgba(0,0,0,.55), 0 2px 6px -2px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.18);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  text-decoration: none;
}
.rail__btn::after {
  content: ""; position: absolute; inset: -3px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06); pointer-events: none;
}
.rail__btn:hover { transform: translateX(2px) scale(1.04); }
.rail__btn:active { transform: translateX(1px) scale(0.98); }
.rail__icon { font-size: 26px; line-height: 1; display: block; color: #fff; }
.rail__btn--whatsapp .rail__icon { font-size: 32px; }
.rail__btn--telegram .rail__icon { font-size: 30px; transform: translate(-1px, 0); }
.rail__btn--whatsapp { background: #25d366; }
.rail__btn--whatsapp:hover { background: #1ebe5b; }
.rail__btn--telegram { background: #229ed9; }
.rail__btn--telegram:hover { background: #1b8bbf; }
.rail__btn--support { background: #2563eb; }
.rail__btn--support:hover { background: #1d4ed8; }
.rail__tip {
  position: absolute; left: calc(100% + 10px); top: 50%;
  transform: translateY(-50%) translateX(-6px);
  background: var(--bg-2); color: var(--ink-0);
  font: 600 12.5px/1 var(--font-body); letter-spacing: .01em;
  padding: 6px 10px; border-radius: var(--r-sm); border: 1px solid var(--line-2);
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
  box-shadow: 0 8px 22px -10px rgba(0,0,0,.6);
}
.rail__tip::before {
  content: ""; position: absolute; left: -4px; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px; height: 8px; background: var(--bg-2);
  border-left: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2);
}
.rail__btn:hover .rail__tip,
.rail__btn:focus-visible .rail__tip,
.rail__top:hover .rail__tip,
.rail__top:focus-visible .rail__tip { opacity: 1; transform: translateY(-50%) translateX(0); }
.rail__top {
  position: relative; margin-top: 22px;
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--bg-2); border: 1px solid var(--line-2);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink-0);
  box-shadow: 0 8px 18px -8px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.06);
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease), background var(--t-fast) var(--ease);
}
.rail__top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.rail__top:hover { background: var(--bg-3); transform: translateY(-1px); }
.rail__top .rail__icon { font-size: 20px; }
@media (max-width: 640px) {
  .rail {
    left: auto;
    right: 10px;
    top: auto;
    bottom: 90px;
    transform: none;
    gap: 8px;
  }
  .rail__btn { width: 44px; height: 44px; }
  .rail__btn:hover { transform: translateX(-2px) scale(1.04); }
  .rail__btn:active { transform: translateX(-1px) scale(0.98); }
  .rail__icon { font-size: 22px; }
  .rail__btn--whatsapp .rail__icon { font-size: 27px; }
  .rail__btn--telegram .rail__icon { font-size: 25px; }
  .rail__tip { display: none; }
  .rail__top { width: 42px; height: 42px; border-radius: 12px; margin-top: 16px; }
  .rail__top .rail__icon { font-size: 18px; }
}

/* ==========================================================================
   DEAL DISCOUNT BANNER (sticky bottom)
   ========================================================================== */

.bnr {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 56px 14px 22px;
  border-radius: 18px;
  background:
    radial-gradient(70% 140% at 50% 0%, rgba(34,197,95,.22), transparent 60%),
    linear-gradient(180deg, #0e2d1b 0%, #0a2114 40%, #061a0e 100%);
  border: 1px solid rgba(34,197,95,.28);
  box-shadow:
    0 24px 70px -20px rgba(0,0,0,.75),
    0 1px 0 rgba(255,255,255,.05) inset,
    0 0 0 1px rgba(34,197,95,.12) inset;
  color: #fff;
  font-family: var(--font-body);
  overflow: hidden;
  isolation: isolate;
  pointer-events: none;
  opacity: 0;
  transform: translateY(120%);
  transition: transform .55s cubic-bezier(.22,1,.36,1), opacity .35s ease;
}
.bnr[data-state="visible"] { opacity: 1; transform: translateY(0); pointer-events: auto; }
.bnr[data-state="dismissed"] { opacity: 0; transform: translateY(120%); pointer-events: none; }
.bnr::before {
  content: "";
  position: absolute;
  top: -1px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(134,239,172,.85), rgba(255,255,255,.9), rgba(134,239,172,.85), transparent);
  filter: blur(.4px);
  z-index: 2;
}
.bnr__glow {
  position: absolute;
  top: -60%; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 200%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(34,197,95,.35), transparent 60%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
  animation: bnr-glow 6s ease-in-out infinite;
}
@keyframes bnr-glow {
  0%,100% { opacity: .8; transform: translateX(-50%) scale(1); }
  50%     { opacity: 1;  transform: translateX(-50%) scale(1.05); }
}
.bnr__shine {
  position: absolute; inset: 0;
  z-index: 1; pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.06) 48%, rgba(255,255,255,.12) 50%, rgba(255,255,255,.06) 52%, transparent 70%);
  transform: translateX(-120%);
  animation: bnr-shine 7s ease-in-out 1.5s infinite;
}
@keyframes bnr-shine {
  0%  { transform: translateX(-120%); }
  60% { transform: translateX(120%); }
  100%{ transform: translateX(120%); }
}
.bnr__inner {
  position: relative; z-index: 3;
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap;
}
.bnr__time {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 10px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10);
  font-size: 12px; color: #a9b1d6; font-weight: 500;
  letter-spacing: .01em; white-space: nowrap;
}
.bnr__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #ff8493;
  animation: bnr-pulse 1.6s ease-out infinite;
}
@keyframes bnr-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,132,147,.55); }
  100% { box-shadow: 0 0 0 8px rgba(255,132,147,0); }
}
.bnr__time-lbl { color: #a9b1d6; }
.bnr__time-val { font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 12px; color: #fff; font-variant-numeric: tabular-nums; }
.bnr__text {
  margin: 0; font-size: 16px; font-weight: 600; color: #fff;
  letter-spacing: -.005em; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 7px;
}
.bnr__pct {
  position: relative; font-weight: 800; color: #86efac;
  font-size: 17px; letter-spacing: -.01em; padding: 0 2px;
}
.bnr__pct::after {
  content: "";
  position: absolute; left: 2px; right: 2px; bottom: -3px;
  height: 4px;
  background-image: radial-gradient(circle, #86efac 1px, transparent 1.6px);
  background-size: 5px 4px; background-repeat: repeat-x; background-position: 0 50%;
  opacity: .85;
  animation: bnr-underline 3.5s linear infinite;
}
@keyframes bnr-underline { to { background-position: 10px 50%; } }
.bnr__cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; background: #22c55f; color: #062a13;
  border-radius: var(--r-pill); font-weight: 700; font-size: 13.5px;
  box-shadow: 0 6px 18px -4px rgba(34,197,95,.55), 0 0 0 1px rgba(255,255,255,.25) inset;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-med) var(--ease);
  white-space: nowrap;
}
.bnr__cta svg { transition: transform .2s ease; }
.bnr__cta:hover { transform: translateY(-1px); background: #16a34a; box-shadow: 0 12px 26px -6px rgba(34,197,95,.75), 0 0 0 1px rgba(255,255,255,.35) inset; }
.bnr__cta:hover svg { transform: translateX(3px); }
.bnr__x {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  z-index: 3; display: grid; place-items: center;
  width: 30px; height: 30px; border-radius: 50%;
  color: rgba(255,255,255,.55); background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.bnr__x:hover { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.18); transform: translateY(-50%) scale(1.05); }
@media (max-width: 760px) {
  .bnr { left: 10px; right: 10px; bottom: 10px; padding: 12px 44px 12px 14px; gap: 10px; border-radius: 14px; }
  .bnr__inner { gap: 10px; flex-direction: column; align-items: center; }
  .bnr__text {
    font-size: 13.5px;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    flex-wrap: wrap;
    justify-content: center;
  }
  .bnr__pct { font-size: 14.5px; }
  .bnr__time { font-size: 11px; padding: 4px 9px; }
  .bnr__time-val { font-size: 11px; }
  .bnr__cta { padding: 8px 14px; font-size: 13px; }
  .bnr__x { width: 26px; height: 26px; right: 10px; }
}
@media (max-width: 480px) {
  .bnr { padding: 12px 40px 12px 12px; }
  .bnr__text { font-size: 12.5px; gap: 6px; }
  .bnr__pct { font-size: 13.5px; }
}

/* When the deal banner is visible, lift the right-side floats above it
   so they don't overlap. ~118px = bnr height + bottom margin + buffer. */
body:has(.bnr[data-state="visible"]) .rail   { bottom: 130px; }
body:has(.bnr[data-state="visible"]) .float-buy { bottom: 350px; }
@media (max-width: 640px) {
  body:has(.bnr[data-state="visible"]) .rail   { bottom: 150px; }
  body:has(.bnr[data-state="visible"]) .float-buy { bottom: 370px; }
}

/* When the cookie consent banner is visible, hide the right-side floats so
   they don't overlap with it (cookie banner takes most of the bottom). */
body:has(.cb.is-visible) .rail,
body:has(.cb.is-visible) .float-buy,
body:has(.cb.is-visible) .float-wa { display: none; }

/* ==========================================================================
   COOKIE POLICY BANNER
   ========================================================================== */

#cb-mount, .cb-trigger {
  --cb-peach:     #22c55f;
  --cb-grad:      linear-gradient(135deg, #4ade80 0%, #22c55f 55%, #16a34a 110%);
  --cb-grad-soft: linear-gradient(135deg, rgba(74,222,128,.18) 0%, rgba(34,197,95,.14) 100%);
  --cb-shadow:    0 22px 60px -20px rgba(0,0,0,.85), 0 8px 22px -10px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.06);
}

.cb {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 200;
  width: min(380px, calc(100vw - 32px));
  background: var(--bg-1);
  background-image:
    radial-gradient(120% 80% at 0% 0%, rgba(74,222,128,.08), transparent 60%),
    radial-gradient(120% 80% at 100% 100%, rgba(34,197,95,.05), transparent 60%);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--cb-shadow);
  font-family: var(--font-body);
  color: var(--ink-0);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
}
.cb.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cb::before {
  content: "";
  position: absolute;
  inset: 0 14px auto 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74,222,128,.55), rgba(34,197,95,.35), transparent);
  pointer-events: none;
}
.cb__head {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  padding: 18px 18px 0;
}
.cb__icon-wrap {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 16px;
  background: radial-gradient(60% 60% at 30% 30%, rgba(255,255,255,.07), transparent 70%), var(--bg-2);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.cb__icon { width: 40px; height: 40px; display: block; }
.cb__heading { min-width: 0; padding-top: 2px; }
.cb__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.cb__eyebrow {
  display: inline-block;
  margin-bottom: 5px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--cb-grad-soft);
  color: var(--cb-peach);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.cb__close {
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  color: var(--ink-1);
  border: 1px solid transparent;
  transition: color .15s ease, background .15s ease, border-color .15s ease;
  align-self: start;
  margin-top: -2px;
}
.cb__close:hover { color: var(--ink-0); background: var(--bg-2); border-color: var(--line); }
.cb__close .bi { font-size: 14px; line-height: 1; }
.cb__body {
  margin: 10px 18px 0;
  color: var(--ink-1);
  font-size: 13px;
  line-height: 1.5;
}
.cb__link {
  display: inline-flex; align-items: center; gap: 4px;
  margin: 8px 18px 0;
  font-size: 12.5px;
  font-weight: 600;
  background: var(--cb-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity .15s ease;
}
.cb__link:hover { opacity: .8; }
.cb__link-arrow { font-size: 13px; -webkit-text-fill-color: var(--cb-peach); color: var(--cb-peach); }
.cb__prefs {
  margin: 14px 18px 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  transition: max-height .32s ease, opacity .22s ease .04s, margin-top .32s ease, padding-top .32s ease;
}
.cb.is-expanded .cb__prefs { max-height: 360px; opacity: 1; padding-top: 4px; }
.cb__pref {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: start;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.cb__pref:last-child { border-bottom: 0; }
.cb__pref-icon {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--cb-peach);
  margin-top: 1px;
}
.cb__pref-icon svg { width: 16px; height: 16px; display: block; }
.cb__pref-meta { min-width: 0; }
.cb__pref-name { display: block; font-size: 13px; font-weight: 600; color: var(--ink-0); line-height: 1.25; }
.cb__pref-desc { display: block; margin-top: 2px; font-size: 11.5px; color: var(--ink-2); line-height: 1.4; }
.cb__pref-control { align-self: center; }
.cb__pill {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--cb-grad-soft);
  border: 1px solid rgba(134,239,172,.35);
  color: var(--cb-peach);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.cb__switch { position: relative; display: inline-block; width: 34px; height: 20px; }
.cb__switch input {
  position: absolute; width: 100%; height: 100%;
  opacity: 0; margin: 0; cursor: pointer; z-index: 2;
}
.cb__track {
  position: absolute; inset: 0; border-radius: 999px;
  background: var(--bg-3); border: 1px solid var(--line-2);
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.cb__track::after {
  content: "";
  position: absolute; top: 2px; left: 2px; width: 14px; height: 14px;
  border-radius: 50%; background: #d6d8de;
  box-shadow: 0 1px 2px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.35);
  transition: transform .18s ease, background .18s ease;
}
.cb__switch input:checked + .cb__track {
  background: var(--cb-grad);
  border-color: rgba(34,197,95,.55);
  box-shadow: 0 0 0 1px rgba(34,197,95,.25), 0 4px 10px -4px rgba(34,197,95,.45);
}
.cb__switch input:checked + .cb__track::after { transform: translateX(14px); background: #fff; }
.cb__switch input:focus-visible + .cb__track { outline: 2px solid var(--cb-peach); outline-offset: 2px; }
.cb__actions {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 8px;
  padding: 14px 18px 16px;
  margin-top: 14px;
  border-top: 1px solid var(--line);
}
.cb__btn {
  height: 38px; padding: 0 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  white-space: nowrap;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease, color .15s ease;
}
.cb__btn--text { color: var(--cb-peach); padding: 0 6px; font-weight: 600; }
.cb__btn--text:hover { color: var(--ink-0); }
.cb__btn--ghost { background: var(--bg-2); border: 1px solid var(--line); color: var(--ink-0); }
.cb__btn--ghost:hover { background: var(--bg-3); border-color: var(--line-2); }
.cb__btn--primary {
  background: var(--cb-grad); color: #052e16; font-weight: 700;
  box-shadow: 0 8px 18px -10px rgba(34,197,95,.55), inset 0 1px 0 rgba(255,255,255,.35);
}
.cb__btn--primary:hover { transform: translateY(-1px); }
.cb__btn--primary:active { transform: translateY(0); }
.cb__btn--save { display: none; }
.cb.is-expanded .cb__btn--customize { display: none; }
.cb.is-expanded .cb__btn--save { display: inline-flex; }
.cb.is-expanded .cb__actions { grid-template-columns: 1fr 1fr 1.2fr; }

/* Cookie settings trigger — inline in site footer */
.cb-trigger {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px 5px 8px; border-radius: 999px;
  background: var(--bg-2); border: 1px solid var(--line);
  color: var(--ink-0); font-family: var(--font-body);
  font-size: 12px; font-weight: 600; cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
  white-space: nowrap; flex-shrink: 0;
}
.cb-trigger:hover { background: var(--bg-3); border-color: var(--line-2); }
.cb-trigger__dot {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #86efac 0%, #4ade80 55%, #22c55f 110%);
  display: inline-flex; align-items: center; justify-content: center;
  color: #052e16; font-weight: 900; font-size: 11px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
}

@media (max-width: 640px) {
  /* Hide the cookie consent banner entirely on mobile — it's never shown there. */
  .cb, .cb-trigger { display: none !important; }
  .cb { left: 8px; right: 8px; bottom: 8px; width: auto; border-radius: 16px; }
  .cb__head { grid-template-columns: 44px 1fr auto; gap: 12px; padding: 14px 14px 0; }
  .cb__icon-wrap { width: 44px; height: 44px; border-radius: 12px; }
  .cb__icon { width: 32px; height: 32px; }
  .cb__title { font-size: 15.5px; }
  .cb__body { margin: 8px 14px 0; font-size: 12.5px; }
  .cb__link { margin: 8px 14px 0; }
  .cb__prefs { margin: 12px 14px 0; }
  .cb.is-expanded .cb__prefs { max-height: 420px; }
  .cb__actions { padding: 12px 14px 14px; gap: 6px; }
  .cb__btn { height: 40px; font-size: 13px; }
  .cb__switch { width: 38px; height: 22px; }
  .cb__track::after { width: 16px; height: 16px; }
  .cb__switch input:checked + .cb__track::after { transform: translateX(16px); }
}
@media (max-width: 380px) {
  .cb__actions, .cb.is-expanded .cb__actions { grid-template-columns: 1fr; }
  .cb__btn--text { justify-content: flex-start; padding: 0 10px; height: 34px; }
}
@media (prefers-reduced-motion: reduce) {
  .cb, .cb__prefs, .cb__btn,
  .cb__switch .cb__track, .cb__switch .cb__track::after,
  .cb-trigger { transition: none !important; }
}

/* ==========================================================================
   OUR SERVICES SECTION
   ========================================================================== */

.services {
  padding: 80px 0 70px;
}

.services__header {
  text-align: center;
  margin-bottom: 44px;
}

.services__eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0 0 10px;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
  text-transform: uppercase;
}

.services__eyebrow::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 36px; height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: translateX(-50%);
}

.services__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4.4vw, 44px);
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin: 10px 0 0;
  color: var(--ink-0);
}

.services__title-accent {
  color: var(--accent);
  margin-left: 0.35em;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  align-items: stretch;
  max-width: 880px;
  margin: 0 auto;
}

.service {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 28px 30px;
  text-align: center;
  box-shadow: var(--sh-md);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 197, 95, 0.35);
  box-shadow: 0 18px 36px -16px rgba(34, 197, 95, 0.25), 0 2px 8px rgba(0,0,0,.25);
}

.service__icon {
  width: 112px; height: 112px;
  display: inline-flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at center, rgba(34,197,95,.12), transparent 72%);
  margin-bottom: 18px;
}

.service__icon svg { width: 100%; height: 100%; display: block; overflow: visible; }

.service__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink-0);
  letter-spacing: -0.005em;
  margin: 4px 0 12px;
}

.service__body {
  color: var(--ink-1);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
  max-width: 32ch;
}

@media (max-width: 720px) {
  .services__grid { grid-template-columns: 1fr; max-width: 460px; }
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */

.howit {
  --howit-accent:      #22c55f;
  --howit-accent-hi:   #4ade80;
  --howit-accent-deep: #15803d;
  --howit-accent-soft: rgba(34, 197, 95, 0.14);
  --howit-accent-glow: rgba(34, 197, 95, 0.28);
  --howit-accent-line: rgba(34, 197, 95, 0.38);
  --howit-success:     #86efac;
  --howit-ease:        cubic-bezier(.2, .7, .2, 1);
  --howit-shadow:      0 18px 40px -22px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.05);
  --howit-shadow-hover:0 30px 60px -22px rgba(34,197,95,.48), 0 4px 12px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.08);

  position: relative;
  padding: 80px 0 88px;
}

.howit .container { position: relative; }

.howit::before {
  content: "";
  position: absolute;
  inset: 8% 8% auto 8%;
  height: 280px;
  background: radial-gradient(closest-side, rgba(47,128,237,.12), transparent 75%);
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}

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

.howit__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  padding: 8px 18px 8px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #cfe1ff;
  background: var(--howit-accent-soft);
  border: 1px solid var(--howit-accent-line);
  border-radius: var(--r-pill);
}

.howit__eyebrow::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--howit-accent-hi);
  box-shadow: 0 0 14px var(--howit-accent-hi);
  animation: howit-pulse-dot 1.8s ease-in-out infinite;
}

.howit__title-main {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink-0);
}

.howit__title-accent {
  background: linear-gradient(120deg, var(--howit-accent-hi) 0%, var(--howit-accent) 50%, #86efac 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.howit__subtitle {
  margin: 0 auto;
  max-width: 580px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-1);
}

.howit__stage { position: relative; z-index: 1; }

.howit__path-wrap {
  position: absolute;
  left: 0; right: 0; top: 196px;
  height: 90px;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity .9s ease;
}
.howit__path-wrap.is-visible { opacity: 1; }
.howit__path { width: 100%; height: 100%; display: block; overflow: visible; }

.howit__stations circle.station {
  fill: var(--howit-accent);
  stroke: rgba(255,255,255,.95);
  stroke-width: 1.5;
}
.howit__stations circle.station-ring {
  fill: none;
  stroke: var(--howit-accent-hi);
  stroke-width: 1.2;
  opacity: 0.55;
}

.howit__track {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative; z-index: 1;
}

.howit__step {
  --i: 0;
  position: relative;
  padding: 84px 34px 32px;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(24,28,38,.96) 0%, rgba(14,17,24,.94) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--howit-shadow);
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transform: translateY(32px);
  transition: transform .4s var(--howit-ease), border-color .3s ease, box-shadow .4s ease, opacity .6s ease;
  will-change: transform;
}

.howit__step.is-visible {
  animation: howit-rise .65s var(--howit-ease) forwards;
  animation-delay: calc(var(--i) * 150ms);
}

.howit__step:hover, .howit__step:focus-within {
  transform: translateY(-8px);
  border-color: var(--howit-accent-line);
  box-shadow: var(--howit-shadow-hover);
}

.howit__bignum {
  position: absolute; right: -24px; top: -70px;
  font-family: var(--font-display);
  font-weight: 800; font-size: 340px; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(47,128,237,.22);
  letter-spacing: -0.05em;
  transform: rotate(-8deg);
  transition: -webkit-text-stroke-color .4s ease, transform .4s ease;
  user-select: none; pointer-events: none; z-index: 0;
}
.howit__step:hover .howit__bignum, .howit__step:focus-within .howit__bignum {
  -webkit-text-stroke-color: rgba(47,128,237,.48);
  transform: rotate(-8deg) scale(1.06);
}

.howit__aura {
  position: absolute; inset: -8% 28% auto -12%; height: 280px;
  background: radial-gradient(closest-side, var(--howit-accent-glow), transparent 70%);
  filter: blur(28px); opacity: 0.6; z-index: 0;
  transition: opacity .4s ease; pointer-events: none;
}
.howit__step:hover .howit__aura, .howit__step:focus-within .howit__aura { opacity: 1; }

.howit__badge {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 11px;
  background: var(--howit-accent-soft);
  border: 1px solid var(--howit-accent-line);
  border-radius: var(--r-pill);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.18em;
  color: #cfe1ff;
}

.howit__badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--howit-accent-hi);
  box-shadow: 0 0 0 0 rgba(90,163,255,.5);
}
.howit__step[data-active="true"] .howit__badge-dot {
  animation: howit-pulse-dot 1.6s ease-in-out infinite;
}

.howit__medal {
  position: relative; z-index: 2;
  width: 200px; height: 200px; margin: 24px 0 8px;
}
.howit__medal svg { display: block; width: 100%; height: 100%; }
.howit__medal-ring {
  transform-box: fill-box; transform-origin: 50% 50%;
  animation: howit-spin 16s linear infinite;
}
.howit__step:hover .howit__medal-ring, .howit__step:focus-within .howit__medal-ring { animation-duration: 7s; }
.howit__medal-glow { opacity: 0.6; transition: opacity .4s ease; }
.howit__step:hover .howit__medal-glow, .howit__step:focus-within .howit__medal-glow { opacity: 1; }

.howit__title {
  position: relative; z-index: 2;
  margin: 24px 0 12px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 28px; line-height: 1.2; letter-spacing: -0.015em;
  color: var(--ink-0);
}

.howit__body {
  position: relative; z-index: 2;
  margin: 0 0 26px;
  font-size: 16.5px; line-height: 1.6; color: var(--ink-1); max-width: 34ch;
}

.howit__meta {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 11px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.howit__meta-icon { display: inline-flex; width: 18px; height: 18px; color: var(--howit-accent-hi); }
.howit__meta-icon svg { width: 100%; height: 100%; display: block; }
.howit__meta-label {
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  font-weight: 600; letter-spacing: 0.04em; color: var(--ink-0);
}
.howit__meta-chevron {
  margin-left: auto; display: inline-flex; width: 18px; height: 18px;
  color: var(--howit-accent-hi); transition: transform .3s ease; opacity: 0.75;
}
.howit__meta-chevron svg { width: 100%; height: 100%; display: block; }
.howit__step:hover .howit__meta-chevron,
.howit__step:focus-within .howit__meta-chevron { transform: translateX(5px); opacity: 1; }

.howit__cta {
  margin-top: 72px;
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
  position: relative; z-index: 1;
}

.howit__cta-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px 10px 14px;
  background: rgba(93,255,174,.09);
  border: 1px solid rgba(93,255,174,.3);
  border-radius: var(--r-pill);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.18em; color: #b8ffd9;
}
.howit__cta-tag::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--howit-success); box-shadow: 0 0 14px var(--howit-success);
}

.howit__cta-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--howit-accent) 0%, var(--howit-accent-hi) 100%);
  border-radius: var(--r-pill); color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
  text-decoration: none; cursor: pointer;
  box-shadow: 0 14px 30px -10px rgba(47,128,237,.75), inset 0 1px 0 rgba(255,255,255,.28);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.howit__cta-btn:hover {
  transform: translateY(-2px); filter: brightness(1.06);
  box-shadow: 0 18px 38px -10px rgba(47,128,237,.9), inset 0 1px 0 rgba(255,255,255,.38);
}
.howit__cta-btn:active { transform: translateY(0); }
.howit__cta-btn svg { width: 18px; height: 18px; }

@keyframes howit-rise {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes howit-spin { to { transform: rotate(360deg); } }
@keyframes howit-pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(90,163,255,.55); }
  50%      { box-shadow: 0 0 0 9px rgba(90,163,255,0); }
}
@keyframes howit-signal {
  0%, 100% { opacity: 0.25; }
  50%      { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .howit__step { opacity: 1 !important; transform: none !important; animation: none !important; }
  .howit__medal-ring, .howit__badge-dot, .howit__eyebrow::before { animation: none !important; }
  .howit__comet, .howit__comet-trail { display: none; }
}

@media (max-width: 1080px) {
  .howit { padding: 64px 0 72px; }
  .howit__track { gap: 20px; }
  .howit__step { padding: 72px 28px 30px; }
  .howit__medal { width: 170px; height: 170px; }
  .howit__title { font-size: 25px; }
  .howit__body { font-size: 15.5px; }
  .howit__bignum { font-size: 280px; top: -54px; right: -16px; }
  .howit__path-wrap { top: 165px; }
}

@media (max-width: 820px) {
  .howit { padding: 56px 0 64px; }
  .howit__header { margin-bottom: 56px; }
  .howit__track {
    grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; gap: 22px; position: relative;
  }
  .howit__track::before {
    content: ""; position: absolute; left: 50%; top: 100px; bottom: 100px;
    width: 2px; margin-left: -1px;
    background: repeating-linear-gradient(180deg, var(--howit-accent) 0 7px, transparent 7px 16px);
    opacity: 0.42; pointer-events: none;
  }
  .howit__path-wrap { display: none; }
  .howit__step { padding: 68px 28px 30px; }
  .howit__medal { width: 188px; height: 188px; }
  .howit__bignum { font-size: 240px; top: -46px; right: -12px; }
  .howit__title { font-size: 26px; }
  .howit__body { font-size: 16px; }
  .howit__cta { margin-top: 48px; }
}

@media (max-width: 460px) {
  .howit__step { padding: 60px 22px 26px; }
  .howit__medal { width: 158px; height: 158px; }
  .howit__title { font-size: 23px; }
  .howit__body { font-size: 15.5px; }
  .howit__bignum { font-size: 200px; top: -36px; }
  .howit__cta-btn { width: 100%; justify-content: center; }
  .howit__subtitle { font-size: 16px; }
}

/* ==========================================================================
   DEVICE COMPATIBILITY SECTION
   ========================================================================== */

.devices {
  --dev-accent:      #5ed8ff;
  --dev-accent-soft: rgba(94, 216, 255, 0.12);
  --dev-card-line:   rgba(255, 255, 255, 0.08);
  --dev-card-strong: rgba(94, 216, 255, 0.42);
  --dev-shadow:      0 14px 30px -18px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.04);
  --dev-shadow-hover:0 26px 50px -22px rgba(94,216,255,.35), 0 6px 14px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.08);
  --dev-ease:        cubic-bezier(.2,.7,.2,1);

  padding: 80px 0 88px;
}

.devices__header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 38px;
}

.devices__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--dev-accent);
  margin: 0 0 14px;
  padding: 7px 14px;
  background: var(--dev-accent-soft);
  border: 1px solid rgba(94, 216, 255, 0.25);
  border-radius: var(--r-pill);
  text-transform: uppercase;
}

.devices__eyebrow::before,
.devices__eyebrow::after {
  content: "";
  width: 14px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--dev-accent));
  display: inline-block;
}
.devices__eyebrow::after { background: linear-gradient(90deg, var(--dev-accent), transparent); }

.devices__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4.6vw, 50px);
  letter-spacing: -0.012em;
  line-height: 1.08;
  margin: 0 0 14px;
  color: var(--ink-0);
}
.devices__title-accent {
  background: linear-gradient(105deg, var(--dev-accent) 0%, #b6ecff 55%, var(--dev-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.devices__lede {
  margin: 0 auto;
  color: var(--ink-1);
  font-size: 16px;
  line-height: 1.6;
  max-width: 620px;
}

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

.device {
  position: relative;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 22px 18px 18px;
  background: linear-gradient(180deg, rgba(94,216,255,.04), rgba(94,216,255,0) 55%), var(--bg-1);
  border: 1px solid var(--dev-card-line);
  border-radius: var(--r-xl);
  box-shadow: var(--dev-shadow);
  transition: transform .25s var(--dev-ease), border-color .25s var(--dev-ease), box-shadow .25s var(--dev-ease), background .25s var(--dev-ease);
  overflow: hidden;
}
.device::before {
  content: ""; position: absolute; top: 0; left: 0; width: 38px; height: 38px;
  border-top: 1px solid rgba(94,216,255,.35); border-left: 1px solid rgba(94,216,255,.35);
  border-top-left-radius: var(--r-xl); opacity: 0; transition: opacity .25s var(--dev-ease);
}
.device::after {
  content: ""; position: absolute; bottom: 0; right: 0; width: 38px; height: 38px;
  border-bottom: 1px solid rgba(94,216,255,.35); border-right: 1px solid rgba(94,216,255,.35);
  border-bottom-right-radius: var(--r-xl); opacity: 0; transition: opacity .25s var(--dev-ease);
}
.device:hover {
  transform: translateY(-4px);
  border-color: var(--dev-card-strong);
  box-shadow: var(--dev-shadow-hover);
  background: linear-gradient(180deg, rgba(94,216,255,.08), rgba(94,216,255,0) 55%), var(--bg-2);
}
.device:hover::before, .device:hover::after { opacity: 1; }

.device__tag {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 9.5px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 8px; border-radius: var(--r-pill); z-index: 2;
}
.device__tag--gold { color: #052e16; background: linear-gradient(135deg, #86efac, #22c55f); box-shadow: 0 4px 10px -4px rgba(34,197,95,.7); }
.device__tag--blue { color: #052e16; background: linear-gradient(135deg, #bbf7d0, #4ade80); box-shadow: 0 4px 10px -4px rgba(74,222,128,.55); }

.device__art {
  position: relative; width: 100%; height: 138px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.device__art-glow {
  position: absolute; inset: 8px 16px 8px 16px;
  background: radial-gradient(ellipse at center, rgba(94,216,255,.22) 0%, transparent 65%);
  filter: blur(6px); z-index: 0; opacity: 0.85;
  transition: opacity .3s var(--dev-ease), transform .3s var(--dev-ease);
}
.device:hover .device__art-glow { opacity: 1; transform: scale(1.06); }

.device__icon {
  position: relative; z-index: 1;
  width: 138px; height: 138px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .35s var(--dev-ease);
}
.device:hover .device__icon { transform: translateY(-2px) scale(1.04); }
.device__icon svg { width: 100%; height: 100%; display: block; overflow: visible; }

.device__name {
  font-family: var(--font-display); font-weight: 700; font-size: 19px;
  color: var(--ink-0); letter-spacing: -0.005em; margin: 4px 0 8px;
}

.device__brands {
  margin: 0 0 14px; display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 4px 6px; min-height: 22px;
}
.device__brand { font-weight: 500; font-size: 13px; color: var(--ink-0); }
.device__brand-sep { color: var(--ink-2); font-weight: 400; font-size: 13px; }

.device__foot {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  background: rgba(94,216,255,.06);
  border: 1px solid rgba(94,216,255,.14);
  border-radius: var(--r-pill);
  transition: background .25s var(--dev-ease), border-color .25s var(--dev-ease);
}
.device:hover .device__foot { background: rgba(94,216,255,.12); border-color: rgba(94,216,255,.3); }

.device__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #5dffae;
  box-shadow: 0 0 0 3px rgba(93,255,174,.18), 0 0 8px rgba(93,255,174,.7);
  animation: dev-pulse 2.4s ease-in-out infinite;
}
@keyframes dev-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(93,255,174,.18), 0 0 8px rgba(93,255,174,.7); }
  50%      { box-shadow: 0 0 0 5px rgba(93,255,174,.05), 0 0 14px rgba(93,255,174,.9); }
}

.device__format {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; font-weight: 500;
  color: var(--ink-0); letter-spacing: 0.01em; white-space: nowrap;
}

.devices__strip {
  margin: 28px auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; padding: 18px 24px;
  background: linear-gradient(180deg, rgba(94,216,255,.04), rgba(94,216,255,0) 80%), var(--bg-1);
  border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
}
.strip__item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  position: relative; padding: 4px 12px;
}
.strip__item + .strip__item::before {
  content: ""; position: absolute; left: 0; top: 12%; bottom: 12%;
  width: 1px; background: linear-gradient(180deg, transparent, rgba(255,255,255,.12), transparent);
}
.strip__value {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(26px, 3vw, 34px);
  line-height: 1;
  background: linear-gradient(180deg, #ffffff 0%, #9ec9ff 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.strip__label { font-weight: 500; font-size: 12.5px; color: var(--ink-1); letter-spacing: 0.02em; }

@media (max-width: 1080px) { .devices__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px) {
  .devices__grid { grid-template-columns: repeat(2, 1fr); }
  .devices__strip { grid-template-columns: repeat(2, 1fr); gap: 18px 0; }
  .strip__item:nth-child(3)::before { display: none; }
}
@media (max-width: 480px) {
  .devices__grid { grid-template-columns: 1fr; max-width: 360px; }
}
@media (max-width: 420px) {
  .devices__strip { grid-template-columns: 1fr; }
  .strip__item + .strip__item::before { display: none; }
  .strip__item + .strip__item { border-top: 1px solid rgba(255,255,255,.06); padding-top: 14px; }
}

/* =========================================================
   LANGUAGE SWITCHER — Phase 9
   All class names prefixed .ls- for zero conflicts
   ========================================================= */
:root {
  --ls-accent:         var(--accent);
  --ls-accent-text:    #ffffff;
  --ls-bg:             rgba(13, 15, 20, 0.95);
  --ls-bg-solid:       #0d0f14;
  --ls-bg-blur:        22px;
  --ls-border:         rgba(255, 255, 255, 0.08);
  --ls-text:           var(--ink-0);
  --ls-text-muted:     var(--ink-2);
  --ls-row-hover:      rgba(255, 255, 255, 0.05);
  --ls-row-bg:         transparent;
  --ls-code-bg:        rgba(255, 255, 255, 0.05);
  --ls-code-text:      var(--ink-1);
  --ls-trigger-bg:     rgba(255, 255, 255, 0.04);
  --ls-trigger-border: rgba(255, 255, 255, 0.10);
  --ls-shadow:         0 24px 64px -16px rgba(0, 0, 0, 0.7), 0 8px 24px -8px rgba(0, 0, 0, 0.5);
  --ls-radius:         18px;
  --ls-radius-row:     12px;
  --ls-radius-pill:    999px;
  --ls-font:           var(--font-body);
}

.ls {
  position: relative;
  display: inline-block;
  font-family: var(--ls-font);
  -webkit-font-smoothing: antialiased;
}

.ls-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 12px 0 10px;
  background: var(--ls-trigger-bg);
  color: var(--ls-text);
  border: 1px solid var(--ls-trigger-border);
  border-radius: var(--ls-radius-pill);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 80ms ease;
  user-select: none;
}
.ls-trigger:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.16); }
.ls-trigger:active { transform: translateY(1px); }
.ls-trigger:focus-visible { outline: 2px solid var(--ls-accent); outline-offset: 2px; }
.ls-trigger__code { font-variant-numeric: tabular-nums; }
.ls-trigger__globe { opacity: 0.75; }
.ls-trigger__caret {
  display: inline-block; font-size: 10px; line-height: 1;
  margin-top: 1px; transition: transform 180ms ease; opacity: 0.8;
}
.ls-trigger[aria-expanded="true"] .ls-trigger__caret { transform: rotate(180deg); }

.ls-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 1000;
  /* Size to the language names rather than a fixed 360px, so a short list
     reads as a tidy dropdown instead of a half-empty slab. */
  width: max-content;
  min-width: 264px;
  max-width: min(calc(100vw - 24px), 360px);
  max-height: min(72vh, 480px);
  overflow-y: auto;
  padding: 10px;
  background: var(--ls-bg);
  -webkit-backdrop-filter: blur(var(--ls-bg-blur)) saturate(140%);
  backdrop-filter: blur(var(--ls-bg-blur)) saturate(140%);
  border: 1px solid var(--ls-border);
  border-radius: var(--ls-radius);
  box-shadow: var(--ls-shadow);
  opacity: 0;
  transform: translateY(-6px) scale(0.985);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.ls-panel.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.ls-panel::-webkit-scrollbar { width: 6px; }
.ls-panel::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 3px; }
.ls-panel::-webkit-scrollbar-track { background: transparent; }

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .ls-panel { background: var(--ls-bg-solid); }
}

.ls-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
.ls-row {
  display: flex; align-items: center; gap: 10px;
  width: 100%; min-height: 42px; padding: 8px 12px 8px 8px;
  background: var(--ls-row-bg); color: var(--ls-text);
  border: none; border-radius: var(--ls-radius-row);
  font: inherit; font-size: 14px; font-weight: 500;
  text-align: left; cursor: pointer;
  transition: background 140ms ease, color 140ms ease;
  user-select: none;
}
.ls-row:hover { background: var(--ls-row-hover); }
.ls-row:focus-visible { outline: none; background: var(--ls-row-hover); box-shadow: inset 0 0 0 1px var(--ls-accent); }
.ls-row.is-active { background: var(--ls-accent); color: var(--ls-accent-text); }
.ls-row.is-active .ls-row__code { background: rgba(255,255,255,0.2); color: var(--ls-accent-text); }
.ls-row.is-active:hover { background: var(--ls-accent); filter: brightness(1.06); }
.ls-row__code {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 32px; height: 26px; padding: 0 6px;
  background: var(--ls-code-bg); color: var(--ls-code-text);
  border-radius: 8px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; font-variant-numeric: tabular-nums;
  flex-shrink: 0; transition: background 140ms ease, color 140ms ease;
}
.ls-row__name { flex: 1 1 auto; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

@media (max-width: 520px) {
  .ls-trigger { height: 34px; padding: 0 10px 0 8px; font-size: 12px; gap: 5px; }
  .ls-trigger__globe svg { width: 14px; height: 14px; }
  .ls-panel {
    top: calc(100% + 6px);
    right: 0;
    min-width: 0;
    width: min(calc(100vw - 16px), 320px);
    max-height: 70vh;
    padding: 8px;
    background: rgba(13, 15, 20, 0.98);
    border-radius: 14px;
    box-shadow: 0 28px 70px -18px rgba(0, 0, 0, 0.85), 0 10px 30px -10px rgba(0, 0, 0, 0.6);
  }
  .ls-grid { grid-template-columns: 1fr 1fr; gap: 4px; }
  .ls-row { min-height: 44px; padding: 8px 10px 8px 8px; font-size: 14px; }
  .ls-row__code { min-width: 32px; height: 26px; font-size: 11px; }
}
@media (max-width: 380px) { .ls-grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) {
  .ls-panel, .ls-trigger, .ls-trigger__caret, .ls-row, .ls-row__code { transition: none; }
}

/* ==========================================================================
   PRICING PLAN — Phase 11 (design parts integration)
   ========================================================================== */

.pp-shell {
  display: flex; flex-direction: column; align-items: center;
  margin: 24px 0 36px; padding-top: 6px;
}
.pp-shell__heading {
  font-family: var(--font-display); font-weight: 600; font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-2); margin: 0 0 12px;
}
.pp-switcher {
  display: inline-flex; width: fit-content; gap: 4px;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 999px; padding: 5px;
  box-shadow: 0 12px 28px -14px rgba(0,0,0,.6), 0 2px 6px rgba(0,0,0,.18);
}
.pp-switcher__btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  min-width: 140px; padding: 12px 24px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700; font-size: 14.5px;
  color: var(--ink-1); letter-spacing: .01em; white-space: nowrap;
  background: transparent; border: 0; cursor: pointer;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease, transform .15s ease;
}
.pp-switcher__btn:hover:not(.pp-switcher__btn--active) {
  background: rgba(34,197,95,.08); color: var(--accent);
}
.pp-switcher__btn--active {
  background: var(--accent); color: #052e16;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px -8px rgba(34,197,95,.55), 0 2px 4px rgba(34,197,95,.18);
}
.pp-switcher__btn-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--accent-soft); color: var(--accent);
  border: 1px solid rgba(34,197,95,.35);
  font-family: var(--font-display); font-weight: 700; font-size: 9px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px; white-space: nowrap;
  pointer-events: none; z-index: 3;
}
@media (max-width: 480px) {
  .pp-switcher__btn { padding: 10px 16px; font-size: 13.5px; min-width: 0; }
}

.pp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; align-items: stretch; margin-top: 16px;
}
@media (max-width: 880px) {
  .pp-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}

.pp-card {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px 26px 26px;
  box-shadow: var(--sh-md);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pp-card:hover { transform: translateY(-3px); border-color: var(--line-2); box-shadow: var(--sh-lg); }

.pp-card--featured {
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%) padding-box,
    linear-gradient(180deg, var(--accent) 0%, rgba(34,197,95,.4) 100%) border-box;
  box-shadow: 0 18px 40px -16px rgba(34,197,95,.45), 0 2px 8px -2px rgba(0,0,0,.45), var(--sh-glow);
}
.pp-card--featured::before, .pp-card--featured::after {
  content: ""; position: absolute; top: 8%; bottom: 8%; width: 2px;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 14px var(--accent-glow); pointer-events: none;
}
.pp-card--featured::before { left: -1px; }
.pp-card--featured::after  { right: -1px; }

.pp-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #052e16;
  font-family: var(--font-display); font-weight: 800; font-size: 11.5px;
  letter-spacing: .04em; padding: 6px 14px; border-radius: 999px;
  white-space: nowrap; box-shadow: 0 8px 20px -6px var(--accent-glow);
}

.pp-card__head {
  text-align: center; padding-bottom: 18px;
  border-bottom: 1px dashed var(--line-2);
}
.pp-card__duration {
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
  color: var(--ink-0); margin: 4px 0 12px;
  letter-spacing: -.005em;
}

.pp-card__price {
  display: inline-flex; align-items: flex-start; justify-content: center;
  font-family: var(--font-display); color: var(--ink-0);
  line-height: 1; margin: 0; gap: 2px;
}
.pp-card__price-curr {
  font-size: 22px; font-weight: 700; margin-top: 8px;
  color: var(--ink-1); align-self: flex-start;
}
.pp-card__price-int {
  font-size: 56px; font-weight: 800;
  letter-spacing: -.03em; line-height: 1;
}
.pp-card__price-frac {
  font-size: 22px; font-weight: 700;
  align-self: flex-end; margin-bottom: 6px; color: var(--ink-1);
}
.pp-card__subtitle {
  font-family: var(--font-display); font-size: 10.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-2); margin: 12px 0 4px; text-align: center;
}
.pp-card__permonth {
  color: var(--accent); font-weight: 700; font-size: 13px;
  text-align: center; margin-top: 6px;
  font-variant-numeric: tabular-nums;
}
.pp-card__tag {
  display: inline-block; margin: 12px auto 0;
  background: rgba(34,197,95,.12); color: var(--accent);
  border: 1px solid rgba(34,197,95,.3);
  font-family: var(--font-display); font-weight: 700; font-size: 10.5px;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}

.pp-card__devices { text-align: center; margin: 14px 0 6px; }
.pp-card__devices-label {
  font-family: var(--font-display); font-size: 10.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-2); margin: 0 0 8px;
}
.pp-card__counter {
  display: inline-flex; align-items: center; gap: 14px;
}
.pp-card__step {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--line-2); color: var(--ink-1);
  background: var(--bg-3);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 18px; line-height: 1; padding: 0;
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease, background .15s ease, transform .1s ease;
}
.pp-card__step:hover:not(:disabled) {
  border-color: var(--accent); color: var(--accent);
  background: rgba(34,197,95,.1);
}
.pp-card__step:active:not(:disabled) { transform: scale(.92); }
.pp-card__step:disabled { opacity: .35; cursor: not-allowed; }
.pp-card__count {
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  color: var(--accent); min-width: 18px; text-align: center; line-height: 1;
  font-variant-numeric: tabular-nums;
}

.pp-card__items {
  list-style: none; padding: 0; margin: 18px 0 22px;
  display: flex; flex-direction: column; gap: 11px; flex: 1;
}
.pp-card__item {
  display: flex; align-items: center; gap: 10px; min-height: 22px;
}
.pp-card__check {
  flex: 0 0 18px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  border: 1px solid rgba(34,197,95,.35);
  display: inline-flex; align-items: center; justify-content: center;
}
.pp-card__check svg { width: 11px; height: 11px; }
.pp-card__text {
  color: var(--ink-1); font-size: 13.5px; font-weight: 500;
  line-height: 1.45;
}
.pp-card__item--highlight .pp-card__check {
  background: var(--accent); color: #052e16;
  box-shadow: 0 0 0 3px rgba(34,197,95,.18);
}
.pp-card__item--highlight .pp-card__text {
  color: var(--accent); font-weight: 700;
}

.pp-card__logos {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: nowrap; min-width: 0; flex: 1;
}
.pp-card__logo {
  display: inline-flex; align-items: center; height: 14px;
  flex: 0 0 auto; opacity: .92;
}
.pp-card__logo svg { height: 100%; width: auto; display: block; }

.pp-card__cta {
  display: block; width: 100%; text-align: center;
  background: var(--accent); color: #052e16;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  padding: 13px 16px; border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 24px -10px var(--accent-glow);
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.pp-card__cta:hover { background: var(--accent-2); transform: translateY(-1px); box-shadow: 0 14px 30px -10px var(--accent-glow); }
.pp-card__cta:active { transform: scale(.98); }
.pp-card--featured .pp-card__cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
}

/* ==========================================================================
   BIGGEST SALE EVER
   ========================================================================== */
.biggest-sale {
  --bs-accent: var(--accent);
  --bs-accent-2: var(--accent-2);
  --bs-accent-glow: var(--accent-glow);
  --bs-card-bg: #0e1014;
  --bs-card-border: rgba(255, 255, 255, 0.06);
  position: relative;
  padding: clamp(60px, 8vw, 110px) 0;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(34, 197, 95, 0.08), transparent 60%),
    var(--bg-0);
}
.biggest-sale__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}
.biggest-sale__title {
  font: 800 clamp(32px, 5vw, 48px)/1.1 var(--font-display);
  color: var(--bs-accent);
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  text-shadow: 0 2px 24px var(--bs-accent-glow);
}
.biggest-sale__sub {
  color: var(--ink-1);
  font-size: clamp(14px, 1.4vw, 16px);
  margin: 0;
}

.biggest-sale__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.bs-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bs-card-bg);
  border: 1px solid var(--bs-card-border);
  border-radius: 20px;
  padding: 32px 28px 28px;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.bs-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 197, 95, 0.25);
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.6);
}
.bs-card__badge {
  position: absolute;
  top: -12px;
  right: 22px;
  background: var(--bs-accent);
  color: #04200f;
  font: 800 11px/1 var(--font-body);
  letter-spacing: 0.08em;
  padding: 7px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 18px -6px var(--bs-accent-glow);
}
.bs-card__badge--best {
  right: auto;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--bs-accent), var(--bs-accent-2));
  padding: 8px 14px;
}
.bs-card__corner-badge {
  position: absolute;
  top: -12px;
  left: 22px;
  background: #04200f;
  color: var(--bs-accent);
  font: 800 11px/1 var(--font-body);
  letter-spacing: 0.08em;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--bs-accent);
}
.bs-card__title {
  font: 700 22px/1.25 var(--font-display);
  color: var(--ink-0);
  margin: 0 0 12px;
}
.bs-card__desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-1);
  margin: 0 0 22px;
}
.bs-card__desc strong { color: var(--bs-accent); font-weight: 700; }
.bs-card__desc s { color: var(--ink-2); opacity: 0.7; }
.bs-card__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 14px;
  font: 800 38px/1 var(--font-display);
  color: var(--bs-accent);
  letter-spacing: -0.02em;
}
.bs-card__price-now {
  background: linear-gradient(135deg, var(--bs-accent) 0%, var(--bs-accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bs-card__price-old {
  font-size: 18px;
  color: var(--ink-2);
  font-weight: 600;
  opacity: 0.7;
}
.bs-card__features {
  color: var(--ink-2);
  font-size: 13px;
  margin: 0 0 22px;
  letter-spacing: 0.02em;
}
.bs-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 14px 20px;
  background: var(--bs-accent);
  color: #04200f;
  font: 700 15px/1 var(--font-display);
  letter-spacing: 0.01em;
  border-radius: 12px;
  text-decoration: none;
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.bs-card__cta:hover {
  background: var(--bs-accent-2);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px var(--bs-accent-glow);
}
.bs-card__cta:active { transform: scale(0.98); }
.bs-card__cta--featured {
  background: linear-gradient(135deg, var(--bs-accent), var(--bs-accent-2));
  box-shadow: 0 0 0 1px var(--bs-accent) inset;
}
.bs-card__note {
  text-align: center;
  font: 700 11px/1 var(--font-body);
  letter-spacing: 0.12em;
  color: var(--ink-2);
  margin: 12px 0 0;
}
.bs-card--featured {
  border-color: var(--bs-accent);
  box-shadow:
    0 0 0 1px var(--bs-accent) inset,
    0 24px 60px -20px var(--bs-accent-glow),
    0 0 80px -20px var(--bs-accent-glow);
}
.bs-card--featured .bs-card__note { color: var(--bs-accent); }

.biggest-sale__trial {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  padding: 18px 24px;
  background: rgba(34, 197, 95, 0.05);
  border: 1px solid rgba(34, 197, 95, 0.35);
  border-radius: 16px;
}
.biggest-sale__trial-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 95, 0.1);
  border: 1px solid rgba(34, 197, 95, 0.4);
  border-radius: 10px;
  color: var(--bs-accent);
}
.biggest-sale__trial-text {
  flex: 1;
  min-width: 0;
}
.biggest-sale__trial-text strong {
  display: block;
  font: 700 15px/1.3 var(--font-display);
  color: var(--ink-0);
}
.biggest-sale__trial-text strong em {
  color: var(--bs-accent);
  font-style: normal;
}
.biggest-sale__trial-text small {
  display: block;
  font-size: 12.5px;
  color: var(--ink-2);
  margin-top: 4px;
}
.biggest-sale__trial-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #ffffff;
  color: #04200f;
  font: 700 14px/1 var(--font-display);
  border-radius: 999px;
  text-decoration: none;
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.biggest-sale__trial-cta:hover { background: var(--bs-accent); transform: translateY(-1px); }
.biggest-sale__trial-cta:active { transform: scale(0.98); }

@media (max-width: 980px) {
  .biggest-sale__grid { grid-template-columns: 1fr; gap: 28px; max-width: 480px; margin-inline: auto; }
}
@media (max-width: 640px) {
  .biggest-sale { padding: 56px 0 64px; }
  .bs-card { padding: 28px 22px 24px; }
  .bs-card__price { font-size: 32px; }
  .bs-card__price-old { font-size: 16px; }
  .biggest-sale__trial { flex-direction: column; text-align: center; align-items: stretch; padding: 18px 18px 20px; }
  .biggest-sale__trial-icon { margin: 0 auto; }
  .biggest-sale__trial-cta { justify-content: center; }
}
