/* ==========================================================================
   IPTV Netherland — Design System
   Dutch-flag inspired modern dark theme
   ========================================================================== */

:root {
  /* Brand — Dutch flag */
  --nl-blue: #21468b;
  --nl-blue-600: #1b3a73;
  --nl-blue-300: #4f73c4;
  --nl-red: #ae1c28;
  --nl-red-bright: #e23744;
  --accent: #ff6a1c;          /* orange logo accent */
  --accent-2: #ffb02e;

  /* Surfaces */
  --bg: #070b16;
  --bg-2: #0b1222;
  --surface: #111a30;
  --surface-2: #16213c;
  --surface-3: #1d2c4d;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  /* Text */
  --text: #eef2fb;
  --text-muted: #9fb0cf;
  --text-dim: #6c7c9e;

  /* Effects */
  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 12px;
  --shadow-card: 0 18px 40px -18px rgba(0, 0, 0, 0.7);
  --shadow-corner: 0 0 0 1px var(--border), 22px 22px 60px -30px rgba(33, 70, 139, 0.9),
    -22px -22px 60px -30px rgba(174, 28, 40, 0.5);
  --glow-blue: 0 0 40px -8px rgba(79, 115, 196, 0.55);
  --glow-accent: 0 0 36px -6px rgba(255, 106, 28, 0.6);
  --grad-brand: linear-gradient(135deg, var(--nl-blue) 0%, var(--nl-red) 100%);
  --grad-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  --grad-hero: radial-gradient(1200px 600px at 12% -10%, rgba(33, 70, 139, 0.45), transparent 60%),
    radial-gradient(1000px 500px at 100% 0%, rgba(174, 28, 40, 0.32), transparent 55%),
    radial-gradient(900px 600px at 50% 120%, rgba(255, 106, 28, 0.18), transparent 60%);
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; width: 100%; }
body {
  font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; }
section { position: relative; }

