/* ==========================================================================
   Abonnement IPTV Belgique — Premium Streaming Template
   Design system: matte black + gold (#D4AF37) + Belgian flag accents
   Author: template — content-neutral placeholder brand
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Core palette */
  --black-900: #050506;
  --black-850: #0a0a0d;
  --black-800: #101014;
  --black-700: #16161c;
  --black-600: #1e1e26;
  --line: rgba(212, 175, 55, 0.14);
  --line-soft: rgba(255, 255, 255, 0.07);

  /* Gold */
  --gold: #d4af37;
  --gold-bright: #f4d774;
  --gold-deep: #a8822a;
  --gold-glow: rgba(212, 175, 55, 0.35);

  /* Belgian flag accents */
  --be-black: #0b0b0b;
  --be-yellow: #fdda24;
  --be-red: #ef3340;

  /* Text */
  --text: #f4f2ea;
  --text-soft: #b9b6ad;
  --text-mute: #7d7b74;

  /* Effects */
  --glass: rgba(22, 22, 28, 0.55);
  --glass-strong: rgba(28, 28, 36, 0.75);
  --blur: saturate(140%) blur(18px);
  --radius: 22px;
  --radius-sm: 14px;
  --radius-lg: 34px;
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.85);
  --shadow-gold: 0 18px 50px -18px rgba(212, 175, 55, 0.45);

  /* Typography */
  --font-display: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;

  /* Layout */
  --wrap: 1200px;
  --gutter: clamp(18px, 4vw, 40px);

  --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%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--black-900);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Ambient background glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 50% at 80% -5%, rgba(212, 175, 55, 0.10), transparent 60%),
    radial-gradient(45% 40% at 0% 20%, rgba(239, 51, 64, 0.06), transparent 60%),
    radial-gradient(50% 45% at 50% 110%, rgba(253, 218, 36, 0.06), transparent 60%),
    var(--black-900);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
p { color: var(--text-soft); }

.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.section { padding: clamp(64px, 10vw, 130px) 0; position: relative; }

.gold-text {
  background: linear-gradient(120deg, var(--gold-bright), var(--gold) 45%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  padding: 7px 16px; border: 1px solid var(--line);
  border-radius: 100px; background: rgba(212, 175, 55, 0.06);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }

.section-head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 70px); text-align: center; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head p { margin-top: 16px; font-size: 1.06rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 100px; font-family: var(--font-display);
  font-weight: 600; font-size: 0.98rem; letter-spacing: 0.01em;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
  will-change: transform; position: relative; overflow: hidden;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  color: #1a1408;
  background: linear-gradient(120deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 26px 60px -16px var(--gold-glow), 0 0 0 1px var(--gold-bright); }
.btn-ghost {
  color: var(--text); border: 1px solid var(--line);
  background: var(--glass); backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold-glow); }
.btn-whatsapp { color: #fff; background: linear-gradient(120deg, #25d366, #128c4b); box-shadow: 0 16px 40px -16px rgba(37, 211, 102, 0.6); }
.btn-whatsapp:hover { transform: translateY(-3px); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 20px; font-size: 0.88rem; }

/* ---------- Glass card base ---------- */
.glass {
  background: var(--glass); backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  box-shadow: var(--shadow); position: relative;
}
.glass::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(160deg, rgba(255,255,255,0.06), transparent 40%);
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.topbar {
  font-size: 0.82rem; color: var(--text-mute);
  border-bottom: 1px solid var(--line-soft);
  background: var(--black-850);
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 9px 0; flex-wrap: wrap; }
.topbar a { color: var(--text-soft); transition: color 0.3s; }
.topbar a:hover { color: var(--gold); }
.topbar-trust { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.topbar-trust span { display: inline-flex; align-items: center; gap: 6px; }

.site-header {
  position: sticky; top: 0; z-index: 900;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s;
}
.site-header.scrolled {
  background: rgba(8, 8, 11, 0.82); backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  box-shadow: 0 10px 40px -18px rgba(0,0,0,0.9); border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 0; }

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; letter-spacing: -0.01em; }
.logo svg { width: 42px; height: 42px; flex-shrink: 0; }
.logo .logo-text small { display: block; font-size: 0.62rem; letter-spacing: 0.28em; color: var(--gold); font-weight: 600; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 9px 15px; border-radius: 100px; font-size: 0.94rem; color: var(--text-soft);
  transition: color 0.3s, background 0.3s; position: relative;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); background: rgba(212,175,55,0.08); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Language switcher */
.lang-switch { position: relative; }
.lang-switch > button { display: inline-flex; align-items: center; gap: 7px; padding: 9px 13px; border-radius: 100px; border: 1px solid var(--line-soft); font-size: 0.86rem; color: var(--text-soft); transition: border-color 0.3s, color 0.3s; }
.lang-switch > button:hover { border-color: var(--gold); color: var(--text); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 10px); min-width: 170px;
  background: var(--glass-strong); backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 8px;
  box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 9px; font-size: 0.9rem; color: var(--text-soft); transition: background 0.25s, color 0.25s; }
