﻿:root{
  --brand:#0A66FF;
  --brand-dark:#084FCC;
  --wa:#25D366;

  --text:#0b1220;
  --muted:#5b6475;

  --bg:#f6f8fc;
  --card:#ffffff;
  --border:rgba(15, 23, 42, .10);

  --shadow:0 12px 30px rgba(2, 6, 23, .10);
  --shadow-soft:0 10px 22px rgba(2, 6, 23, .06);

  --radius:18px;
  --radius-sm:14px;

  --header-h: 66px; /* used in mobile nav */
  --mobile-nav-top: 66px;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:96px}
body{
  font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 20% -10%, rgba(10,102,255,.14), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(37,211,102,.10), transparent 55%),
    var(--bg);
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit}
.container{max-width:1180px;margin:0 auto;padding:0 18px}

/* Topbar */
.topbar{
  background:rgba(255,255,255,.75);
  border-bottom:1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.topbar-inner{
  display:flex;gap:14px;justify-content:center;align-items:center;
  padding:10px 0;
  flex-wrap:wrap;
}
.topbar-item{
  display:flex;align-items:center;gap:8px;
  color:var(--muted);font-size:13px;font-weight:700;
}
.topbar-live{
  color:#334155;
  background:rgba(255,255,255,.7);
  border:1px solid rgba(15,23,42,.08);
  border-radius:999px;
  padding:6px 10px;
}
.topbar-live-dot{
  width:8px;height:8px;border-radius:999px;
  background:#22c55e;
  box-shadow:0 0 0 0 rgba(34,197,94,.45);
  animation: livePulse 1.8s ease-out infinite;
}
@keyframes livePulse{
  0%{box-shadow:0 0 0 0 rgba(34,197,94,.45)}
  100%{box-shadow:0 0 0 10px rgba(34,197,94,0)}
}

/* Header */
.header{
  position:sticky;top:0;z-index:100;
  background:rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:14px;padding:12px 0;
}
.brand-logo{height:64px;width:auto;object-fit:contain}

.menu-btn{
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.03);
  border:1px solid rgba(0,0,0,.06);
  font-size:18px;color:var(--text);
  width:44px;height:44px;border-radius:14px;
  padding:0;
  line-height:1;
  appearance:none;
  -webkit-appearance:none;
  cursor:pointer;
}
.menu-btn:hover{background:rgba(0,0,0,.05)}

.nav{display:flex;align-items:center;gap:22px}
.nav-link{
  text-decoration:none;
  color:var(--muted);
  font-weight:800;
  font-size:14px;
}
.nav-link:hover{color:var(--brand)}
.desktop-only{display:inline-flex}
.mobile-only{display:none !important}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  text-decoration:none;border-radius:14px;
  padding:12px 16px;font-weight:850;font-size:14px;
  border:1px solid transparent;
  transition:transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  cursor:pointer;
  white-space:nowrap;
}
.btn-lg{padding:14px 18px;font-size:15px}
.btn-primary{
  background:linear-gradient(180deg, rgba(10,102,255,1) 0%, rgba(8,79,204,1) 100%);
  color:#fff;
  box-shadow:0 12px 26px rgba(10,102,255,.28);
}
.btn-primary:hover{transform:translateY(-1px)}
.btn-ghost{
  background:rgba(255,255,255,.75);
  border-color:var(--border);
  color:var(--text);
}
.btn-ghost:hover{transform:translateY(-1px);box-shadow:var(--shadow-soft)}
.w-full{width:100%}
.trustpilot-stars-mount{
  width:100%;
  display:flex;
  justify-content:center;
  margin-top:12px;
  margin-bottom:12px;
}
.trustpilot-container{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-top:10px;
  width:100%;
  max-width:100%;
}
.trustpilot-badge{
  display:flex;
  align-items:center;
  gap:12px;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  text-decoration:none;
  color:inherit;
  white-space:nowrap;
  max-width:100%;
}
.trustpilot-badge img{
  display:block;
  height:22px;
  width:auto;
}
.trustpilot-rating{
  display:flex;
  align-items:center;
  gap:8px;
}
.tp-stars{
  display:flex;
  gap:4px;
}
.tp-star{
  width:18px;
  height:18px;
  background:#00b67a;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  border-radius:3px;
}
.tp-score{
  font-size:14px;
  color:#333;
  font-weight:500;
}
.hero-left .trustpilot-stars-mount{
  margin-top:12px;
  margin-bottom:14px;
}
.pricing .trustpilot-stars-mount{
  margin-top:0;
  margin-bottom:10px;
}
.footer-bottom .trustpilot-stars-mount{
  margin-top:0;
  margin-bottom:10px;
}

/* Hero */
.hero{padding:34px 0 26px}
.hero-grid{
  display:grid;grid-template-columns:1.08fr .92fr;
  gap:28px;align-items:center;
}
.kicker{
  color:var(--brand);
  font-weight:900;letter-spacing:1.6px;
  font-size:12px;
}
.hero-title{
  margin-top:10px;
  font-size:44px;line-height:1.1;
  letter-spacing:-.8px;
}
.hero-title .accent{color:var(--brand)}
.hero-subtitle{
  margin-top:14px;color:var(--muted);
  font-size:16px;line-height:1.7;
  max-width:60ch;
}
.hero-bullets{margin-top:16px;display:grid;gap:10px;list-style:none}
.hero-bullets li{display:flex;gap:10px;align-items:flex-start;color:var(--text);font-weight:750}
.hero-bullets i{color:var(--wa);margin-top:3px}