/* Layout ----------------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 92px 0; overflow-x: clip; }
.hero, .cta-banner { overflow-x: clip; }
.section--tight { padding: 64px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-2);
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255, 176, 46, 0.08);
  border: 1px solid rgba(255, 176, 46, 0.22);
}
.section-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin: 18px 0 14px; }
.section-head p { color: var(--text-muted); font-size: 1.05rem; }
.text-grad {
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Buttons ---------------------------------------------------------------- */
.btn {
  --btn-bg: var(--surface-2);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 0.98rem; line-height: 1;
  padding: 15px 26px; border-radius: 14px; border: 1px solid var(--border-strong);
  background: var(--btn-bg); color: var(--text); cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  position: relative; white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn--primary {
  background: var(--grad-accent); border: none; color: #1a1205;
  box-shadow: var(--glow-accent);
}
.btn--primary:hover { box-shadow: 0 0 48px -4px rgba(255, 106, 28, 0.8); }
.btn--brand {
  background: var(--grad-brand); border: none; color: #fff; box-shadow: var(--glow-blue);
}
.btn--whatsapp { background: #25d366; border: none; color: #04340f; }
.btn--whatsapp:hover { box-shadow: 0 0 40px -6px rgba(37, 211, 102, 0.7); }
.btn--ghost { background: rgba(255, 255, 255, 0.04); }
.btn--lg { padding: 18px 34px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* Decorative spinners (with shadows on corners) -------------------------- */
.spinner-deco {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  background: conic-gradient(from 0deg, transparent, var(--nl-blue), transparent 40%, var(--nl-red), transparent 75%, var(--accent), transparent);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 14px), #000 calc(100% - 13px));
          mask: radial-gradient(farthest-side, transparent calc(100% - 14px), #000 calc(100% - 13px));
  filter: drop-shadow(16px 16px 26px rgba(33, 70, 139, 0.55))
          drop-shadow(-16px -16px 26px rgba(174, 28, 40, 0.4));
  opacity: 0.55;
  animation: spin 16s linear infinite;
}
.spinner-deco--sm { width: 130px; height: 130px; animation-duration: 11s; }
.spinner-deco--md { width: 230px; height: 230px; }
.spinner-deco--lg { width: 360px; height: 360px; animation-duration: 26s; }
.spinner-deco--rev { animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .spinner-deco, .loader__ring { animation: none !important; }
}

/* Page loader ------------------------------------------------------------ */
.loader {
  position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center;
  background: var(--bg); transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader__ring {
  width: 78px; height: 78px; border-radius: 50%;
  background: conic-gradient(from 90deg, var(--nl-blue), var(--nl-red), var(--accent), var(--nl-blue));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 9px), #000 calc(100% - 8px));
          mask: radial-gradient(farthest-side, transparent calc(100% - 9px), #000 calc(100% - 8px));
  box-shadow: 14px 14px 30px -10px rgba(33, 70, 139, 0.8), -14px -14px 30px -10px rgba(174, 28, 40, 0.6);
  animation: spin 0.9s linear infinite;
}

/* Navbar ----------------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 18px 0;
}
.nav.is-stuck {
  background: rgba(7, 11, 22, 0.82); backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 1px 0 var(--border); padding: 10px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.18rem; }
.brand img { width: 40px; height: 40px; filter: drop-shadow(0 6px 14px rgba(33, 70, 139, 0.6)); }
.brand span b { color: var(--accent-2); }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { color: var(--text-muted); font-weight: 600; font-size: 0.96rem; transition: color 0.2s; }
.nav__links a:hover { color: var(--text); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }

/* Hero ------------------------------------------------------------------- */
.hero { padding: 160px 0 90px; background: var(--grad-hero); overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center;
}
.hero__badge { margin-bottom: 22px; }
.hero h1 { font-size: clamp(2.4rem, 5.6vw, 4.1rem); margin-bottom: 22px; }
.hero h1 em { font-style: normal; background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { font-size: 1.18rem; color: var(--text-muted); max-width: 560px; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__points { display: flex; flex-wrap: wrap; gap: 18px 28px; }
.hero__points li { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-weight: 600; font-size: 0.95rem; }
.hero__points i { color: #38d39f; }
.hero__email {
  margin-top: 26px; display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.96rem; color: var(--text-muted);
}
.hero__email a { color: var(--accent-2); font-weight: 700; }

/* Hero visual */
.hero__visual { position: relative; min-height: 440px; display: grid; place-items: center; }
.hero__device {
  position: relative; z-index: 3; width: 100%; max-width: 460px;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-corner);
  background: var(--surface);
}
.hero__device-bar { display: flex; gap: 7px; padding: 12px 16px; background: var(--bg-2); border-bottom: 1px solid var(--border); }
.hero__device-bar span { width: 11px; height: 11px; border-radius: 50%; background: var(--surface-3); }
.hero__device-bar span:nth-child(1) { background: var(--nl-red-bright); }
.hero__device-bar span:nth-child(2) { background: var(--accent-2); }
.hero__device-bar span:nth-child(3) { background: #38d39f; }
.hero__poster-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 14px; }
.hero__poster-grid img { aspect-ratio: 2/3; object-fit: cover; border-radius: 8px; width: 100%; }
.hero__visual .spinner-deco--lg { top: -40px; right: -60px; }
.hero__visual .spinner-deco--sm { bottom: -20px; left: -30px; }
.hero__float {
  position: absolute; z-index: 4; background: rgba(11, 18, 34, 0.9);
  border: 1px solid var(--border-strong); border-radius: 14px; padding: 12px 16px;
  display: flex; align-items: center; gap: 12px; backdrop-filter: blur(8px);
  box-shadow: var(--shadow-card); font-size: 0.86rem;
}
.hero__float i { font-size: 1.4rem; }
.hero__float--live { top: 6%; left: -6%; }
.hero__float--live i { color: var(--nl-red-bright); }
.hero__float--4k { bottom: 8%; right: -6%; }
.hero__float--4k i { color: var(--accent-2); }
.hero__float b { display: block; color: var(--text); font-size: 0.95rem; }
.hero__float small { color: var(--text-dim); }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--nl-red-bright); box-shadow: 0 0 0 0 rgba(226, 55, 68, 0.7); animation: pulse 1.6s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(226, 55, 68, 0); } 100% { box-shadow: 0 0 0 0 rgba(226, 55, 68, 0); } }

/* Hero modern showcase (no images) */
.hero__showcase {
  position: relative; z-index: 3; width: 100%; max-width: 420px;
  padding: 46px 34px; text-align: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(22, 33, 60, 0.92), rgba(11, 18, 34, 0.94));
  border: 1px solid var(--border-strong); box-shadow: var(--shadow-corner);
  backdrop-filter: blur(10px);
}
.hero__live { display: inline-flex; align-items: center; gap: 9px; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 28px; }
.hero__play {
  width: 98px; height: 98px; margin: 0 auto 28px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; background: var(--grad-brand); position: relative;
  box-shadow: var(--glow-blue), 14px 14px 30px -12px rgba(33, 70, 139, 0.9), -12px -12px 26px -14px rgba(174, 28, 40, 0.6);
}
.hero__play svg { width: 34px; height: 34px; fill: #fff; margin-left: 5px; }
.hero__play::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(255, 255, 255, 0.35); animation: ringPulse 2.2s ease-out infinite; }
@keyframes ringPulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.45); opacity: 0; } }
.hero__showcase h3 { font-size: 1.75rem; margin-bottom: 8px; }
.hero__showcase h3 span { background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__showcase > p { color: var(--text-muted); font-size: 0.98rem; margin-bottom: 24px; }
.hero__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; }
.hero__chips span { padding: 8px 15px; border-radius: 999px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border); font-size: 0.82rem; font-weight: 700; color: var(--text-muted); }
@media (prefers-reduced-motion: reduce) { .hero__play::after { animation: none; } }