.lang-menu a:hover { background: rgba(212,175,55,0.1); color: var(--text); }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line-soft); flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-toggle span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px); flex-direction: column;
    align-items: stretch; gap: 4px; padding: 100px 22px 40px;
    background: var(--glass-strong); backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
    border-left: 1px solid var(--line); transform: translateX(100%);
    transition: transform 0.45s var(--ease); z-index: 890;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: 13px 16px; font-size: 1rem; }
  .nav .btn-primary { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; padding: clamp(70px, 12vw, 130px) 0 clamp(60px, 9vw, 110px); overflow: hidden; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; z-index: -1; animation: float 14s var(--ease) infinite; }
.hero-orb.o1 { width: 460px; height: 460px; background: radial-gradient(circle, var(--gold-glow), transparent 70%); top: -120px; right: -80px; }
.hero-orb.o2 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(239,51,64,0.22), transparent 70%); bottom: -100px; left: -100px; animation-delay: -5s; }
@keyframes float { 0%,100% { transform: translate(0,0); } 50% { transform: translate(0,-32px); } }

.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 5vw, 70px); align-items: center; }
.hero-copy .eyebrow { margin-bottom: 26px; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .gold-text { display: inline; }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.22rem); color: var(--text-soft); max-width: 560px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }

.hero-stats { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-stats .stat strong { font-family: var(--font-display); font-size: 1.7rem; color: var(--text); display: block; line-height: 1; }
.hero-stats .stat span { font-size: 0.82rem; color: var(--text-mute); }
.hero-rating { display: inline-flex; align-items: center; gap: 10px; margin-top: 26px; padding: 10px 16px; border-radius: 100px; border: 1px solid var(--line); background: rgba(212,175,55,0.05); font-size: 0.88rem; }
.stars { color: var(--gold); letter-spacing: 2px; }

/* Hero visual — mock player */
.hero-visual { position: relative; }
.player-card { padding: 18px; border-radius: var(--radius-lg); animation: rise 1s var(--ease) both; }
.player-screen {
  aspect-ratio: 16 / 10; border-radius: 20px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, #14141b, #0a0a0e);
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
}
.player-screen::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(212,175,55,0.16), transparent 60%);
}
.play-btn {
  width: 78px; height: 78px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(120deg, var(--gold-bright), var(--gold-deep)); color: #12100a;
  box-shadow: 0 0 0 10px rgba(212,175,55,0.12), var(--shadow-gold); position: relative; z-index: 2;
  animation: pulse 2.6s ease-in-out infinite;
}
.play-btn svg { width: 30px; height: 30px; margin-left: 4px; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 10px rgba(212,175,55,0.12), var(--shadow-gold); } 50% { box-shadow: 0 0 0 22px rgba(212,175,55,0), var(--shadow-gold); } }
.player-bar { display: flex; align-items: center; gap: 10px; margin-top: 16px; padding: 0 6px; }
.player-track { flex: 1; height: 5px; border-radius: 4px; background: rgba(255,255,255,0.1); overflow: hidden; }
.player-track i { display: block; height: 100%; width: 42%; background: linear-gradient(90deg, var(--gold), var(--gold-bright)); border-radius: 4px; }
.player-bar small { font-size: 0.72rem; color: var(--text-mute); font-variant-numeric: tabular-nums; }
.player-quality { position: absolute; top: 16px; left: 16px; z-index: 2; display: flex; gap: 8px; }
.chip { font-size: 0.66rem; font-weight: 700; font-family: var(--font-display); letter-spacing: 0.08em; padding: 5px 10px; border-radius: 100px; background: rgba(0,0,0,0.5); border: 1px solid var(--line); color: var(--gold); backdrop-filter: blur(6px); }