.hero-actions{margin-top:18px;display:flex;gap:12px;flex-wrap:wrap}
.device-support{
  margin-top:10px;
  font-size:14px;
  color:#5a5a5a;
  line-height:1.5;
}
.benefits-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}
.benefit-badge{
  display:flex;
  align-items:center;
  gap:6px;
  padding:6px 12px;
  background:#f3f6fb;
  border-radius:20px;
  font-size:13px;
  font-weight:500;
  color:#2b2b2b;
  line-height:1.2;
}

.hero-visual-card{
  position:relative;
  overflow:hidden;
  background:linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.36);
  border-radius:var(--radius);
  padding:18px;
  backdrop-filter:blur(22px) saturate(155%);
  -webkit-backdrop-filter:blur(22px) saturate(155%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.65),
    inset 0 -1px 0 rgba(255,255,255,.22),
    0 16px 34px rgba(2,6,23,.10);
}
.hero-visual-card::after{
  content:"";
  position:absolute;
  right:-14%;
  bottom:-30%;
  width:62%;
  height:48%;
  background:radial-gradient(ellipse at center, rgba(10,102,255,.10) 0%, rgba(10,102,255,0) 70%);
  pointer-events:none;
}
.hero-visual{
  width:100%;
  height:auto;
  object-fit:contain;
  border-radius:14px;
  box-shadow:0 10px 26px rgba(2,6,23,.10);
}
.hero-visual-card::before{
  content:"";
  position:absolute;
  inset:18px;
  border-radius:14px;
  background:linear-gradient(160deg, rgba(255,255,255,.16) 0%, rgba(10,102,255,.05) 55%, rgba(2,6,23,.06) 100%);
  pointer-events:none;
}

.hero-mini-proof{
  margin-top:12px;
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:10px;
}
.proof-item{
  position:relative;
  overflow:hidden;
  background:linear-gradient(145deg, rgba(255,255,255,.15), rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.36);
  border-radius:16px;
  padding:12px 10px;
  text-align:center;
  backdrop-filter:blur(24px) saturate(170%);
  -webkit-backdrop-filter:blur(24px) saturate(170%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.70),
    inset 0 -1px 0 rgba(255,255,255,.30),
    0 12px 28px rgba(2,6,23,.10);
}
.proof-item::before{
  content:"";
  position:absolute;
  left:-20%;
  top:-55%;
  width:140%;
  height:90%;
  background:radial-gradient(ellipse at center, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 65%);
  pointer-events:none;
}
.proof-item::after{
  content:"";
  position:absolute;
  right:-18%;
  bottom:-55%;
  width:120%;
  height:85%;
  background:radial-gradient(ellipse at center, rgba(10,102,255,.12) 0%, rgba(10,102,255,0) 68%);
  pointer-events:none;
}
.proof-number{font-weight:950;font-size:18px;color:var(--text)}
.proof-label{font-size:12px;color:var(--muted);font-weight:850;margin-top:2px}

/* Sections */
.section-title{
  font-size:30px;letter-spacing:-.4px;
  line-height:1.15;text-align:center;
}
.section-subtitle{
  text-align:center;color:var(--muted);
  margin:10px auto 0;max-width:76ch;
  font-size:14px;line-height:1.7;
}

/* Brand hint */
.brandhint{padding:6px 0 14px}
.brandhint-row{
  display:flex;gap:10px;flex-wrap:wrap;
  justify-content:center;
}
.brandhint-chip{
  display:inline-flex;align-items:center;gap:8px;
  padding:9px 12px;border-radius:999px;
  background:rgba(255,255,255,.70);
  border:1px solid var(--border);
  font-weight:850;font-size:13px;
  box-shadow:0 8px 16px rgba(2,6,23,.05);
}
.brandhint-chip img{width:16px;height:16px;object-fit:contain}
.brandhint-chip.muted{color:var(--muted)}
.brandhint-note{
  text-align:center;
  color:var(--muted);
  font-size:12px;
  margin-top:10px;
}