/* Stats bar -------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat {
  text-align: center; padding: 26px 16px; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border);
}
.stat b { display: block; font-size: clamp(1.8rem, 4vw, 2.6rem); background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--text-muted); font-size: 0.92rem; font-weight: 600; }

/* Marquee logos ---------------------------------------------------------- */
.logos-strip { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.logos-strip p { text-align: center; color: var(--text-dim); font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 26px; font-weight: 700; }
.marquee { display: flex; overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; flex: 0 0 auto; gap: 54px; align-items: center; padding-right: 54px; animation: marquee 38s linear infinite; }
.logos-strip .marquee__track img { height: 34px; width: auto; opacity: 0.7; filter: brightness(0) invert(1); transition: opacity 0.3s; }
.logos-strip .marquee__track img:hover { opacity: 1; }
@keyframes marquee { to { transform: translateX(-50%); } }
/* Continuous content strips (movies & reviews) — always moving, no controls */
.marquee--posters .marquee__track { gap: 18px; padding-right: 18px; align-items: center; animation-duration: 64s; }
.marquee--posters .poster { flex: 0 0 auto; width: 172px; }
.marquee--reviews .marquee__track { gap: 18px; padding-right: 18px; align-items: stretch; animation-duration: 58s; }
.marquee--reviews .quote { flex: 0 0 auto; width: min(360px, 84vw); }
.marquee--reviews { padding: 16px 0 6px; }

/* Cards / Features ------------------------------------------------------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative; background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
/* corner shadow glow on cards */
.card::before {
  content: ""; position: absolute; width: 140px; height: 140px; border-radius: 50%;
  top: -50px; right: -50px; background: radial-gradient(circle, rgba(255,106,28,0.35), transparent 70%);
  opacity: 0; transition: opacity 0.4s ease; filter: blur(6px);
}
.card:hover { transform: translateY(-7px); border-color: var(--border-strong); box-shadow: var(--shadow-card); }
.card:hover::before { opacity: 1; }
.card__icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.5rem; color: #fff; margin-bottom: 20px;
  background: var(--grad-brand); box-shadow: 10px 10px 24px -12px rgba(33,70,139,0.9), -8px -8px 20px -12px rgba(174,28,40,0.6);
}
.card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 0.97rem; }

/* Content grids (channels / streaming / sports) -------------------------- */
.tile-grid { display: grid; gap: 14px; }
.grid-label {
  display: flex; align-items: center; gap: 12px; font-size: 0.82rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted);
  margin: 4px 0 18px;
}
.grid-label i { color: var(--accent-2); }
.grid-label:not(:first-child) { margin-top: 42px; }
.logo-tile {
  aspect-ratio: 16/11; display: grid; place-items: center; padding: 12px;
  background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.08); border-radius: 12px;
  box-shadow: 0 8px 18px -12px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.logo-tile img { max-height: 32px; max-width: 78%; width: auto; object-fit: contain; }