.hero-badge-float {
  position: absolute; padding: 14px 18px; border-radius: 16px; display: flex; align-items: center; gap: 12px;
  background: var(--glass-strong); backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--line); box-shadow: var(--shadow); font-size: 0.84rem;
}
.hero-badge-float.b1 { bottom: -18px; left: -22px; animation: float 8s var(--ease) infinite; }
.hero-badge-float.b2 { top: 20px; right: -26px; animation: float 9s var(--ease) infinite reverse; }
.hero-badge-float .dot { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: rgba(212,175,55,0.14); color: var(--gold); }
.hero-badge-float strong { display: block; color: var(--text); font-family: var(--font-display); font-size: 0.92rem; }
@keyframes rise { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-cta, .hero-stats { justify-content: center; }
  .hero-visual { max-width: 480px; margin: 20px auto 0; }
  .hero-badge-float.b1 { left: 0; }
  .hero-badge-float.b2 { right: 0; }
}

/* ---------- Marquee / brands strip ---------- */
.strip { border-block: 1px solid var(--line-soft); padding: 26px 0; background: var(--black-850); overflow: hidden; }
.strip-inner { display: flex; align-items: center; gap: 60px; animation: marquee 32s linear infinite; width: max-content; }
.strip:hover .strip-inner { animation-play-state: paused; }
.strip span { font-family: var(--font-display); font-weight: 600; color: var(--text-mute); font-size: 0.98rem; white-space: nowrap; display: inline-flex; align-items: center; gap: 10px; }
.strip span svg { width: 20px; height: 20px; color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   Feature grid
   ========================================================================== */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.feature-card { padding: 30px; border-radius: var(--radius); transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s; }
.feature-card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow-gold); }
.feature-ico {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(212,175,55,0.16), rgba(212,175,55,0.03));
  border: 1px solid var(--line); color: var(--gold);
}
.feature-ico svg { width: 27px; height: 27px; }
.feature-card h3 { margin-bottom: 10px; font-size: 1.18rem; }
.feature-card p { font-size: 0.95rem; }

