/* Fonts loaded via <link> in HTML <head> with display=swap */

/* ===== ROOT — Netflix Dark (default) ===== */
:root {
  --bg:       #141414;
  --bg2:      #1A1A1A;
  --surface:  #1E1E1E;
  --surface2: #272727;
  --border:   rgba(255,255,255,0.08);
  --border2:  rgba(255,255,255,0.18);
  --text:     #FFFFFF;
  --muted:    #A8A8A8;
  --muted2:   #E0E0E0;
  --accent:   #E50914;
  --accent2:  #B20710;
  --purple:   #E50914;
  --purple2:  #B20710;
  --green:    #46D369;
  --amber:    #F5C518;
  --red:      #E50914;
  --grad1:    linear-gradient(135deg, #E50914 0%, #B20710 100%);
  --grad2:    linear-gradient(90deg,  #FF5555 0%, #E50914 100%);
  --shadow:   0 16px 60px rgba(0,0,0,0.80);
  --shadow2:  0 4px 20px  rgba(0,0,0,0.55);
  --divider:  8px solid #000;
  --radius:   4px;
  --radius2:  6px;
  --max:      1100px;
  --font:     'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
}

/* ===== LIGHT THEME ===== */
[data-theme="light"] {
  --bg:       #F4F4F4;
  --bg2:      #EAEAEA;
  --surface:  #FFFFFF;
  --surface2: #F0F0F0;
  --border:   rgba(0,0,0,0.10);
  --border2:  rgba(0,0,0,0.22);
  --text:     #111111;
  --muted:    #555555;
  --muted2:   #222222;
  --green:    #15803D;
  --amber:    #92400E;
  --divider:  8px solid #D0D0D0;
  --shadow:   0 16px 60px rgba(0,0,0,0.10);
  --shadow2:  0 4px 20px  rgba(0,0,0,0.07);
}

/* ─── LIGHT THEME COMPONENT OVERRIDES ─── */

/* Hero glow — very subtle on white bg, remove pink tint */
[data-theme="light"] .nfHero::before {
  background: radial-gradient(ellipse 80% 50% at 50% -15%, rgba(229,9,20,0.055) 0%, transparent 55%);
}

/* Trust badges — crisp on light */
[data-theme="light"] .trustBadge {
  background: #FFFFFF;
  border-color: rgba(0,0,0,0.16);
  color: #333333;
}

/* Device badge (green) — accessible contrast on light */
[data-theme="light"] .badge {
  background: rgba(21,128,61,0.10);
  border-color: rgba(21,128,61,0.28);
  color: #15803D;
}

/* WhatsApp "Online" label — dark accessible green */
[data-theme="light"] .nfVisual__chatOnline { color: #15803D; }

/* Status dot & badge — accessible green on light */
[data-theme="light"] .statusDot { background: #16A34A; box-shadow: 0 0 8px rgba(22,163,74,0.35); }
[data-theme="light"] .statusBadge--up { background: rgba(21,128,61,0.10); border-color: rgba(21,128,61,0.24); color: #15803D; }

/* nfVisual mock cards — crisper border & shadow on light */
[data-theme="light"] .nfVisual {
  border-color: rgba(0,0,0,0.13);
  box-shadow: 0 6px 28px rgba(0,0,0,0.09);
}

/* nfRow--alt on light — add subtle border for section separation */
[data-theme="light"] .nfRow--alt {
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

/* section--alt on light — reinforce divider */
[data-theme="light"] .section--alt {
  border-color: rgba(0,0,0,0.08);
}

/* Cards — more visible borders on light bg */
[data-theme="light"] .iconCard,
[data-theme="light"] .channelCard,
[data-theme="light"] .nfDeviceCard,
[data-theme="light"] .quote,
[data-theme="light"] .step,
[data-theme="light"] .plan,
[data-theme="light"] .supportCard { border-color: rgba(0,0,0,0.13); }

/* iconCard icon bg on light */
[data-theme="light"] .iconCard__icon {
  background: rgba(229,9,20,0.07);
  border-color: rgba(229,9,20,0.14);
}

/* ctaStrip on light — visible card */
[data-theme="light"] .ctaStrip {
  border-color: rgba(0,0,0,0.13);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

/* Slider block on light */
[data-theme="light"] .sliderBlock { border-color: rgba(0,0,0,0.13); background: #F0F0F0; }

/* Plan builder card on light */
[data-theme="light"] .nfPlanBuilder { box-shadow: 0 4px 24px rgba(0,0,0,0.09); border-color: rgba(0,0,0,0.13); }
[data-theme="light"] .nfPlanBuilder__head { background: #EFEFEF; border-color: rgba(0,0,0,0.12); }

/* Segmented (term selector) on light */
[data-theme="light"] .segmented { border-color: rgba(0,0,0,0.13); background: #EBEBEB; }
[data-theme="light"] .segmented__btn { color: #555555; }

/* Faq on light */
[data-theme="light"] .faq details { border-color: rgba(0,0,0,0.13); }

/* Table on light */
[data-theme="light"] .tableWrap { border-color: rgba(0,0,0,0.13); }
[data-theme="light"] th { background: #F0F0F0; }

/* Callout on light */
[data-theme="light"] .callout { color: #333333; }

/* nfSteps connecting line on light — slightly more visible */
[data-theme="light"] .nfSteps::before {
  background: linear-gradient(90deg, var(--accent) 0%, rgba(229,9,20,0.12) 100%);
}

/* nfStep num ring — match light section bg */
[data-theme="light"] .nfStep__num { box-shadow: 0 0 0 6px #F4F4F4, 0 0 0 7px var(--accent); }

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { height: 100%; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; }
h1,h2,h3,h4 { line-height: 1.08; font-weight: 900; color: var(--text); }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ===== UTILITIES ===== */
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.muted  { color: var(--muted); }
.muted2 { color: var(--muted2); }
.small  { font-size: 12px; }
.kicker {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.gradText {
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== SECTION DIVIDER (Netflix thick black line) ===== */
.nfDivider { border: 0; border-top: var(--divider); margin: 0; }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(20,20,20,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
[data-theme="light"] .header { background: rgba(244,244,244,0.97); }
.header__inner { display: flex; align-items: center; padding: 13px 0; gap: 12px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 900; font-size: 19px; letter-spacing: -0.5px; margin-right: auto; }
.brand__mark {
  width: 34px; height: 34px; border-radius: 3px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff; font-size: 10px; font-weight: 900;
}
.brand__name { color: var(--text); }
.nav { display: flex; align-items: center; gap: 2px; }
.nav .navLink { color: var(--muted); font-weight: 500; font-size: 14px; padding: 7px 12px; border-radius: 3px; transition: color 0.15s, background 0.15s; }
.nav .navLink:hover, .nav .navLink.isActive { color: var(--text); background: rgba(255,255,255,0.07); }
[data-theme="light"] .nav .navLink:hover,
[data-theme="light"] .nav .navLink.isActive { background: rgba(0,0,0,0.07); }
.nav .btn { margin-left: 4px; }
.navToggle {
  display: none; border: 1px solid var(--border); background: transparent;
  color: var(--text); border-radius: 3px; padding: 9px 13px;
  font-size: 18px; cursor: pointer; transition: background 0.15s;
}
.navToggle:hover { background: rgba(255,255,255,0.07); }
[data-theme="light"] .navToggle:hover { background: rgba(0,0,0,0.07); }
.mobileNav { display: none; padding: 8px 0 14px; border-top: 1px solid var(--border); background: var(--bg); }
.mobileNav a { display: block; padding: 11px 0; color: var(--muted); font-weight: 600; font-size: 15px; transition: color 0.15s; }
.mobileNav a:hover { color: var(--text); }

/* ===== THEME TOGGLE ===== */
.themeToggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; flex-shrink: 0;
  border: 1px solid var(--border); background: transparent;
  color: var(--muted); border-radius: 3px;
  cursor: pointer; transition: background 0.15s, color 0.15s;
}
.themeToggle:hover { background: rgba(255,255,255,0.08); color: var(--text); }
[data-theme="light"] .themeToggle:hover { background: rgba(0,0,0,0.07); }
.themeIcon { pointer-events: none; }
.themeIcon--sun  { display: block; }
.themeIcon--moon { display: none; }
[data-theme="light"] .themeIcon--sun  { display: none; }
[data-theme="light"] .themeIcon--moon { display: block; }

/* ===== BUTTONS ===== */
.btn {
  border: 1px solid var(--border2);
  background: rgba(255,255,255,0.07);
  color: var(--text);
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s, box-shadow 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { background: rgba(255,255,255,0.13); color: var(--text); }

/* Light mode — default button: solid white with clear border */
[data-theme="light"] .btn {
  background: #FFFFFF;
  border-color: rgba(0,0,0,0.22);
  color: #111111;
}
[data-theme="light"] .btn:hover {
  background: #F0F0F0;
  border-color: rgba(0,0,0,0.35);
  color: #111111;
}

/* Primary button — red in both themes */
.btn--primary { background: var(--accent); color: #fff; border-color: transparent; }
.btn--primary:hover { background: var(--accent2); box-shadow: 0 4px 22px rgba(229,9,20,0.50); color: #fff; border-color: transparent; }
[data-theme="light"] .btn--primary { background: var(--accent); color: #fff; border-color: transparent; }
[data-theme="light"] .btn--primary:hover { background: var(--accent2); color: #fff; border-color: transparent; }

/* Ghost button — dark mode: white border; light mode: strong dark border */
.btn--ghost { background: transparent; border-color: rgba(255,255,255,0.55); color: var(--text); }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }
[data-theme="light"] .btn--ghost {
  background: transparent;
  border-color: rgba(0,0,0,0.50);
  color: #111111;
}
[data-theme="light"] .btn--ghost:hover {
  background: rgba(0,0,0,0.06);
  border-color: #111111;
  color: #111111;
}
.btn--small { padding: 8px 15px; font-size: 13px; }
.btn--full { width: 100%; }
.btn--xl   { padding: 16px 36px; font-size: 17px; font-weight: 800; border-radius: var(--radius); }

/* ===== HERO SECTION ===== */
.nfHero {
  padding: 110px 0 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.nfHero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(229,9,20,0.13) 0%, transparent 60%);
  pointer-events: none;
}
.nfHero__content { position: relative; max-width: 780px; margin: 0 auto; }
.nfHero h1 {
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -2.5px;
  margin: 8px 0 20px;
  line-height: 1.02;
}
.nfHero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  max-width: 54ch;
  margin: 0 auto 32px;
  line-height: 1.65;
  font-weight: 400;
}
.nfHero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.trustRow { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.trustBadge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 13px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 11px; font-weight: 700;
  color: var(--muted2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.03);
}
[data-theme="light"] .trustBadge { background: rgba(0,0,0,0.04); }
.nfHero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.nfHero__stat {
  padding: 0 36px;
  text-align: center;
}
.nfHero__stat + .nfHero__stat { border-left: 1px solid var(--border); }
.statNum { font-size: 30px; font-weight: 900; color: var(--accent); display: block; letter-spacing: -0.5px; }
.statLabel { color: var(--muted); font-size: 11px; font-weight: 700; display: block; text-transform: uppercase; letter-spacing: 0.09em; margin-top: 4px; }

/* keep .statsRow for other pages */
.statsRow { display: flex; gap: 36px; flex-wrap: wrap; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border); }

/* ===== NETFLIX FEATURE ROWS ===== */
.nfRow { padding: 72px 0; }
.nfRow--alt { background: var(--bg2); }
.nfRow__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.nfRow--reverse .nfRow__inner { direction: rtl; }
.nfRow--reverse .nfRow__inner > * { direction: ltr; }
.nfRow__text .kicker { display: block; }
.nfRow__text h2 {
  font-size: clamp(30px, 4vw, 50px);
  letter-spacing: -1.5px;
  margin: 0 0 18px;
  line-height: 1.06;
}
.nfRow__desc { color: var(--muted); font-size: 18px; line-height: 1.7; margin-bottom: 28px; font-weight: 400; }

/* ===== NETFLIX VISUAL CARDS ===== */
.nfVisual {
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* Screen mock (devices row) */
.nfVisual__chrome {
  padding: 10px 14px;
  background: var(--surface2);
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.nfVisual__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border2);
}
.nfVisual__dot--red { background: var(--accent); }
.nfVisual__body { padding: 20px 22px 24px; }
.nfVisual__now {
  font-size: 10px; font-weight: 800; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 10px;
}
.nfVisual__title {
  font-size: 22px; font-weight: 900; margin-bottom: 4px; letter-spacing: -0.4px;
}
.nfVisual__meta { color: var(--muted); font-size: 13px; font-weight: 600; margin-bottom: 18px; }
.nfVisual__thumbRow { display: flex; gap: 10px; }
.nfVisual__thumb {
  flex: 1; aspect-ratio: 16/9; max-width: 80px;
  background: var(--surface2); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  border: 1px solid var(--border);
  transition: border-color 0.15s;
}
.nfVisual__thumb:hover { border-color: var(--accent); }

/* Channel grid (channels row) */
.nfVisual__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.nfVisual__cat {
  padding: 20px 8px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 11px; font-weight: 700; color: var(--muted);
  text-align: center; text-transform: uppercase; letter-spacing: 0.05em;
  transition: background 0.15s, color 0.15s;
  cursor: default;
}
.nfVisual__cat:nth-child(4n) { border-right: 0; }
.nfVisual__cat:nth-last-child(-n+4) { border-bottom: 0; }
.nfVisual__cat:hover { background: rgba(229,9,20,0.08); color: var(--text); }
.nfVisual__cat span { font-size: 26px; }

/* WhatsApp chat mock */
.nfVisual__chatHeader {
  padding: 14px 18px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.nfVisual__chatAvatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center;
  justify-content: center; font-size: 16px; flex-shrink: 0;
}
.nfVisual__chatName { font-weight: 800; font-size: 14px; }
.nfVisual__chatOnline { font-size: 11px; color: var(--green); font-weight: 600; }
.nfVisual__chatBody { padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.nfVisual__msg {
  max-width: 82%;
  padding: 10px 14px;
  font-size: 14px; font-weight: 500; line-height: 1.45;
}
.nfVisual__msg--in {
  background: var(--surface2);
  border-radius: 0 10px 10px 10px;
  align-self: flex-start;
  color: var(--muted2);
}
.nfVisual__msg--out {
  background: #1DA462;
  border-radius: 10px 10px 0 10px;
  align-self: flex-end;
  color: #fff;
}

/* ===== PLAN SECTION ===== */
.nfPlanSection { padding: 80px 0; }
.nfPlanBuilder {
  max-width: 480px;
  margin: 0 auto 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  box-shadow: var(--shadow2);
  overflow: hidden;
}
.nfPlanBuilder__head {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--surface2);
}
.nfPlanBuilder__headTitle { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.nfPlanBuilder__body { padding: 24px; }
.nfPriceDisplay { text-align: center; padding: 20px 0 16px; }
.nfPriceDisplay .priceMain { font-size: 56px; font-weight: 900; letter-spacing: -2px; color: var(--text); }
.nfPriceDisplay .priceMeta { color: var(--muted); font-size: 14px; font-weight: 600; margin-top: 4px; }
.nfPlanBuilder__features { border-top: 1px solid var(--border); padding-top: 16px; margin-top: 4px; }

/* ===== PLAN CARDS (shown below builder) ===== */
.nfPlanGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 640px;
  margin: 0 auto;
}

/* ===== GENERAL CARDS (used in hero plan card on other pages) ===== */
.card { border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius2); box-shadow: var(--shadow2); overflow: hidden; }
.card__header { padding: 20px 22px 0; }
.card__title { margin: 0; font-size: 18px; font-weight: 800; }
.card__subtitle { margin: 5px 0 0; color: var(--muted); font-weight: 600; font-size: 14px; }
.card__body { padding: 22px; }

/* ===== SEGMENTED ===== */
.segmented { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--bg2); margin-bottom: 18px; }
.segmented__btn { padding: 12px 10px; border: 0; background: transparent; color: var(--muted); font-weight: 700; font-size: 14px; cursor: pointer; transition: background 0.15s, color 0.15s; }
.segmented__btn.isActive { background: var(--accent); color: #fff; }

/* ===== PRICE BLOCK (hero plan card) ===== */
.priceBlock { margin: 18px 0 14px; }
.priceMain { font-size: 50px; font-weight: 900; letter-spacing: -2px; color: var(--text); display: inline-block; }
.priceMeta { color: var(--muted); font-weight: 600; font-size: 14px; }

/* ===== SLIDER ===== */
.sliderBlock { border: 1px solid var(--border); background: var(--bg2); border-radius: var(--radius); padding: 16px 18px; margin-bottom: 18px; }
.sliderTop { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 4px; }
.label { color: var(--muted); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; }
.value { font-weight: 900; font-size: 17px; color: var(--text); }
.badge { padding: 4px 10px; border-radius: 2px; font-weight: 700; font-size: 11px; background: rgba(70,211,105,0.14); border: 1px solid rgba(70,211,105,0.26); color: #46D369; text-transform: uppercase; letter-spacing: 0.05em; }
.slider { width: 100%; margin: 12px 0 8px; -webkit-appearance: none; height: 3px; border-radius: 2px; background: var(--border2); outline: none; cursor: pointer; }
.slider::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--accent); cursor: pointer; box-shadow: 0 0 10px rgba(229,9,20,0.45); }
.sliderBottom { display: flex; justify-content: space-between; color: var(--muted); font-weight: 700; font-size: 12px; }

/* ===== FEATURE LIST ===== */
.featureList { display: grid; gap: 11px; margin: 16px 0; }
.feature { display: flex; gap: 11px; align-items: flex-start; color: var(--muted); font-weight: 500; font-size: 14px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-top: 7px; flex-shrink: 0; }
.fineprint { color: var(--muted); font-size: 12px; margin-top: 10px; opacity: 0.7; text-align: center; }

/* ===== SECTIONS (inner pages) ===== */
.section { padding: 80px 0; }
.section--alt { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sectionHead { margin-bottom: 40px; }
.sectionHead--center { text-align: center; }
.sectionHead h2 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 900; letter-spacing: -1px; margin-bottom: 12px; }
.sectionHead p { color: var(--muted); font-size: 16px; max-width: 56ch; line-height: 1.7; }
.sectionHead--center p { margin: 0 auto; }

/* ===== HERO — INNER PAGES (shorter Netflix hero) ===== */
.nfHero--inner { padding: 72px 0 60px; }
.nfHero--inner .nfHero__content { max-width: 700px; }
.nfHero--inner h1 { font-size: clamp(34px, 5vw, 62px); }
.nfHero--inner .nfHero__sub { font-size: clamp(15px, 1.8vw, 18px); }
.nfHero--inner .nfHero__cta { margin-bottom: 0; }

/* ===== HERO (inner pages — keeps original grid layout) ===== */
.hero { padding: 72px 0 60px; }
.hero::before { display: none; }
.hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
h1 { font-size: clamp(36px, 4.5vw, 58px); margin: 10px 0 16px; line-height: 1.06; font-weight: 900; letter-spacing: -2px; }
.lead { color: var(--muted); font-size: 18px; max-width: 52ch; line-height: 1.7; }
.ctaRow { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0 10px; }

/* ===== CHANNEL CARDS — NETFLIX STYLE ===== */
.channelCard--featured { border-color: var(--accent); border-top: 3px solid var(--accent); }

/* ===== HOW-IT-WORKS STEPS — NUMBERED ===== */
.nfSteps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.nfSteps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(229,9,20,0.15) 100%);
  z-index: 0;
}
.nfStep { padding: 0 24px 0; text-align: center; position: relative; z-index: 1; }
.nfStep__num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 18px; font-weight: 900;
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px var(--bg), 0 0 0 7px var(--accent);
}
.nfStep h3 { font-size: 15px; font-weight: 800; margin-bottom: 8px; }
.nfStep p { color: var(--muted); font-size: 13px; line-height: 1.65; font-weight: 500; }

/* ===== DEVICE GRID ===== */
.nfDeviceGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.nfDeviceCard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.nfDeviceCard:hover { border-color: var(--accent); transform: translateY(-3px); }
.nfDeviceCard__icon { font-size: 36px; margin-bottom: 12px; }
.nfDeviceCard h3 { font-size: 14px; font-weight: 800; margin-bottom: 6px; }
.nfDeviceCard p { font-size: 12px; color: var(--muted); font-weight: 500; line-height: 1.6; }

/* ===== RESPONSIVE additions ===== */
@media (max-width: 980px) {
  .nfSteps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .nfSteps::before { display: none; }
  .nfStep { text-align: left; display: flex; gap: 18px; align-items: flex-start; }
  .nfStep__num { flex-shrink: 0; margin: 0; }
  .nfDeviceGrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .nfSteps { grid-template-columns: 1fr; }
  .nfHero--inner { padding: 56px 0 44px; }
  .nfDeviceGrid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== GRIDS ===== */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ===== PLAN CARDS ===== */
.plan {
  border: 1px solid var(--border); background: var(--surface);
  border-radius: var(--radius2); padding: 26px; position: relative;
  transition: transform 0.2s, border-color 0.2s;
}
.plan:hover { transform: translateY(-4px); border-color: var(--border2); }
.plan--featured { border-color: var(--accent); border-top: 3px solid var(--accent); }
.ribbon { position: absolute; top: 14px; right: 14px; padding: 4px 10px; border-radius: 2px; background: var(--accent); color: #fff; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; }
.plan__name { font-weight: 700; color: var(--accent); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; }
.plan__price { font-size: 38px; font-weight: 900; margin-top: 10px; letter-spacing: -1.5px; color: var(--text); }
.plan__meta { color: var(--muted); font-weight: 600; font-size: 13px; margin-top: 4px; }
.plan__list { margin: 18px 0; padding: 0; display: grid; gap: 9px; }
.plan__list li { color: var(--muted); font-weight: 500; font-size: 14px; padding-left: 20px; position: relative; }
.plan__list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 800; }

/* ===== TABLE ===== */
.tableWrap { overflow: auto; border: 1px solid var(--border); border-radius: var(--radius2); background: var(--surface); }
table { width: 100%; border-collapse: collapse; min-width: 680px; }
th, td { padding: 15px 18px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: middle; }
th { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 700; background: var(--bg2); }
tr:last-child td { border-bottom: 0; }
td strong { font-weight: 800; color: var(--text); }

/* ===== CTA STRIP ===== */
.ctaStrip {
  border: 1px solid var(--border); background: var(--surface);
  border-radius: var(--radius2); padding: 36px 40px; margin: 32px 0;
  border-left: 4px solid var(--accent);
}
.ctaStrip__inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.ctaStrip h3 { margin: 0 0 6px; font-size: 22px; font-weight: 900; letter-spacing: -0.5px; }

/* ===== STEPS ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius2); padding: 28px; transition: border-color 0.2s, transform 0.2s; }
.step:hover { border-color: var(--accent); transform: translateY(-2px); }
.step__num { width: 40px; height: 40px; border-radius: var(--radius); display: inline-flex; align-items: center; justify-content: center; background: var(--accent); font-weight: 900; color: #fff; font-size: 16px; }
.step h3 { margin: 14px 0 8px; font-size: 17px; font-weight: 800; }
.step p { margin: 0; color: var(--muted); font-weight: 500; font-size: 14px; line-height: 1.65; }

/* ===== QUOTES ===== */
.quote { border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius2); padding: 24px; transition: border-color 0.2s, transform 0.2s; }
.quote:hover { border-color: var(--border2); transform: translateY(-2px); }
.quote__stars { color: var(--amber); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.quote p { margin: 0 0 14px; font-weight: 500; font-size: 15px; color: var(--muted2); line-height: 1.65; }
.quote__meta { color: var(--muted); font-weight: 600; font-size: 13px; }
.quote__name { font-weight: 800; color: var(--text); }

/* ===== FAQ ===== */
.faq { display: grid; gap: 8px; }
.faq details { border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius); padding: 18px 22px; transition: border-color 0.2s; }
.faq details[open] { border-color: var(--accent); }
.faq summary { cursor: pointer; font-weight: 700; font-size: 15px; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--text); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--accent); flex-shrink: 0; transition: transform 0.2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); font-weight: 500; font-size: 14px; margin: 14px 0 0; line-height: 1.75; }
.faq a { color: var(--accent); font-weight: 700; }

/* ===== CALLOUTS ===== */
.callout { border: 1px solid rgba(229,9,20,0.20); background: rgba(229,9,20,0.06); border-radius: var(--radius); padding: 16px 18px; font-size: 14px; color: var(--muted2); font-weight: 600; }
.callout strong { font-weight: 800; color: var(--text); }
.callout--green { border-color: rgba(70,211,105,0.24); background: rgba(70,211,105,0.07); color: #46D369; }
.callout--amber { border-color: rgba(245,197,24,0.22); background: rgba(245,197,24,0.07); color: var(--amber); }
.callout--red   { border-color: rgba(229,9,20,0.22);   background: rgba(229,9,20,0.07);   color: var(--red); }
[data-theme="light"] .callout--green { color: #15803D; }
[data-theme="light"] .callout--amber { color: #92400E; }
[data-theme="light"] .callout--red   { color: #991B1B; }

/* ===== WHATSAPP WIDGET (contact page) ===== */
.whatsCard { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 16px; border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius2); padding: 24px; }
.whatsSelection { font-weight: 800; font-size: 18px; margin-top: 8px; color: var(--accent); }
.copyStatus { margin-top: 10px; color: var(--green); font-weight: 600; font-size: 13px; }

/* ===== ICON FEATURE CARDS ===== */
.iconCard { border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius2); padding: 26px; transition: border-color 0.2s, transform 0.2s; }
.iconCard:hover { border-color: var(--accent); transform: translateY(-2px); }
.iconCard__icon { width: 46px; height: 46px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; background: rgba(229,9,20,0.10); border: 1px solid rgba(229,9,20,0.18); font-size: 20px; margin-bottom: 14px; }
.iconCard h3 { margin-bottom: 8px; font-size: 16px; font-weight: 800; }
.iconCard p { color: var(--muted); font-size: 14px; font-weight: 500; line-height: 1.65; }

/* ===== CHANNEL CARDS ===== */
.channelCard { border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius2); padding: 22px; transition: border-color 0.2s, transform 0.2s; }
.channelCard:hover { border-color: var(--accent); transform: translateY(-2px); }
.channelCard__icon { font-size: 28px; margin-bottom: 10px; }
.channelCard__name { font-weight: 800; font-size: 16px; margin-bottom: 4px; }
.channelCard__meta { color: var(--muted); font-size: 13px; font-weight: 600; margin-bottom: 14px; }
.channelCard__list { display: grid; gap: 6px; }
.channelCard__list li { color: var(--muted); font-size: 13px; font-weight: 600; padding-left: 16px; position: relative; }
.channelCard__list li::before { content: '›'; position: absolute; left: 2px; color: var(--accent); font-weight: 700; }

/* ===== STATUS ===== */
.statusBadge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: 2px; font-weight: 700; font-size: 14px; }
.statusBadge--up   { background: rgba(70,211,105,0.12); border: 1px solid rgba(70,211,105,0.26); color: #46D369; }
.statusBadge--down { background: rgba(229,9,20,0.12);   border: 1px solid rgba(229,9,20,0.26);   color: var(--red); }
.statusDot { width: 8px; height: 8px; border-radius: 50%; background: #46D369; box-shadow: 0 0 8px rgba(70,211,105,0.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(.8)} }
.statusRow { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--border); gap: 12px; }
.statusRow:last-child { border-bottom: 0; }
.statusRow__label { font-weight: 700; font-size: 15px; }
.statusRow__sub { color: var(--muted); font-size: 13px; margin-top: 3px; }

/* ===== LEGAL ===== */
.legalContent { max-width: 760px; }
.legalContent h2 { font-size: 20px; font-weight: 800; margin: 36px 0 12px; color: var(--accent); }
.legalContent h3 { font-size: 16px; font-weight: 700; margin: 24px 0 8px; }
.legalContent p { color: var(--muted); font-size: 14px; line-height: 1.85; margin-bottom: 14px; font-weight: 500; }
.legalContent ul { margin: 10px 0 18px; padding-left: 20px; display: grid; gap: 8px; list-style: disc; }
.legalContent ul li { color: var(--muted); font-size: 14px; line-height: 1.65; font-weight: 500; }
.legalContent a { color: var(--accent); text-decoration: underline; }
.legalContent .lastUpdated { color: var(--muted); font-size: 13px; font-weight: 600; margin-bottom: 28px; }

/* ===== COOKIE TOGGLES ===== */
.cookieToggle { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--border); gap: 16px; }
.cookieToggle:last-child { border-bottom: 0; }
.cookieToggle__info { flex: 1; }
.cookieToggle__title { font-weight: 800; font-size: 15px; margin-bottom: 4px; }
.cookieToggle__desc { color: var(--muted); font-size: 13px; font-weight: 500; line-height: 1.6; }
input[type="checkbox"] { width: 44px; height: 26px; appearance: none; -webkit-appearance: none; border-radius: 999px; background: rgba(255,255,255,0.10); border: 1px solid var(--border2); cursor: pointer; position: relative; transition: background 0.2s; flex-shrink: 0; }
input[type="checkbox"]::before { content: ''; position: absolute; width: 20px; height: 20px; border-radius: 50%; background: var(--muted); top: 2px; left: 2px; transition: transform 0.2s, background 0.2s; }
input[type="checkbox"]:checked { background: var(--accent); border-color: transparent; }
input[type="checkbox"]:checked::before { transform: translateX(18px); background: #fff; }
input[type="checkbox"]:disabled { opacity: 0.40; cursor: not-allowed; }
[data-theme="light"] input[type="checkbox"] { background: rgba(0,0,0,0.08); }

/* ===== FOOTER ===== */
.footer { padding: 52px 0 28px; background: #0A0A0A; border-top: 1px solid rgba(255,255,255,0.06); margin-top: 20px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 0.7fr 0.7fr 0.7fr; gap: 36px; align-items: start; }
.footer__brand { font-weight: 900; font-size: 20px; margin-bottom: 12px; color: #fff; }
.footer__brand span { color: var(--accent); }
.footer__desc { color: rgba(255,255,255,0.40); font-size: 13px; font-weight: 500; line-height: 1.75; margin-bottom: 18px; }
.footer__colTitle { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.30); margin-bottom: 16px; }
.footer__links { display: grid; gap: 10px; }
.footer__links a { color: rgba(255,255,255,0.40); font-weight: 600; font-size: 13px; transition: color 0.15s; }
.footer__links a:hover { color: #fff; }
.footer__bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__bottom .muted { color: rgba(255,255,255,0.30); }
.footer__bottom a { color: rgba(255,255,255,0.30); transition: color 0.15s; }
.footer__bottom a:hover { color: rgba(255,255,255,0.75); }

/* ===== WA FLOAT ===== */
.waFloat { position: fixed; right: 20px; bottom: 20px; z-index: 999; display: flex; align-items: center; gap: 8px; padding: 13px 20px; border-radius: 999px; background: var(--accent); color: #fff; font-weight: 800; font-size: 14px; box-shadow: 0 6px 28px rgba(229,9,20,0.48); border: 0; transition: background 0.15s, transform 0.15s; text-decoration: none; }
.waFloat:hover { background: var(--accent2); transform: translateY(-2px); color: #fff; }

/* ===== SUPPORT CARDS ===== */
.supportCard { border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius2); padding: 24px; }
.supportCard h3 { font-size: 16px; font-weight: 800; margin-bottom: 10px; }
.supportCard ul { display: grid; gap: 8px; }
.supportCard ul li { color: var(--muted); font-size: 14px; padding-left: 18px; position: relative; }
.supportCard ul li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-size: 12px; }

/* ===== SKIP NAV ===== */
.skipNav { position: absolute; left: -9999px; top: 0; z-index: 9999; padding: 12px 24px; background: var(--accent); color: #fff; font-weight: 800; font-size: 14px; border-radius: 0 0 3px 0; text-decoration: none; }
.skipNav:focus { left: 0; }

/* ===== FOCUS ===== */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
.btn:focus-visible { outline-offset: 4px; }
input[type="range"]:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

/* ===== COOKIE BANNER ===== */
.cookieBanner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 998; background: rgba(14,14,14,0.98); backdrop-filter: blur(10px); border-top: 1px solid var(--border); padding: 18px 0; transition: transform 0.3s; }
[data-theme="light"] .cookieBanner { background: rgba(244,244,244,0.98); }
.cookieBanner[hidden] { transform: translateY(100%); display: block; visibility: hidden; }
.cookieBanner__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cookieBanner__text { color: var(--muted); font-size: 13px; font-weight: 500; max-width: 60ch; line-height: 1.6; }
.cookieBanner__text a { color: var(--accent); font-weight: 700; text-decoration: underline; }
.cookieBanner__actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ===== MISC / COMPATIBILITY ===== */
.autoGrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-top: 40px; }
.autoGrid--wide { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.autoGrid--narrow { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.stepNum { font-size: 32px; font-weight: 700; color: var(--accent); margin-bottom: 12px; }
.faqAnswer { padding: 16px; color: var(--muted); }
.faqAnswer a { color: var(--accent); font-weight: 700; }
.ratingBanner { background: rgba(229,9,20,0.07); border: 1px solid rgba(229,9,20,0.18); border-radius: var(--radius); padding: 24px; margin: 40px 0; text-align: center; }
.ratingBanner__score { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.ratingBanner__sub { margin: 0; color: var(--muted); font-size: 14px; }
.mt-32{margin-top:32px} .mt-40{margin-top:40px} .mt-48{margin-top:48px}
.textCenter{text-align:center} .justifyCenter{justify-content:center}
.featuredBadge { position: absolute; top: 0; right: 0; background: var(--accent); color: #fff; padding: 5px 12px; font-size: 12px; font-weight: 600; border-radius: 0 var(--radius2) 0 var(--radius); }
.plan__features { margin: 22px 0; display: grid; gap: 9px; list-style: none; }
.plan__features li { color: var(--muted); font-weight: 500; font-size: 14px; padding-left: 20px; position: relative; }
.plan__features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.requirementsList { margin-top: 16px; list-style: none; padding: 0; }
.requirementsList li { padding: 8px 0; }
.footer__bottomLinks { display: flex; gap: 14px; flex-wrap: wrap; }
.pricingActions { display: flex; gap: 8px; flex-wrap: wrap; }
.priceCol { font-weight: 800; font-size: 15px; color: var(--text); }
.perMonth { font-weight: 600; font-size: 12px; color: var(--muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 980px) {
  .nfRow__inner { grid-template-columns: 1fr; gap: 36px; }
  .nfRow--reverse .nfRow__inner { direction: ltr; }
  .hero__grid { grid-template-columns: 1fr; }
  .grid3 { grid-template-columns: 1fr; }
  .grid4 { grid-template-columns: repeat(2, 1fr); }
  .grid2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .whatsCard { grid-template-columns: 1fr; }
  .nav { display: none; }
  .navToggle { display: inline-flex; }
  .mobileNav { display: block; }
  .mobileNav[hidden] { display: none; }
  .section, .nfRow { padding: 56px 0; }
  .nfHero { padding: 72px 0 60px; }
  .nfHero h1 { font-size: 38px; }
  .nfHero__stat { padding: 0 22px; }
  .ctaStrip { padding: 22px 24px; }
  .tableWrap { border: 0; background: none; overflow: visible; }
  table, thead, tbody, th, td, tr { display: block; }
  thead { display: none; }
  tr { border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius); padding: 18px; margin-bottom: 12px; }
  td { padding: 5px 0; border: 0; }
  td:first-child { font-weight: 800; font-size: 17px; margin-bottom: 8px; }
  td:empty { display: none; }
  td .pricingActions { margin-top: 10px; }
  .nfPlanGrid { grid-template-columns: 1fr; max-width: 400px; }
}
@media (max-width: 640px) {
  .container { width: calc(100% - 28px); }
  .nfHero__cta, .ctaRow { flex-direction: column; align-items: stretch; }
  .nfHero__cta .btn, .ctaRow .btn { width: 100%; justify-content: center; }
  .nfHero h1 { font-size: 34px; letter-spacing: -1.5px; }
  .nfHero__stats { gap: 0; }
  .nfHero__stat { padding: 0 16px; }
  h1 { font-size: 32px; }
  .priceMain { font-size: 44px; }
  .waFloat { right: 14px; bottom: 76px; padding: 11px 17px; font-size: 13px; }
  .grid4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer { padding: 40px 0 24px; }
  .cookieBanner__inner { flex-direction: column; text-align: center; }
  .nfVisual__grid { grid-template-columns: repeat(2, 1fr); }
}