.logo-tile:hover { transform: translateY(-4px); box-shadow: 0 16px 30px -12px rgba(0, 0, 0, 0.75); }
.grid--channels { grid-template-columns: repeat(8, 1fr); }
.grid--streaming { grid-template-columns: repeat(7, 1fr); }

/* Poster grid ------------------------------------------------------------ */
.poster-grid { grid-template-columns: repeat(6, 1fr); }
.poster {
  position: relative; aspect-ratio: 2/3; border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid var(--border); transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.poster img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.poster::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(7,11,22,0.92));
  opacity: 0; transition: opacity 0.35s;
}
.poster__play {
  position: absolute; inset: 0; margin: auto; width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; background: var(--grad-accent); color: #1a1205; font-size: 1.1rem;
  opacity: 0; transform: scale(0.6); transition: opacity 0.35s, transform 0.35s var(--ease);
  box-shadow: var(--glow-accent); z-index: 2;
}
.poster:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.poster:hover img { transform: scale(1.08); }
.poster:hover::after { opacity: 1; }
.poster:hover .poster__play { opacity: 1; transform: scale(1); }

/* Tabs ------------------------------------------------------------------- */
.tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.tab {
  padding: 11px 22px; border-radius: 999px; border: 1px solid var(--border-strong);
  background: var(--surface); color: var(--text-muted); font-weight: 700; font-size: 0.92rem; cursor: pointer;
  transition: all 0.25s var(--ease);
}
.tab.is-active { background: var(--grad-brand); color: #fff; border-color: transparent; box-shadow: var(--glow-blue); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fadeUp 0.5s var(--ease); }

/* Pricing ---------------------------------------------------------------- */
.pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; max-width: 980px; margin-left: auto; margin-right: auto; }
.price-card {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 26px;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); border-color: var(--border-strong); }
.price-card--featured {
  border-color: transparent;
  background: linear-gradient(180deg, var(--surface-2), var(--bg-2)) padding-box,
    var(--grad-accent) border-box;
  border: 2px solid transparent;
  box-shadow: var(--glow-accent);
}
.price-card__tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad-accent); color: #1a1205; font-weight: 800; font-size: 0.74rem;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px;
  white-space: nowrap;
}
.price-card h3 { font-size: 1.18rem; margin-bottom: 6px; }
.price-card__dur { color: var(--text-dim); font-size: 0.88rem; margin-bottom: 18px; }
.price-card__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.price-card__price b { font-size: 2.7rem; font-weight: 800; letter-spacing: -0.03em; }
.price-card__price .cur { font-size: 1.3rem; color: var(--text-muted); font-weight: 700; }
.price-card__per { color: var(--text-dim); font-size: 0.86rem; margin-bottom: 6px; }
.price-card__save { display: inline-block; color: #38d39f; font-size: 0.84rem; font-weight: 700; margin-bottom: 22px; }
.price-card ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; flex: 1; }
.price-card li { display: flex; align-items: flex-start; gap: 11px; font-size: 0.94rem; color: var(--text-muted); }
.price-card li i { color: #38d39f; margin-top: 3px; font-size: 0.9rem; }
.price-note { text-align: center; margin-top: 30px; color: var(--text-dim); font-size: 0.92rem; }
.price-note a { color: var(--accent-2); font-weight: 700; }

/* Trust / payments ------------------------------------------------------- */
.pay-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 24px; }
.pay-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 10px 18px; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--border); font-weight: 700; font-size: 0.9rem; color: var(--text-muted);
}
.pay-badge i { font-size: 1.15rem; color: var(--accent-2); }