/* Compact feature pills */
.feature-pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 44px; }
.feature-pill { display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px; border-radius: 100px; border: 1px solid var(--line-soft); background: var(--glass); font-size: 0.9rem; color: var(--text-soft); transition: border-color 0.3s, color 0.3s, transform 0.3s; }
.feature-pill:hover { border-color: var(--gold); color: var(--text); transform: translateY(-2px); }
.feature-pill svg { width: 17px; height: 17px; color: var(--gold); }

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; max-width: var(--wrap); margin-inline: auto; align-items: stretch; }
@media (min-width: 1080px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); } }
/* pricing section uses a wider container so the cards fill more of the page */
#tarifs .wrap { width: min(100% - 2 * var(--gutter), 1440px); }
#tarifs .pricing-grid { max-width: 1440px; }
#tarifs .price-card { padding-left: 28px; padding-right: 28px; }
/* keep the order button on a single line */
#tarifs .price-card .btn-block { white-space: nowrap; font-size: 0.9rem; padding-inline: 18px; }
.price-card { padding: 36px 30px; border-radius: var(--radius-lg); display: flex; flex-direction: column; transition: transform 0.5s var(--ease), box-shadow 0.5s; }
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-gold); }
.price-card.featured { border: 1px solid var(--gold); background: linear-gradient(180deg, rgba(212,175,55,0.10), var(--glass)); box-shadow: var(--shadow-gold); }
.price-tag-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.price-card h3 { font-size: 1.3rem; }
.price-badge { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #14100a; background: linear-gradient(120deg, var(--gold-bright), var(--gold-deep)); padding: 5px 12px; border-radius: 100px; }
.price-amount { display: flex; align-items: baseline; gap: 6px; margin: 10px 0 6px; }
.price-amount .num { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--text); }
.price-amount .cur { font-size: 1.4rem; color: var(--gold); font-family: var(--font-display); }
.price-amount .per { font-size: 0.9rem; color: var(--text-mute); }
.price-note { font-size: 0.86rem; color: var(--text-mute); margin-bottom: 24px; }
.price-features { display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; flex: 1; }
.price-features li { display: flex; align-items: flex-start; gap: 11px; font-size: 0.93rem; color: var(--text-soft); }
.price-features li svg { width: 19px; height: 19px; color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.price-features li.off { color: var(--text-mute); opacity: 0.55; }
.price-features li.off svg { color: var(--text-mute); }

.billing-toggle { display: inline-flex; align-items: center; gap: 0; padding: 5px; border-radius: 100px; border: 1px solid var(--line-soft); background: var(--glass); margin: 0 auto 46px; }
.billing-toggle button { padding: 10px 22px; border-radius: 100px; font-size: 0.9rem; font-weight: 600; color: var(--text-mute); transition: color 0.3s, background 0.3s; }
.billing-toggle button.active { color: #14100a; background: linear-gradient(120deg, var(--gold-bright), var(--gold-deep)); }
.billing-toggle .save { font-size: 0.7rem; color: var(--be-yellow); margin-left: 6px; }

/* Comparison table */
.compare { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line-soft); }
.compare table { width: 100%; border-collapse: collapse; min-width: 620px; }
.compare th, .compare td { padding: 16px 20px; text-align: center; border-bottom: 1px solid var(--line-soft); font-size: 0.92rem; }
.compare th { font-family: var(--font-display); color: var(--text); background: var(--black-800); }
.compare td:first-child, .compare th:first-child { text-align: left; color: var(--text-soft); }
.compare tr:last-child td { border-bottom: none; }
.compare .yes { color: var(--gold); }
.compare .no { color: var(--text-mute); }
.compare tbody tr:hover { background: rgba(212,175,55,0.04); }

/* ==========================================================================
   Devices
   ========================================================================== */
.device-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
@media (max-width: 1024px) { .device-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 680px)  { .device-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 440px)  { .device-grid { grid-template-columns: repeat(2, 1fr); } }
.device-card {
  padding: 28px 16px 22px; border-radius: var(--radius); text-align: center;
  border: 1px solid var(--line-soft); position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.device-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.device-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.device-card:hover::before { opacity: 1; }
.device-card .device-ico {
  width: 60px; height: 60px; margin: 0 auto 16px; color: var(--gold);
  display: grid; place-items: center; border-radius: 16px;
  background: radial-gradient(circle at 50% 35%, rgba(212,175,55,0.14), rgba(212,175,55,0.02));
  border: 1px solid var(--line);
}
.device-card .device-ico svg { width: 30px; height: 30px; }
.device-card span { font-size: 0.9rem; color: var(--text); font-weight: 600; font-family: var(--font-display); display: block; letter-spacing: -0.01em; }
.device-card small { font-size: 0.72rem; color: var(--text-mute); }

/* ==========================================================================
   Steps / installation
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; counter-reset: step; }
.step-card { padding: 30px; border-radius: var(--radius); position: relative; }
.step-card .step-num {
  counter-increment: step; font-family: var(--font-display); font-size: 2.6rem; font-weight: 800;
  background: linear-gradient(120deg, var(--gold-bright), var(--gold-deep)); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; margin-bottom: 14px; display: block;
}
.step-card .step-num::before { content: "0" counter(step); }
.step-card h3 { font-size: 1.14rem; margin-bottom: 9px; }
.step-card p { font-size: 0.92rem; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.testi-card { padding: 30px; border-radius: var(--radius); display: flex; flex-direction: column; gap: 16px; }
.testi-card .stars { font-size: 1rem; }
.testi-card blockquote { font-size: 1rem; color: var(--text); line-height: 1.6; }
.testi-author { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #14100a; background: linear-gradient(120deg, var(--gold-bright), var(--gold-deep)); }
.testi-author strong { display: block; font-size: 0.92rem; color: var(--text); font-family: var(--font-display); }
.testi-author span { font-size: 0.8rem; color: var(--text-mute); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 800px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border-radius: var(--radius-sm); border: 1px solid var(--line-soft); background: var(--glass); overflow: hidden; transition: border-color 0.3s; }
.faq-item[open] { border-color: var(--line); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--text); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-plus { width: 26px; height: 26px; flex-shrink: 0; position: relative; }
.faq-item summary .faq-plus::before, .faq-item summary .faq-plus::after { content: ""; position: absolute; background: var(--gold); border-radius: 2px; transition: transform 0.35s var(--ease); }
.faq-item summary .faq-plus::before { top: 12px; left: 4px; width: 18px; height: 2px; }
.faq-item summary .faq-plus::after { left: 12px; top: 4px; width: 2px; height: 18px; }
.faq-item[open] summary .faq-plus::after { transform: rotate(90deg); opacity: 0; }
.faq-answer { padding: 0 24px 22px; color: var(--text-soft); font-size: 0.96rem; }

/* ==========================================================================
   Contact / form
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-line { display: flex; align-items: center; gap: 16px; padding: 18px 22px; border-radius: var(--radius-sm); border: 1px solid var(--line-soft); background: var(--glass); transition: border-color 0.3s, transform 0.3s; }
.contact-line:hover { border-color: var(--gold); transform: translateX(4px); }
.contact-line .c-ico { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: rgba(212,175,55,0.12); color: var(--gold); flex-shrink: 0; }
.contact-line .c-ico svg { width: 22px; height: 22px; }
.contact-line small { color: var(--text-mute); font-size: 0.78rem; display: block; }
.contact-line strong { font-family: var(--font-display); font-size: 1.05rem; color: var(--text); }

form.lead-form { padding: 34px; border-radius: var(--radius-lg); display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 0.84rem; color: var(--text-soft); font-family: var(--font-display); font-weight: 500; }
.field input, .field select, .field textarea {
  padding: 13px 16px; border-radius: 12px; border: 1px solid var(--line-soft);
  background: var(--black-800); color: var(--text); font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.78rem; color: var(--text-mute); text-align: center; }

@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } .field-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   Blog
   ========================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.blog-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft); background: var(--glass); transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.blog-thumb { aspect-ratio: 16/9; position: relative; overflow: hidden; background: linear-gradient(135deg, #16161f, #0b0b10); display: grid; place-items: center; }
.blog-thumb svg { width: 60%; height: 60%; opacity: 0.85; }
.blog-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-meta { font-size: 0.76rem; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.blog-card h3 { font-size: 1.14rem; }
.blog-card p { font-size: 0.92rem; }
.blog-card .read { margin-top: auto; color: var(--gold); font-size: 0.88rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 70px); text-align: center; position: relative; overflow: hidden; border: 1px solid var(--gold); background: linear-gradient(135deg, rgba(212,175,55,0.14), rgba(239,51,64,0.05)); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, var(--gold-glow), transparent 60%); opacity: 0.5; }
.cta-band > * { position: relative; }
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { max-width: 560px; margin: 0 auto 30px; }
.cta-band .hero-cta { justify-content: center; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { border-top: 1px solid var(--line); background: var(--black-850); padding-top: clamp(50px, 7vw, 80px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; padding-bottom: 50px; }
.footer-brand p { font-size: 0.9rem; margin: 18px 0; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; border: 1px solid var(--line-soft); color: var(--text-soft); transition: color 0.3s, border-color 0.3s, transform 0.3s; }
.footer-social a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.footer-col h4 { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-family: var(--font-display); }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.9rem; color: var(--text-soft); transition: color 0.3s, padding-left 0.3s; }
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom { border-top: 1px solid var(--line-soft); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.82rem; color: var(--text-mute); }
.footer-pay { display: flex; gap: 10px; align-items: center; }
.footer-pay svg { height: 26px; width: auto; opacity: 0.7; transition: opacity 0.3s; }
.footer-pay svg:hover { opacity: 1; }
.footer-disclaimer { font-size: 0.75rem; color: var(--text-mute); max-width: 900px; margin: 0 auto; padding: 20px 0 34px; text-align: center; line-height: 1.6; opacity: 0.75; }

@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Floating WhatsApp + back to top
   ========================================================================== */
.float-wa { position: fixed; bottom: 24px; right: 24px; z-index: 800; display: inline-flex; align-items: center; gap: 10px; padding: 13px 20px 13px 15px; border-radius: 100px; background: linear-gradient(120deg, #25d366, #128c4b); color: #fff; font-weight: 600; font-family: var(--font-display); font-size: 0.92rem; box-shadow: 0 16px 40px -12px rgba(37,211,102,0.6); transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.float-wa:hover { transform: translateY(-3px) scale(1.03); }
.float-wa svg { width: 24px; height: 24px; }
.float-wa .wa-pulse { position: absolute; inset: 0; border-radius: 100px; box-shadow: 0 0 0 0 rgba(37,211,102,0.5); animation: wapulse 2.4s infinite; }
@keyframes wapulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@media (max-width: 600px) { .float-wa span { display: none; } .float-wa { padding: 15px; } }

.to-top { position: fixed; bottom: 24px; left: 24px; z-index: 800; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--glass-strong); backdrop-filter: var(--blur); border: 1px solid var(--line); color: var(--gold); opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity 0.4s, transform 0.4s, visibility 0.4s; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { border-color: var(--gold); }

/* ==========================================================================
   Breadcrumbs & article
   ========================================================================== */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.82rem; color: var(--text-mute); padding: 22px 0; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-soft); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { margin: 44px 0 18px; }
.prose h3 { margin: 30px 0 12px; }
.prose p { margin-bottom: 16px; font-size: 1.02rem; }
.prose ul.bullets { margin: 0 0 20px; padding-left: 4px; display: flex; flex-direction: column; gap: 10px; }
.prose ul.bullets li { display: flex; gap: 11px; align-items: flex-start; color: var(--text-soft); }
.prose ul.bullets li svg { width: 19px; height: 19px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.prose .lead { font-size: 1.16rem; color: var(--text); margin-bottom: 26px; }
.prose a.inline { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.page-hero { padding: clamp(50px, 8vw, 90px) 0 clamp(30px, 5vw, 50px); text-align: center; position: relative; }
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero p { max-width: 620px; margin: 18px auto 0; font-size: 1.08rem; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].in { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }

/* ==========================================================================
   Pricing v2 — tiers + connection stepper
   ========================================================================== */
.price-duration { font-size: 0.86rem; color: var(--text-mute); margin: -2px 0 14px; }
.price-bonus {
  display: inline-flex; align-items: center; gap: 7px; width: 100%; justify-content: center;
  padding: 9px 14px; border-radius: 100px; font-size: 0.84rem; font-weight: 600;
  color: #6ee7a8; border: 1px solid rgba(46, 204, 113, 0.35);
  background: rgba(46, 204, 113, 0.08); margin-bottom: 20px;
}
.price-bonus::before { content: "✓"; font-weight: 800; }

.stepper-label { text-align: center; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 10px; font-family: var(--font-display); }
.stepper {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px; border-radius: 16px; border: 1px solid var(--line-soft); background: var(--black-800);
}
.stepper button {
  width: 42px; height: 42px; border-radius: 12px; font-size: 1.5rem; line-height: 1; font-weight: 500;
  color: var(--gold); background: rgba(212,175,55,0.08); border: 1px solid var(--line-soft);
  display: grid; place-items: center; transition: background 0.25s, border-color 0.25s, transform 0.15s;
}
.stepper button:hover { background: rgba(212,175,55,0.16); border-color: var(--gold); }
.stepper button:active { transform: scale(0.92); }
.stepper button:disabled { opacity: 0.35; cursor: not-allowed; }
.stepper .stepper-val { text-align: center; line-height: 1.1; }
.stepper .stepper-val strong { font-family: var(--font-display); font-size: 1.4rem; color: var(--text); display: block; }
.stepper .stepper-val span { font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mute); }
/* pricing style variants (crown popular + green best-value + colored CTAs) */
.price-card { position: relative; }
.price-card .price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); white-space: nowrap; z-index: 4; box-shadow: 0 8px 24px -8px rgba(0,0,0,0.6); }
.price-card.featured, .price-card.best { padding-top: 42px; }
.price-badge.crown::before { content: "\1F451"; margin-right: 6px; }
.price-badge-green { color: #04140d; background: linear-gradient(120deg, #34d399, #059669); box-shadow: 0 0 0 1px rgba(52,211,153,0.4); }
.price-card.best { border: 1px solid #34d399; background: linear-gradient(180deg, rgba(52,211,153,0.10), var(--glass)); box-shadow: 0 18px 50px -18px rgba(52,211,153,0.4); }
.price-card.best:hover { box-shadow: 0 24px 60px -18px rgba(52,211,153,0.55); }
.btn-emerald { color: #04140d; background: linear-gradient(120deg, #34d399, #0f9d63); box-shadow: 0 16px 40px -16px rgba(52,211,153,0.55); }
.btn-emerald:hover { transform: translateY(-3px); box-shadow: 0 24px 56px -16px rgba(52,211,153,0.6); }
.price-discount-note { font-size: 0.76rem; color: var(--text-mute); text-align: center; margin: 12px 0 0; line-height: 1.4; }
.price-discount-note b { color: #34d399; font-weight: 700; }
.price-bonus-inline { color: #6ee7a8; font-size: 0.82rem; font-weight: 600; margin-left: 8px; }

.price-save { text-align: center; font-size: 0.8rem; color: var(--text-mute); margin-top: 10px; min-height: 18px; }
.price-save strong { color: var(--gold); }
.price-save.hidden { visibility: hidden; }
.price-sep { height: 1px; background: var(--line-soft); margin: 22px 0; }

/* brand device icons inherit gold via CSS fill */
.device-card .device-ico svg { fill: var(--gold); stroke: none; }
.device-card:hover .device-ico svg { filter: drop-shadow(0 0 10px var(--gold-glow)); }

/* ==========================================================================
   Showcase row — neutral placeholder poster tiles (no real artwork/titles)
   ========================================================================== */
.showcase-row {
  display: flex; gap: 18px; overflow-x: auto; padding: 8px 4px 22px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--line) transparent;
}
.showcase-row::-webkit-scrollbar { height: 8px; }
.showcase-row::-webkit-scrollbar-track { background: transparent; }
.showcase-row::-webkit-scrollbar-thumb { background: var(--line); border-radius: 8px; }
.showcase-row::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

.poster { flex: 0 0 auto; width: 190px; scroll-snap-align: start; }
.poster-art {
  aspect-ratio: 2 / 3; border-radius: var(--radius-sm); position: relative; overflow: hidden;
  border: 1px solid var(--line-soft); transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
}
.poster:hover .poster-art { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
/* moving shimmer sweep */
.poster-art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.10) 48%, transparent 66%);
  transform: translateX(-120%); animation: shimmer 3.6s var(--ease) infinite;
}
@keyframes shimmer { 0% { transform: translateX(-120%); } 60%, 100% { transform: translateX(120%); } }
.poster-genre {
  position: absolute; top: 12px; left: 12px; z-index: 2; font-size: 0.66rem; font-weight: 700;
  font-family: var(--font-display); letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 100px; background: rgba(0,0,0,0.55); color: var(--gold);
  border: 1px solid var(--line); backdrop-filter: blur(4px);
}
.poster-4k {
  position: absolute; top: 12px; right: 12px; z-index: 2; font-size: 0.6rem; font-weight: 800;
  font-family: var(--font-display); letter-spacing: 0.06em; padding: 4px 8px; border-radius: 8px;
  color: #14100a; background: linear-gradient(120deg, var(--gold-bright), var(--gold-deep));
}
.poster-play {
  position: absolute; inset: 0; z-index: 2; display: grid; place-items: center;
  opacity: 0; transition: opacity 0.4s;
}
.poster:hover .poster-play { opacity: 1; }
.poster-play span {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(120deg, var(--gold-bright), var(--gold-deep)); color: #14100a;
  box-shadow: var(--shadow-gold);
}
.poster-play span svg { width: 22px; height: 22px; margin-left: 3px; }
/* skeleton "title" lines (deliberately content-free placeholders) */
.poster-meta { padding: 12px 4px 0; }
.poster-meta .bar { height: 9px; border-radius: 5px; background: var(--black-600); margin-bottom: 7px; }
.poster-meta .bar.w70 { width: 70%; }
.poster-meta .bar.w45 { width: 45%; height: 7px; background: var(--black-700); }
.showcase-note { text-align: center; font-size: 0.78rem; color: var(--text-mute); margin-top: 14px; }

/* Reviews — horizontal scroll row + stats header */
.testi-stats { display: flex; gap: clamp(24px, 5vw, 46px); justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.testi-stats .s { text-align: center; }
.testi-stats .s strong { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--text); display: block; line-height: 1; }
.testi-stats .s strong .gold-text { display: inline; }
.testi-stats .s span { font-size: 0.82rem; color: var(--text-mute); }
.testi-row {
  display: flex; gap: 20px; overflow-x: auto; padding: 10px 4px 24px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; -ms-overflow-style: none; /* hide scrollbar (auto-scroll + swipe still work) */
}
.testi-row::-webkit-scrollbar { display: none; width: 0; height: 0; }
.testi-row .testi-card { flex: 0 0 360px; scroll-snap-align: start; }
@media (max-width: 480px) { .testi-row .testi-card { flex: 0 0 84vw; } }
.testi-verified { display: inline-flex; width: 16px; height: 16px; margin-left: 5px; color: #25d366; vertical-align: -2px; }
.testi-plan { color: var(--gold) !important; }
.testi-hint { text-align: center; font-size: 0.82rem; color: var(--text-mute); margin-top: 8px; letter-spacing: 0.04em; }

/* WhatsApp-only contact block */
.wa-contact { max-width: 620px; margin-inline: auto; text-align: center; padding: clamp(34px, 5vw, 54px); border-radius: var(--radius-lg); border: 1px solid var(--line); }
.wa-contact-ico { width: 78px; height: 78px; margin: 0 auto 22px; border-radius: 22px; display: grid; place-items: center; color: #25d366; background: rgba(37, 211, 102, 0.10); border: 1px solid rgba(37, 211, 102, 0.3); }
.wa-contact-ico svg { width: 40px; height: 40px; }
.wa-contact h3 { font-size: 1.5rem; margin-bottom: 12px; }
.wa-contact p { margin-bottom: 26px; }
.wa-contact .btn-whatsapp { font-size: 1.05rem; padding: 16px 34px; }
.wa-number { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold); margin: 22px 0 0 !important; letter-spacing: 0.02em; }

/* Centered hero (text only) */
.hero--center { max-width: 860px; margin-inline: auto; text-align: center; }
.hero--center .hero-sub { margin-inline: auto; }
.hero--center .hero-cta, .hero--center .hero-stats { justify-content: center; }
.hero--center .hero-rating { margin-inline: auto; }

/* Testimonial portrait avatars */
.testi-avatar { overflow: hidden; padding: 0; background: none; width: 54px; height: 54px; border: 1px solid var(--line); }
.testi-avatar svg { width: 100%; height: 100%; display: block; }

/* Utility */
.text-center { text-align: center; }
.mt-l { margin-top: 40px; }
.divider-flag { height: 3px; width: 80px; margin: 0 auto; border-radius: 4px; background: linear-gradient(90deg, var(--be-black) 33%, var(--be-yellow) 33% 66%, var(--be-red) 66%); }