/* Posters */
.channels-showcase{padding:14px 0 10px}
.channels-marquee{
  margin-top:16px;
  background:rgba(255,255,255,.62);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
}
.channels-track{
  display:flex;align-items:stretch;gap:12px;
  padding:14px;
  width:max-content;
  animation: channels-marquee 38s linear infinite;
}
.channels-marquee:hover .channels-track,
.channels-marquee:focus-within .channels-track{
  animation-play-state:paused;
}
@keyframes channels-marquee{
  from{transform:translateX(-50%)}
  to{transform:translateX(0)}
}
.channels-card{
  width:210px;
  background:rgba(255,255,255,.28);
  border:1px solid rgba(255,255,255,.42);
  border-radius:18px;
  padding:8px;
  box-shadow:0 10px 26px rgba(2,6,23,.10);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.channels-card:hover{
  transform:scale(1.02);
  box-shadow:0 14px 30px rgba(2,6,23,.14);
  background:rgba(255,255,255,.34);
}
.channels-card img{
  width:100%;
  height:130px;
  border-radius:10px;
  object-fit:contain;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
}

.poster-showcase{padding:16px 0 24px}
.poster-marquee{
  margin-top:16px;
  background:rgba(255,255,255,.62);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
}
.poster-track{
  display:flex;align-items:stretch;gap:12px;
  padding:14px;
  width:max-content;
  animation: poster-marquee 38s linear infinite;
}
.poster-marquee:hover .poster-track,
.poster-marquee:focus-within .poster-track{
  animation-play-state:paused;
}
@keyframes poster-marquee{
  from{transform:translateX(-50%)}
  to{transform:translateX(0)}
}
.poster-card{
  width:190px;
  background:rgba(255,255,255,.28);
  border:1px solid rgba(255,255,255,.42);
  border-radius:18px;
  padding:8px;
  display:flex;
  flex-direction:column;
  gap:8px;
  box-shadow:0 10px 26px rgba(2,6,23,.10);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.poster-card:hover{
  transform:scale(1.02);
  box-shadow:0 14px 30px rgba(2,6,23,.14);
  background:rgba(255,255,255,.34);
}
.poster-card img{
  width:100%;
  height:240px;
  border-radius:10px;
  object-fit:cover;
  border:1px solid rgba(0,0,0,.06);
}
.poster-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  text-decoration:none;
  padding:7px 8px;
  border-radius:10px;
  background:linear-gradient(180deg, rgba(10,102,255,1) 0%, rgba(8,79,204,1) 100%);
  color:#fff;
  font-size:11px;
  font-weight:900;
  line-height:1.2;
  min-height:36px;
}
.poster-cta:hover{filter:brightness(1.05)}

/* Catalog */
.catalog{padding:26px 0 30px}
.catalog-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}
.catalog-card{
  background:rgba(255,255,255,.92);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}
.catalog-head{
  display:flex;gap:12px;align-items:flex-start;
}
.catalog-icon{
  width:44px;height:44px;border-radius:16px;
  background:rgba(10,102,255,.12);
  display:flex;align-items:center;justify-content:center;
  flex:0 0 auto;
}
.catalog-icon i{color:var(--brand);font-size:18px}
.catalog-card h3{font-size:16px;letter-spacing:-.2px}
.catalog-card p{margin-top:6px;color:var(--muted);font-size:13px;line-height:1.6}
.rubric-icons{
  margin-top:10px;
  display:flex;gap:8px;align-items:center;flex-wrap:wrap;
}
.rubric-icons img{
  width:20px;height:20px;object-fit:contain;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  padding:2px;
}
.rubric-badge{
  display:inline-flex;align-items:center;gap:6px;
  padding:6px 10px;border-radius:999px;
  background:rgba(10,102,255,.09);
  border:1px solid rgba(10,102,255,.18);
  color:var(--text);
  font-size:11px;font-weight:850;
}
.rubric-badge i{color:var(--brand)}

.catalog-search{
  margin-top:14px;
  display:flex;align-items:center;gap:10px;
  padding:12px 12px;
  border-radius:14px;
  background:rgba(0,0,0,.03);
  border:1px solid rgba(0,0,0,.06);
}
.catalog-search i{color:var(--muted)}
.catalog-search input{
  border:0;outline:0;background:transparent;
  width:100%;
  font-size:14px;
}
.catalog-clear{
  border:1px solid rgba(0,0,0,.08);
  background:#fff;
  color:var(--muted);
  width:28px;height:28px;border-radius:999px;
  display:none;
  align-items:center;justify-content:center;
  font-size:14px;font-weight:900;
  cursor:pointer;
  flex:0 0 auto;
}
.catalog-search.has-query .catalog-clear{display:inline-flex}
.catalog-clear:hover{color:var(--text);background:rgba(0,0,0,.04)}
.catalog-filter-feedback{
  margin-top:8px;
  font-size:12px;
  color:var(--muted);
  font-weight:750;
}
.catalog-wa-quick{
  margin-top:8px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  background:rgba(37,211,102,.12);
  border:1px solid rgba(37,211,102,.35);
  color:#0a6c3e;
  padding:8px 10px;
  border-radius:12px;
  font-size:12px;
  font-weight:850;
}
.catalog-wa-quick i{color:#25D366}
.catalog-wa-quick:hover{background:rgba(37,211,102,.18)}
.catalog-list li.is-hidden{display:none !important}

.catalog-accordion{margin-top:12px}
.catalog-accordion details{
  border:1px solid rgba(0,0,0,.06);
  background:rgba(255,255,255,.85);
  border-radius:14px;
  padding:8px 10px;
  margin-top:10px;
}
.catalog-accordion summary{
  list-style:none;
  cursor:pointer;
  display:flex;align-items:center;justify-content:space-between;
  gap:10px;
  font-weight:900;
  font-size:13px;
  color:var(--text);
  padding:6px 2px;
}
.catalog-accordion summary::-webkit-details-marker{display:none}
.catalog-accordion .chev i{
  color:var(--muted);
  transition:transform .15s ease;
}
.catalog-accordion details[open] .chev i{transform:rotate(180deg)}

.catalog-list{
  list-style:none;
  display:grid;
  gap:8px;
  padding:10px 2px 6px;
}
.catalog-list li{
  position:relative;
  display:flex;align-items:flex-start;gap:10px;
  color:var(--text);
  font-size:13px;
  font-weight:750;
  padding-left:28px;
}
.catalog-list li::before{
  content:"\2713";
  display:grid;
  place-items:center;
  width:18px;height:18px;border-radius:999px;
  background:rgba(37,211,102,.14);
  border:1px solid rgba(37,211,102,.25);
  color:rgba(37,211,102,1);
  font-weight:950;
  font-size:12px;
  position:absolute;
  left:0;
  top:0;
}
.catalog-list li::after{
  content:none;
}
.catalog-list.flat{
  margin-top:12px;
  border-top:1px solid rgba(0,0,0,.06);
  padding-top:14px;
}
.catalog-list.flat.collapsible{
  position:relative;
  max-height:260px;
  overflow:hidden;
  transition:max-height .2s ease;
}
.catalog-list.flat.collapsible.is-collapsed::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:0;
  height:56px;
  background:linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,.96) 70%);
  pointer-events:none;
}
.catalog-list.flat.is-expanded{max-height:none}
.catalog-more{
  margin-top:10px;
  border:1px solid rgba(10,102,255,.24);
  background:rgba(10,102,255,.08);
  color:var(--brand);
  padding:8px 12px;
  border-radius:12px;
  font-size:12px;
  font-weight:900;
  cursor:pointer;
}
.catalog-more:hover{background:rgba(10,102,255,.13)}
.catalog-footnote{
  margin-top:12px;
  color:var(--muted);
  font-size:12px;
  display:flex;gap:8px;align-items:flex-start;
}
.catalog-footnote i{color:var(--brand);margin-top:2px}