/* Steps ------------------------------------------------------------------ */
.steps { grid-template-columns: repeat(3, 1fr); counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step__num {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  font-weight: 800; font-size: 1.3rem; margin-bottom: 18px; color: #fff;
  background: var(--grad-brand); box-shadow: 10px 10px 24px -12px rgba(33,70,139,0.9);
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 0.96rem; }

/* Testimonials ----------------------------------------------------------- */
.quote { display: flex; flex-direction: column; gap: 16px; }
.quote__stars { color: var(--accent-2); display: flex; gap: 3px; }
.quote p { color: var(--text); font-size: 1rem; }
.quote__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-brand); display: grid; place-items: center; font-weight: 800; color: #fff; }
.quote__who b { display: block; font-size: 0.95rem; }
.quote__who span { color: var(--text-dim); font-size: 0.84rem; }

/* FAQ -------------------------------------------------------------------- */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color 0.3s; }
.faq__item.is-open { border-color: var(--border-strong); }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; color: var(--text); cursor: pointer;
  padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 1.04rem; font-weight: 700; font-family: inherit;
}
.faq__q i { color: var(--accent-2); transition: transform 0.35s var(--ease); flex-shrink: 0; }
.faq__item.is-open .faq__q i { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq__a p { padding: 0 24px 24px; color: var(--text-muted); font-size: 0.98rem; }

/* CTA banner ------------------------------------------------------------- */
.cta-banner { position: relative; overflow: hidden; }
.cta-box {
  position: relative; text-align: center; padding: 64px 32px; border-radius: var(--radius-lg);
  background: var(--grad-hero), var(--surface);
  border: 1px solid var(--border-strong); overflow: hidden;
}
.cta-box h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 16px; }
.cta-box p { color: var(--text-muted); font-size: 1.1rem; max-width: 580px; margin: 0 auto 28px; }
.cta-box .hero__actions { justify-content: center; }
.cta-box .spinner-deco--md { top: -60px; left: -40px; }
.cta-box .spinner-deco--sm { bottom: -30px; right: -10px; }

/* Footer ----------------------------------------------------------------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 64px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 44px; }
.footer__brand p { color: var(--text-muted); font-size: 0.94rem; margin: 16px 0; max-width: 320px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--border); color: var(--text-muted); transition: all 0.25s; }
.footer__social a:hover { color: #fff; background: var(--grad-brand); transform: translateY(-3px); }
.footer h4 { font-size: 0.96rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer ul { display: flex; flex-direction: column; gap: 11px; }
.footer ul a { color: var(--text-muted); font-size: 0.93rem; transition: color 0.2s; }
.footer ul a:hover { color: var(--accent-2); }
.footer__contact li { display: flex; align-items: center; gap: 11px; color: var(--text-muted); font-size: 0.93rem; }
.footer__contact i { color: var(--accent-2); width: 18px; }
.footer__bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; color: var(--text-dim); font-size: 0.85rem; }
.footer__bottom a { color: var(--text-dim); }

/* Scroll reveal ---------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* Floating WhatsApp (glowing, self-contained — no icon-font dependency) --- */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 950;
  display: inline-flex; align-items: center; min-width: 62px; height: 62px;
  border-radius: 999px; background: #25d366; color: #ffffff; overflow: hidden;
  font-weight: 800; font-size: 1rem; white-space: nowrap; text-decoration: none;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 12px 30px -6px rgba(37, 211, 102, 0.8);
  animation: fabGlow 2.2s ease-in-out infinite;
  transition: transform 0.25s var(--ease);
}
.wa-float__icon { display: grid; place-items: center; width: 62px; height: 62px; flex: 0 0 auto; }
.wa-float__icon svg { width: 30px; height: 30px; fill: currentColor; }
.wa-float__label { max-width: 0; opacity: 0; overflow: hidden; transition: max-width 0.35s var(--ease), opacity 0.3s, padding 0.3s; }
.wa-float:hover { transform: translateY(-3px) scale(1.04); }
.wa-float:hover .wa-float__label { max-width: 220px; opacity: 1; padding-right: 22px; }
@keyframes fabGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 12px 30px -6px rgba(37, 211, 102, 0.75); }
  50% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 12px 36px -4px rgba(37, 211, 102, 0.95); }
}
@media (prefers-reduced-motion: reduce) { .wa-float { animation: none; } }

/* WhatsApp inline-svg icon used in contact card & footer (kit-independent) */
.wa-svg { width: 1em; height: 1em; fill: currentColor; vertical-align: -0.125em; }

/* Carousels ("spinners") ------------------------------------------------- */
.carousel { position: relative; }
.carousel__viewport {
  overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
  -webkit-mask: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
          mask: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  padding: 16px 4px 22px;
}
.carousel__viewport::-webkit-scrollbar { display: none; }
.carousel__track { display: flex; gap: 18px; }
.carousel__track > * { flex: 0 0 auto; scroll-snap-align: start; }
.carousel__btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 50px; height: 50px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; font-size: 1.05rem; color: var(--text);
  background: rgba(17, 26, 48, 0.9); border: 1px solid var(--border-strong);
  backdrop-filter: blur(8px); box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s;
}
.carousel__btn:hover { background: var(--grad-accent); color: #1a1205; transform: translateY(-50%) scale(1.08); }
.carousel__btn--prev { left: -8px; }
.carousel__btn--next { right: -8px; }
.carousel__dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.carousel__dots button {
  width: 9px; height: 9px; border-radius: 50%; border: none; cursor: pointer; padding: 0;
  background: var(--surface-3); transition: background 0.25s, transform 0.25s;
}
.carousel__dots button.is-active { background: var(--grad-accent); transform: scale(1.25); }

/* posters inside carousel */
.carousel--posters .poster { width: 175px; }
/* reviews inside carousel */
.carousel--reviews .quote { width: min(380px, 82vw); }
/* decorative corner spinners that wrap a carousel */
.carousel-wrap { position: relative; }
.carousel-wrap > .spinner-deco--md { top: -54px; right: -70px; }
.carousel-wrap > .spinner-deco--sm { bottom: -30px; left: -40px; }
@media (max-width: 560px) {
  .carousel--posters .poster { width: 140px; }
}

/* Responsive ------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid--channels { grid-template-columns: repeat(6, 1fr); }
  .grid--streaming { grid-template-columns: repeat(5, 1fr); }
  .poster-grid { grid-template-columns: repeat(4, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); max-width: 100%; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav__links, .nav__cta .btn--brand { display: none; }
  .nav__toggle { display: block; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-2); padding: 24px; gap: 18px; border-bottom: 1px solid var(--border);
  }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { order: 0; }
  .hero__visual { order: 1; min-height: 360px; }   /* text first, showcase below on mobile */
  .grid--3, .grid--4, .steps, .grid--2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .spinner-deco { display: none; }            /* decorative — avoid mobile overflow */
  .hero { padding: 124px 0 64px; }
  .hero__visual { display: block; min-height: 0; }
  .hero__showcase { width: 100%; max-width: 100%; margin: 0 auto; padding: 34px 22px; }
  .hero__chips span { font-size: 0.78rem; padding: 7px 12px; }
  .section { padding: 60px 0; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 430px; }
  .grid--channels { grid-template-columns: repeat(4, 1fr); }
  .grid--streaming { grid-template-columns: repeat(4, 1fr); }
  .hero__email, .footer__contact li, .price-note { overflow-wrap: anywhere; }
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.5rem); }
  .section-head h2 { font-size: clamp(1.55rem, 6.4vw, 2rem); }
  .section-head h2, .hero h1, .hero__showcase h3, .cta-box h2, .card h3, .price-card h3 { overflow-wrap: break-word; }
  .section-head p, .hero__sub { overflow-wrap: break-word; }
  .wa-float__label { display: none; }              /* keep a clean tap circle on mobile */
}
@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .grid--channels { grid-template-columns: repeat(3, 1fr); }
  .grid--streaming { grid-template-columns: repeat(3, 1fr); }
  .poster-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero__float { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__points { flex-direction: column; gap: 12px; align-items: flex-start; }
  .hero__email { flex-wrap: wrap; }
  .hero__email a { overflow-wrap: anywhere; }
}

/* ==========================================================================
   Blog / Articles
   ========================================================================== */