/* Catalogus refactor */
.catalogus-summary-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.catalogus-summary-card{
  background:rgba(255,255,255,.92);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow-soft);
  display:flex;
  flex-direction:column;
  gap:10px;
}
.catalogus-summary-card h3{font-size:17px;letter-spacing:-.2px}
.catalogus-summary-card p{color:var(--muted);font-size:13px;line-height:1.6}
.catalogus-summary-card ul{list-style:none;display:grid;gap:6px}
.catalogus-summary-card li{font-size:13px;font-weight:760;color:var(--text);padding-left:16px;position:relative}
.catalogus-summary-card li::before{content:"•";position:absolute;left:0;color:var(--brand);font-weight:900}
.catalogus-summary-wa{margin-top:auto}

.catalogus-details-toggle-wrap{
  margin-top:14px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
}
.catalogus-toggle-btn{font-weight:900}
.catalogus-toggle-tip{font-size:12px;color:var(--muted)}

.catalogus-details{
  margin-top:12px;
  overflow:hidden;
  max-height:0;
  opacity:0;
  transition:max-height .35s ease, opacity .25s ease;
}
.catalogus-details.is-open{
  opacity:1;
}

@media (prefers-reduced-motion: reduce){
  .catalogus-details{transition:none}
}

/* Pills */
.pill-grid{
  margin-top:12px;
  display:flex;gap:8px;flex-wrap:wrap;
}
.pill{
  display:inline-flex;align-items:center;justify-content:center;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(10,102,255,.08);
  border:1px solid rgba(10,102,255,.14);
  color:var(--text);
  font-weight:850;
  font-size:12px;
}

/* Logos marquee */
.logos{padding:22px 0 10px}
.device-quiz{
  margin-top:16px;
  background:rgba(255,255,255,.75);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:14px;
  box-shadow:var(--shadow-soft);
}
.device-quiz-title{
  font-size:16px;
  font-weight:900;
  margin-bottom:10px;
}
.device-quiz-actions{
  display:grid;
  grid-template-columns:1fr;
  gap:8px;
}
.device-quiz-btn{
  border:1px solid rgba(10,102,255,.18);
  background:rgba(10,102,255,.05);
  color:var(--text);
  border-radius:12px;
  padding:11px 12px;
  font-size:14px;
  font-weight:850;
  text-align:left;
  cursor:pointer;
  transition:background .2s ease, border-color .2s ease, transform .15s ease;
}
.device-quiz-btn:hover{transform:translateY(-1px)}
.device-quiz-btn.is-active{
  background:rgba(10,102,255,.12);
  border-color:rgba(10,102,255,.35);
}
.recommend-card{
  margin-top:10px;
  background:rgba(255,255,255,.95);
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px;
}
.recommend-kicker{
  color:var(--brand);
  font-size:12px;
  font-weight:900;
  letter-spacing:.4px;
}
.recommend-title{
  margin-top:4px;
  font-size:16px;
  font-weight:900;
}
.recommend-reasons{
  list-style:none;
  margin-top:8px;
  display:grid;
  gap:6px;
}
.recommend-reasons li{
  font-size:13px;
  color:var(--text);
  font-weight:760;
  padding-left:16px;
  position:relative;
}
.recommend-reasons li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--wa);
  font-weight:900;
}
.recommend-card .btn{margin-top:10px;width:100%}