.article-wrap { padding: 132px 0 80px; background: var(--grad-hero); }
.breadcrumb { font-size: 0.86rem; color: var(--text-dim); margin-bottom: 22px; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent-2); }
.article-head { max-width: 820px; margin: 0 auto; text-align: center; }
.article-head .eyebrow { margin-bottom: 18px; }
.article-head h1 { font-size: clamp(1.9rem, 4.8vw, 3rem); margin-bottom: 18px; }
.article-head p.lead { color: var(--text-muted); font-size: 1.12rem; max-width: 680px; margin: 0 auto; }
.article-meta { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 20px; margin-top: 22px; color: var(--text-dim); font-size: 0.9rem; }
.article-meta span { display: inline-flex; align-items: center; gap: 8px; }
.article-meta i { color: var(--accent-2); }

.prose { max-width: 760px; margin: 0 auto; padding: 56px 0 0; font-size: 1.06rem; color: var(--text-muted); }
.prose > p:first-of-type { font-size: 1.14rem; color: var(--text); }
.prose h2 { color: var(--text); font-size: clamp(1.45rem, 3.5vw, 1.85rem); margin: 48px 0 16px; scroll-margin-top: 90px; }
.prose h3 { color: var(--text); font-size: 1.25rem; margin: 32px 0 12px; }
.prose p { margin-bottom: 18px; }
.prose a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--accent); }
.prose strong { color: var(--text); font-weight: 700; }
.prose ul, .prose ol { margin: 0 0 20px 4px; padding-left: 22px; display: flex; flex-direction: column; gap: 10px; }
.prose li { padding-left: 4px; }
.prose ul li::marker { color: var(--accent-2); }
.prose ol li::marker { color: var(--accent-2); font-weight: 700; }
.callout {
  display: flex; gap: 14px; padding: 20px 22px; margin: 26px 0; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--border-strong);
}
.callout i { color: var(--accent-2); font-size: 1.3rem; margin-top: 2px; }
.callout p { margin: 0; color: var(--text-muted); }
.callout b { color: var(--text); }
.article-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.96rem; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border); }
.article-table th, .article-table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.article-table th { background: var(--surface-2); color: var(--text); font-weight: 700; }
.article-table td { color: var(--text-muted); }
.article-table tr:last-child td { border-bottom: none; }
.toc { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 26px; margin: 0 0 10px; }
.toc h2 { font-size: 1.05rem !important; margin: 0 0 14px !important; color: var(--text); }
.toc ul { margin: 0; padding-left: 20px; gap: 8px; }
.toc a { color: var(--text-muted); text-decoration: none; }
.toc a:hover { color: var(--accent-2); }
.article-cta {
  margin: 44px 0 0; padding: 34px; text-align: center; border-radius: var(--radius-lg);
  background: var(--grad-hero), var(--surface); border: 1px solid var(--border-strong);
}
.article-cta h3 { font-size: 1.5rem; margin-bottom: 10px; }
.article-cta p { color: var(--text-muted); margin-bottom: 22px; }
.article-share { display: flex; align-items: center; gap: 12px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--text-dim); font-size: 0.9rem; }

/* Blog index cards */
.blog-grid { grid-template-columns: repeat(2, 1fr); }
.post-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.post-card__body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.post-card__cat { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 12px; }
.post-card h3 { font-size: 1.22rem; margin-bottom: 10px; line-height: 1.3; }
.post-card p { color: var(--text-muted); font-size: 0.96rem; margin-bottom: 18px; flex: 1; }
.post-card__more { color: var(--accent-2); font-weight: 700; font-size: 0.94rem; display: inline-flex; align-items: center; gap: 8px; }
.post-card:hover .post-card__more { gap: 12px; }
.post-card__top { height: 7px; background: var(--grad-brand); }

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .article-wrap { padding: 110px 0 60px; }
  .article-table { display: block; overflow-x: auto; white-space: nowrap; }
}

/* Homepage article cards */
.card--article { display: flex; flex-direction: column; }
.card--article .post-card__cat { margin-bottom: 10px; }
.card--article h3 { font-size: 1.12rem; line-height: 1.3; margin-bottom: 10px; }
.card--article p { color: var(--text-muted); font-size: 0.94rem; margin-bottom: 18px; flex: 1; }
.card--article .post-card__more { margin-top: auto; }
.card--article:hover .post-card__more { gap: 12px; }