.logo-marquee{
  margin-top:18px;
  background:rgba(255,255,255,.70);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
}
.logo-track{
  display:flex;gap:14px;align-items:center;
  padding:14px;
  width:max-content;
  animation: marquee 26s linear infinite;
}
.logo-chip{
  width:190px;
  background:#0b1220;
  border-radius:16px;
  padding:12px;
  display:flex;align-items:center;justify-content:center;
}
.logo-chip img{max-height:42px;object-fit:contain;filter:brightness(1.1)}
@keyframes marquee{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}
.cta-inline{display:flex;justify-content:center;margin-top:16px}
.compat-wrap{margin-top:14px}
.compat-title{
  font-size:16px;
  font-weight:900;
}
.compat-scroller{
  margin-top:10px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
}
.compat-grid{
  display:flex;
  gap:8px;
  width:max-content;
  min-width:100%;
}
.compat-item{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:1px solid var(--border);
  border-radius:14px;
  background:rgba(255,255,255,.88);
  padding:10px 12px;
  font-size:13px;
  font-weight:800;
  white-space:nowrap;
}
.compat-item img{
  width:28px;
  height:28px;
  object-fit:contain;
  flex:0 0 auto;
}
.compat-item span{
  display:inline-block;
  line-height:1.25;
}

/* Benefits */
.benefits{padding:34px 0}
.benefit-grid{
  margin-top:20px;
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.card{
  background:rgba(255,255,255,.92);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px 16px;
  box-shadow:var(--shadow-soft);
  transition:transform .15s ease, box-shadow .2s ease;
  min-height:180px;
}
.card:hover{transform:translateY(-2px);box-shadow:var(--shadow)}
.card-icon{
  width:42px;height:42px;border-radius:14px;
  background:rgba(10,102,255,.12);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:10px;
}
.card-icon i{color:var(--brand);font-size:18px}
.card h3{font-size:16px;letter-spacing:-.2px}
.card p{margin-top:8px;color:var(--muted);font-size:13px;line-height:1.65}

/* Steps */
.steps{padding:10px 0 34px}
.step-grid{
  margin-top:18px;
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.step{
  background:rgba(255,255,255,.92);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px 16px;
  box-shadow:var(--shadow-soft);
}
.step-badge{
  width:34px;height:34px;border-radius:999px;
  background:var(--brand);color:#fff;font-weight:950;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:10px;
}
.step h3{font-size:16px}
.step p{margin-top:8px;color:var(--muted);font-size:13px;line-height:1.65}

/* Pricing */
.pricing{
  padding:56px 0 40px;
  background:linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.pricing-grid{
  margin-top:24px;
  display:grid;grid-template-columns:repeat(2,1fr);
  gap:18px;
  align-items:start;
  margin-bottom:22px;
}
.price-card{
  position:relative;
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:32px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  display:flex;flex-direction:column;gap:12px;
  transition:all .25s ease;
}
.price-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 50px rgba(0,0,0,.15);
}
.price-card .price-top{padding:2px 0}
.plan-header{
  padding-bottom:12px;
  margin-bottom:12px;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.plan-name{
  font-size:26px;
  font-weight:700;
  letter-spacing:-0.4px;
  line-height:1.2;
  color:#111827;
  margin-bottom:6px;
}
.plan-subtitle{
  color:#6B7280;
  font-size:13px;
  font-weight:500;
  line-height:1.45;
  margin-top:0;
}
.price-card.starter .plan-name{color:#1d4ed8}
.price-card.starter .plan-subtitle{color:#3b82f6}
.price-card.basic .plan-name{color:#0f172a}
.price-card.basic .plan-subtitle{color:#475569}
.price-card.silver .plan-name{color:#475569}
.price-card.silver .plan-subtitle{color:#64748b}
.price-card.gold .plan-subtitle{color:#8a6a00}
.gold-title{
  background:linear-gradient(90deg,#FFD700,#FFB800);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  color:transparent;
  font-weight:800;
}
.plan-duration{color:#374151;font-size:14px;font-weight:600;margin-top:14px;line-height:1.45}
.duration-subline{
  display:block;
  font-size:13px;
  font-weight:500;
  color:#6B7280;
  margin-top:2px;
}
.plan-price{margin-top:14px;font-size:42px;font-weight:700;color:#0f172a;letter-spacing:-.5px;line-height:1.05}
.plan-meta{margin-top:8px;color:#6B7280;font-size:14px;font-weight:500}
.plan-value{
  margin-top:12px;
  background:rgba(255,184,0,.10);
  border:1px solid rgba(255,184,0,.28);
  border-radius:12px;
  padding:10px 12px;
  display:grid;
  gap:4px;
}
.plan-value span{font-size:12px;font-weight:700;color:#8a6a00;text-transform:uppercase;letter-spacing:.3px}
.plan-value strong{font-size:14px;font-weight:800;color:#3f3200}
.plan-list{
  list-style:none;
  display:grid;
  gap:10px;
  margin-top:6px;
  margin-bottom:0;
}
.plan-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:#111827;
  font-size:15px;
  font-weight:600;
  margin-bottom:0;
}
.plan-list i{color:var(--wa);margin-top:2px}
.pricing .price-card .btn{
  height:52px;
  border-radius:14px;
  font-size:16px;
  font-weight:600;
  background:#2563EB;
  color:#fff;
  box-shadow:none;
  margin-top:8px;
}
.pricing .price-card .btn:hover{
  transform:scale(1.03);
}
.pricing .price-card .btn.btn-gold{
  background:linear-gradient(135deg,#FFB800,#FFD700);
  color:#111;
  font-weight:700;
  box-shadow:0 10px 30px rgba(255,190,0,.35);
}
.pricing .price-card .btn.btn-gold:hover{
  transform:scale(1.03);
  box-shadow:0 20px 50px rgba(255,200,0,.4);
}
.badge{
  position:absolute;top:12px;right:12px;
  background:rgba(10,102,255,.10);
  border:1px solid rgba(10,102,255,.22);
  color:var(--brand);
  font-weight:800;font-size:12px;
  padding:7px 12px;border-radius:999px;
}
.badge-save{
  position:absolute;
  top:12px;
  left:12px;
  background:rgba(255,184,0,.16);
  border:1px solid rgba(255,184,0,.38);
  color:#8a6a00;
  font-size:11px;
  font-weight:800;
  padding:7px 10px;
  border-radius:999px;
  max-width:58%;
  white-space:normal;
  line-height:1.2;
  z-index:1;
}
.price-card.starter{
  border:2px solid transparent;
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(135deg,#dbeafe,#93c5fd) border-box;
  box-shadow:0 14px 34px rgba(59,130,246,.10);
}
.price-card.starter:hover{
  box-shadow:0 20px 50px rgba(59,130,246,.14);
}
.price-card.basic{
  border:2px solid transparent;
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(135deg,#e0e7ff,#c7d2fe) border-box;
  box-shadow:0 14px 34px rgba(99,102,241,.10);
}
.price-card.basic:hover{
  box-shadow:0 20px 50px rgba(99,102,241,.14);
}
.price-card.silver{
  border:2px solid transparent;
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(135deg,#e5e7eb,#cbd5e1) border-box;
  box-shadow:0 14px 34px rgba(100,116,139,.12);
}
.price-card.silver:hover{
  box-shadow:0 20px 50px rgba(100,116,139,.16);
}
.price-card.gold{
  z-index:3;
  border:2px solid transparent;
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(135deg,#FFD700,#FFB800) border-box;
  box-shadow:0 25px 60px rgba(0,0,0,.18);
  transform:none;
  transform-origin:center top;
}
.price-card.gold:hover{
  transform:translateY(-6px) scale(1.03);
  box-shadow:0 20px 50px rgba(255,200,0,.4);
}
.price-card.gold .badge{
  top:14px;
  right:12px;
  font-size:11px;
  padding:6px 10px;
  z-index:2;
}
.price-card.gold .badge-save{
  top:14px;
  left:12px;
  max-width:64%;
}
.price-card.gold .price-top{
  padding-top:36px;
}
.plan-trust{
  list-style:none;
  margin-top:8px;
  color:#6B7280;
  font-size:13px;
  display:grid;
  gap:6px;
}
.plan-trust li{
  position:relative;
  padding-left:18px;
}
.plan-trust li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#16a34a;
  font-weight:700;
}
.pricing-proof{
  margin-top:30px;
  text-align:center;
  color:#1f2937;
  font-size:15px;
  font-weight:700;
  position:relative;
  z-index:5;
}

/* Testimonials */
.testimonials{padding:26px 0 40px}
.reviews-summary{
  margin:14px auto 0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:fit-content;
  color:#1f2a3d;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(15,23,42,.10);
  border-radius:999px;
  padding:8px 12px;
  box-shadow:0 8px 18px rgba(2,6,23,.06);
  font-weight:900;
  font-size:14px;
}
.reviews-summary-icon{color:#f5b301;font-size:14px}
.testi-grid{
  margin-top:20px;
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.testi{
  background:linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.90));
  border:1px solid rgba(15,23,42,.10);
  border-radius:var(--radius);
  padding:18px 16px;
  box-shadow:0 12px 26px rgba(2,6,23,.07);
  transition:transform .18s ease, box-shadow .24s ease, border-color .2s ease;
}
.testi:hover{
  transform:translateY(-2px);
  border-color:rgba(10,102,255,.24);
  box-shadow:0 18px 34px rgba(2,6,23,.10);
}
.stars{color:#f5b301;font-weight:950;letter-spacing:1px}
.testi .review-text{
  margin-top:10px;
  color:var(--text);
  font-weight:750;
  line-height:1.65;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.testi.is-expanded .review-text{
  display:block;
  -webkit-line-clamp:unset;
  overflow:visible;
}
.review-toggle{
  margin-top:10px;
  background:rgba(10,102,255,.08);
  border:1px solid rgba(10,102,255,.18);
  color:#0b4fd8;
  font-weight:900;
  font-size:12px;
  cursor:pointer;
  padding:6px 10px;
  border-radius:10px;
}
.review-toggle:hover{
  background:rgba(10,102,255,.12);
  border-color:rgba(10,102,255,.28);
}
.review-toggle:focus-visible{
  outline:2px solid rgba(10,102,255,.34);
  outline-offset:2px;
}
.review-meta{
  margin-top:12px;
  display:flex;
  align-items:center;
  gap:10px;
}
.review-avatar{
  width:34px;
  height:34px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:900;
  color:#0b1220;
  background:linear-gradient(180deg, rgba(10,102,255,.16), rgba(10,102,255,.08));
  border:1px solid rgba(10,102,255,.22);
  box-shadow:0 6px 14px rgba(10,102,255,.16);
}
.who{display:inline-block;color:#5f697c;font-size:12px;font-weight:900;line-height:1.45}
.testi-cta-note{
  margin-top:12px;
  text-align:center;
  color:var(--muted);
  font-size:13px;
  font-weight:700;
}

.wa-float.wa-hidden{
  opacity:0;
  pointer-events:none;
  transform:translateY(8px) scale(.92);
}

/* FAQ */
.faq{padding:20px 0 44px}
.faq-list{margin-top:18px;display:grid;gap:10px;max-width:900px;margin-left:auto;margin-right:auto}
.faq-item{
  background:rgba(255,255,255,.95);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-soft);
}
.faq-q{
  width:100%;
  background:transparent;border:0;
  padding:16px 16px;
  display:flex;justify-content:space-between;align-items:center;
  font-weight:950;font-size:14px;cursor:pointer;
  color:var(--text);
}
.faq-q .plus{
  width:28px;height:28px;border-radius:999px;
  background:rgba(10,102,255,.10);
  border:1px solid rgba(10,102,255,.18);
  display:flex;align-items:center;justify-content:center;
  color:var(--brand);font-weight:950;
}
.faq-a{
  max-height:0;overflow:hidden;
  transition:max-height .25s ease;
  padding:0 16px;
}
.faq-a p{padding:0 0 14px;color:var(--muted);font-size:13px;line-height:1.7}
.faq-item.open .faq-a{max-height:260px}
.faq-item.open .plus{background:var(--brand);color:#fff;border-color:transparent}

/* Footer */
.footer{
  background:rgba(255,255,255,.92);
  border-top:1px solid var(--border);
  padding:26px 0 10px;
}
.footer-grid{
  display:grid;grid-template-columns:1.2fr 1fr 1fr 1fr;
  gap:16px;align-items:flex-start;
}
.footer-logo{height:58px;width:auto;object-fit:contain;margin-bottom:10px}
.footer-col h3{font-size:14px;font-weight:950;margin-bottom:10px}
.footer-col p{color:var(--muted);font-size:13px;line-height:1.7}
.footer-link{
  display:flex;align-items:center;gap:10px;
  text-decoration:none;color:var(--muted);
  font-weight:850;font-size:13px;
  margin:8px 0;
}
.footer-link i{color:var(--brand)}
.footer-link:hover{color:var(--text)}
.pay-grid{
  display:grid;grid-template-columns:repeat(2,1fr);
  gap:10px;
}
.pay-grid img{
  background:#fff;border:1px solid var(--border);
  border-radius:12px;padding:10px; height:48px;
  object-fit:contain;width:100%;
}
.footer-bottom{padding:16px 0}
.footer-bottom p{text-align:center;color:var(--muted);font-size:12px}

/* WhatsApp floating */
.wa-float{
  position:fixed;right:18px;bottom:92px;z-index:999;
  width:62px;height:62px;border-radius:999px;
  background:var(--wa);color:#fff;
  display:flex;align-items:center;justify-content:center;
  text-decoration:none;font-size:30px;
  box-shadow:0 14px 26px rgba(37,211,102,.35);
  transition:opacity .2s ease, transform .2s ease;
}
.wa-float:hover{transform:translateY(-1px)}
@keyframes waPulse{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,.38), 0 14px 26px rgba(37,211,102,.35)}
  100%{box-shadow:0 0 0 14px rgba(37,211,102,0), 0 14px 26px rgba(37,211,102,.35)}
}

/* Mobile bottom CTA */
.mobile-cta{
  display:none;
  position:fixed;left:0;right:0;bottom:0;
  padding:12px 12px;
  background:rgba(255,255,255,.92);
  border-top:1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index:998;
}

/* Responsive layout */
@media (max-width:1100px){
  .hero-grid{grid-template-columns:1fr;gap:18px}
  .hero-title{font-size:38px}
  .benefit-grid{grid-template-columns:repeat(2,1fr)}
  .pricing-grid{grid-template-columns:repeat(2,1fr)}
  .price-card{padding:26px}
  .price-card.gold{transform:none}
  .price-card.gold:hover{transform:translateY(-6px) scale(1.02)}
  .price-card.gold .badge{top:14px}
  .price-card.gold .price-top{padding-top:38px}
  .footer-grid{grid-template-columns:repeat(2,1fr)}
  .catalog-grid{grid-template-columns:1fr}
}

@media (max-width:900px){
  html{scroll-padding-top: calc(var(--header-h) + 16px);}

  .header{
    background:#fff !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
  }

  /* navbar smaller */
  .header-inner{padding:10px 0 !important;}
  .brand-logo{height:52px !important;}

  .menu-btn{display:inline-flex !important;}
  .desktop-only{display:none !important;}
  .mobile-only{display:inline-flex !important;}

  /* CRITICAL: prevent nav overlay issue */
  .nav{
    display:flex !important;
    position:fixed !important;
    left:0;right:0;
    top: var(--mobile-nav-top) !important;
    bottom:0;
    z-index:999 !important;

    background:#fff;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;

    flex-direction:column !important;
    align-items:flex-start !important;
    padding:16px 18px !important;
    gap:10px !important;
    min-height:calc(100dvh - var(--mobile-nav-top));
    overflow-y:auto;

    border-top:1px solid var(--border);
    box-shadow:0 18px 40px rgba(2, 6, 23, .12);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(-8px);
    transition:opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .nav.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
  }

  .nav-link{
    width:100%;
    padding:12px 10px !important;
    border-radius:12px;
    font-size:16px !important;
    font-weight:850;
    color:var(--text) !important;
  }
  .nav-link:hover{background:rgba(0,0,0,.04);color:var(--text) !important;}

  .hero{padding-top:18px !important;}
  .hero-title{font-size:32px}
  .hero-actions{flex-direction:column}
  .trustpilot-container{width:100%}
  .testi-grid{grid-template-columns:1fr}
  .testi .review-text{-webkit-line-clamp:4}
  .step-grid{grid-template-columns:1fr}
  .pricing-grid{grid-template-columns:1fr}
  .price-card{padding:24px}
  .price-card.gold,
  .price-card.gold:hover{transform:none}
  .price-card.gold{box-shadow:0 20px 44px rgba(0,0,0,.14)}
  .price-card.starter{order:1}
  .price-card.basic{order:2}
  .price-card.silver{order:3}
  .price-card.gold{order:4}
  .benefit-grid{grid-template-columns:1fr}
  .catalogus-summary-grid{grid-template-columns:1fr}
  .catalogus-summary-wa{width:100%}
  .device-quiz-btn{width:100%}

  /* Catalog UX on mobile: cleaner and faster to scan */
  .catalog-card{padding:14px}
  .catalog .pill-grid{display:none}
  .catalog-search{margin-top:10px}
  .catalog-list{
    gap:6px;
    padding:8px 2px 4px;
  }
  .catalog-list li{
    font-size:12px;
    line-height:1.35;
    padding-left:24px;
  }
  .catalog-list li::before{
    width:16px;height:16px;
    font-size:11px;
  }
  .catalog-list.flat{
    max-height:300px;
    overflow:auto;
    padding-right:4px;
    -webkit-overflow-scrolling:touch;
  }
  .catalog-list.flat::-webkit-scrollbar{width:6px}
  .catalog-list.flat::-webkit-scrollbar-thumb{
    background:rgba(0,0,0,.16);
    border-radius:999px;
  }
  .poster-card{width:155px}
  .poster-card img{height:205px}
  .channels-card{width:165px}
  .channels-card img{height:108px}

  .mobile-cta{display:block}
  .wa-float{
    display:flex;
    width:56px;
    height:56px;
    right:12px;
    bottom:94px;
    font-size:28px;
    animation:waPulse 1.9s ease-out infinite;
  }
  body{padding-bottom:84px}
  body.menu-open .mobile-cta{display:none !important}
  body.menu-open .hero,
  body.menu-open section,
  body.menu-open footer{visibility:hidden}
  body.menu-open .header,
  body.menu-open .topbar{visibility:visible}
}

@media (min-width:901px){
  .device-quiz-actions{grid-template-columns:repeat(3,1fr)}
  .compat-grid{
    display:grid;
    grid-template-columns:repeat(6,minmax(0,1fr));
    gap:10px;
    width:100%;
  }
  .compat-item{
    border-radius:12px;
    white-space:normal;
    text-align:center;
    min-height:56px;
    flex-direction:column;
    gap:8px;
  }
  .compat-item img{
    width:34px;
    height:34px;
  }
  .menu-btn{display:none !important;}
  .nav{position:static !important;display:flex !important;}
}

@media (max-width:480px){
  .hero-title{font-size:28px}
  .trustpilot-badge{gap:8px}
  .tp-stars{gap:3px}
  .tp-star{width:16px;height:16px;font-size:11px}
  .tp-score{font-size:13px}
}

/* Tablet tuning: avoid tiny/zoomed feel and keep balanced hero layout */
@media (min-width:700px) and (max-width:1024px){
  .container{padding:0 22px}
  .topbar-inner{justify-content:flex-start;gap:10px}
  .topbar-item{font-size:12px}
  .hero{padding:24px 0 18px}
  .hero-grid{
    grid-template-columns:1fr 1fr;
    gap:18px;
    align-items:start;
  }
  .hero-title{font-size:40px;line-height:1.08}
  .hero-subtitle{font-size:15px;line-height:1.6}
  .hero-bullets li{font-size:14px}
  .hero-actions{flex-direction:row;gap:10px}
  .hero-actions .btn{flex:1}
  .benefits-row{gap:8px}
  .benefit-badge{font-size:12px;padding:6px 10px}
}

@media (prefers-reduced-motion: reduce){
  .device-quiz-btn,
  .channels-card,
  .poster-card{transition:none}
  .channels-card:hover,
  .poster-card:hover{transform:none}
}
