/* ============================================================
   AtlasTV UK — style.css  (black + crimson theme)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --bg: #0a0a0c;
  --bg-2: #0f0f12;
  --surface: #141418;
  --surface-2: #1a1a20;
  --border: rgba(255,255,255,.08);
  --border-strong: rgba(255,255,255,.16);

  --ink: #f4f4f6;
  --muted: #a2a2ae;
  --faint: #71717f;

  --crimson: #e11d2a;
  --crimson-600: #c2101c;
  --crimson-400: #ff4d59;
  --crimson-soft: rgba(225,29,42,.14);

  --grad: linear-gradient(135deg, #ff4d59 0%, #e11d2a 45%, #a10e18 100%);
  --grad-text: linear-gradient(100deg, #ff6b74, #e11d2a);
  --glow: 0 0 60px rgba(225,29,42,.35);

  --shadow-sm: 0 2px 10px rgba(0,0,0,.4);
  --shadow-md: 0 12px 40px rgba(0,0,0,.5);
  --shadow-lg: 0 30px 80px rgba(0,0,0,.6);

  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --space-1:.4rem; --space-2:.8rem; --space-3:1.2rem; --space-4:1.6rem;
  --space-5:2.4rem; --space-6:3.2rem; --space-7:4.8rem; --space-8:6.4rem;
}

/* ---------- Reset-ish ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; margin: 0 0 .6rem; letter-spacing: -.02em; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: var(--space-8) 0; position: relative; }
.section--soft { background: var(--bg-2); }
.text-grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.text-crimson { color: var(--crimson-400); }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--crimson); color:#fff; padding:.6rem 1rem; z-index: 999; }
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .2s ease, background .2s, border-color .2s; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 8px 24px rgba(225,29,42,.35); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(225,29,42,.5); }
.btn--ghost { background: rgba(255,255,255,.04); color: var(--ink); border-color: var(--border-strong); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--crimson-400); background: rgba(255,255,255,.07); }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.site-header.is-scrolled { background: rgba(6,6,8,.94); backdrop-filter: blur(14px); border-bottom-color: var(--border); }
.brand { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; letter-spacing: -.02em; }
.brand__icon { height: 64px; width: auto; display: block; flex-shrink: 0; }
.brand__word { color: #fff; }
.brand__word span { color: var(--crimson-400); }
.brand__tld { font-style: normal; font-size: .7em; font-weight: 600; color: var(--muted); margin-left: 1px; }
.nav { display: flex; gap: 1.6rem; }
.nav a { color: var(--muted); font-size: .95rem; font-weight: 500; transition: color .18s; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: .8rem; }
.nav-toggle { display: none; background: none; border: 0; color: var(--ink); cursor: pointer; padding: .3rem; }
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Mobile nav ---------- */
.mobile-nav { position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.6); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .25s; }
.mobile-nav.is-open { opacity: 1; pointer-events: auto; }
.mobile-nav__panel { position: absolute; top: 0; right: 0; height: 100%; width: min(84%, 340px); background: var(--surface); border-left: 1px solid var(--border); padding: 1.5rem; transform: translateX(100%); transition: transform .3s ease; display: flex; flex-direction: column; gap: .4rem; }
.mobile-nav.is-open .mobile-nav__panel { transform: none; }
.mobile-nav__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; font-family: var(--font-display); font-weight: 700; }
.nav-close { background: none; border: 0; color: var(--ink); cursor: pointer; }
.nav-close svg { width: 26px; height: 26px; }
.mobile-nav__panel a { padding: .8rem .4rem; color: var(--ink); border-bottom: 1px solid var(--border); font-weight: 500; }
.mobile-nav__panel a.btn { border: 1px solid transparent; justify-content: center; margin-top: 1rem; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg::before { content: ""; position: absolute; top: -12%; left: -6%; width: 820px; height: 820px; background: radial-gradient(circle, rgba(225,29,42,.30), transparent 62%); filter: blur(34px); }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 82%, var(--bg)); }
.hero__grid { position: absolute; inset: 0; background-image: repeating-linear-gradient(122deg, transparent 0 73px, rgba(255,255,255,.06) 73px 74px); mask-image: linear-gradient(180deg, #000 92%, transparent); }
.hero__inner { max-width: 820px; margin: 0 auto; text-align: center; position: relative; }
.eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--crimson-400); background: #08080a; border: 1px solid rgba(225,29,42,.3); padding: .45rem 1rem; border-radius: 999px; margin-bottom: 1.4rem; }
.flag-uk { width: 22px; height: 13px; border-radius: 3px; display: inline-block; overflow: hidden; box-shadow: 0 0 0 1px rgba(255,255,255,.18); flex-shrink: 0; }
.flag-uk svg { display: block; width: 100%; height: 100%; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); margin-bottom: 1.2rem; }
.hero__sub { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--muted); max-width: 660px; margin: 0 auto 2rem; }
.hero__cta { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero .trust-cards { margin: 0 auto 3rem; }
.hero__stats-label { text-align: center; font-family: var(--font-display); font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--faint); margin-bottom: 1.5rem; }
.hero__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: 720px; margin: 0 auto; }
.stat { text-align: center; padding: .4rem; }
.stat__num { font-family: var(--font-display); font-size: clamp(1.5rem, 3.2vw, 2.2rem); font-weight: 700; color: var(--crimson-400); white-space: nowrap; }
.stat__label { font-size: .78rem; color: var(--faint); text-transform: uppercase; letter-spacing: .06em; }

/* ---------- Trust strip ---------- */
.trust { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); padding: 2.2rem 0; }
.trust-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 900px; margin: 0 auto; }
.trust-card { display: flex; align-items: center; gap: .9rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.1rem 1.3rem; transition: transform .2s, border-color .2s; }
.trust-card:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.trust-card__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--crimson-soft); border: 1px solid rgba(225,29,42,.25); color: var(--crimson-400); display: grid; place-items: center; flex-shrink: 0; }
.trust-card__ic svg { width: 24px; height: 24px; }
.trust-card strong { font-family: var(--font-display); font-size: 1.02rem; display: block; line-height: 1.3; }
.trust-card span { color: var(--faint); font-size: .85rem; }

/* ---------- Section head ---------- */
.section-head { text-align: center; max-width: 640px; margin: 0 auto var(--space-6); }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.section-head p { color: var(--muted); }

/* ---------- Grid ---------- */
[hidden] { display: none !important; }
.grid { display: grid; gap: 1.4rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Cards / features ---------- */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.6rem; transition: transform .2s, border-color .2s, box-shadow .2s; }
.card--hover:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.feature-card .icon-chip { margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.2rem; }
.feature-card p { color: var(--muted); font-size: .95rem; margin: 0; }
.icon-chip { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--crimson-soft); color: var(--crimson-400); border: 1px solid rgba(225,29,42,.25); }
.icon-chip svg { width: 26px; height: 26px; }

/* ---------- Devices ---------- */
.device-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.device-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .5rem; padding: 1.5rem 1rem; }
.device-card .icon-chip { margin-bottom: .4rem; }
.device-card strong { font-family: var(--font-display); }
.device-card span { color: var(--faint); font-size: .85rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.step { position: relative; overflow: hidden; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.2rem 1.7rem; }
.step__bg { position: absolute; top: .5rem; left: 1.3rem; font-family: var(--font-display); font-weight: 700; font-size: 4rem; line-height: 1; color: rgba(255,255,255,.07); pointer-events: none; user-select: none; }
.step__ic { position: relative; width: 54px; height: 54px; border-radius: 14px; background: var(--crimson-soft); border: 1px solid rgba(225,29,42,.3); color: var(--crimson-400); display: grid; place-items: center; margin: 0 auto 1.1rem; }
.step__ic svg { width: 26px; height: 26px; }
.step h3 { position: relative; font-size: 1.2rem; }
.step p { position: relative; color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Performance section ---------- */
.perf-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; align-items: center; }
.perf-copy .eyebrow { margin-bottom: 1.2rem; }
.perf-copy h2 { font-size: clamp(2rem, 4vw, 3rem); }
.perf-intro { color: var(--muted); margin-bottom: 2rem; }
.perf-list { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.perf-item { display: flex; gap: 1rem; }
.perf-item__ic { width: 44px; height: 44px; border-radius: 12px; background: var(--crimson-soft); border: 1px solid rgba(225,29,42,.25); color: var(--crimson-400); display: grid; place-items: center; flex-shrink: 0; }
.perf-item__ic svg { width: 22px; height: 22px; }
.perf-item h3 { font-size: 1.08rem; margin-bottom: .3rem; }
.perf-item p { color: var(--muted); font-size: .93rem; margin: 0; }
.perf-highlight a { font-family: var(--font-display); font-weight: 700; color: var(--crimson-400); font-size: 1.05rem; }
.perf-highlight a:hover { color: var(--crimson-400); text-decoration: underline; }
.perf-highlight p { color: var(--faint); font-size: .9rem; margin: .4rem 0 0; }
.perf-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.perf-stat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 1.6rem; text-align: center; transition: transform .2s, border-color .2s; }
.perf-stat:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.perf-stat__ic { width: 48px; height: 48px; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--border); color: var(--crimson-400); display: grid; place-items: center; margin: 0 auto 1.1rem; }
.perf-stat__ic svg { width: 24px; height: 24px; }
.perf-stat__num { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--crimson-400); }
.perf-stat__label { color: var(--faint); font-size: .85rem; margin-top: .2rem; }

/* ---------- Pricing ---------- */
.pricing-toggle { display: inline-flex; gap: .3rem; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: .35rem; margin: 0 auto var(--space-6); }
.pricing-toggle button { font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--muted); background: none; border: 0; padding: .6rem 1.3rem; border-radius: 999px; cursor: pointer; transition: background .2s, color .2s; }
.pricing-toggle button[aria-selected="true"] { background: var(--grad); color: #fff; }
.price-card { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 1.7rem; display: flex; flex-direction: column; transition: transform .2s, border-color .2s, box-shadow .2s; }
.price-card:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.price-card--featured { border-color: rgba(225,29,42,.5); box-shadow: var(--glow); background: linear-gradient(180deg, rgba(225,29,42,.08), var(--surface)); }
.price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; padding: .35rem 1rem; border-radius: 999px; white-space: nowrap; }
.price-card__term { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.price-card__save { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--crimson-400); background: var(--crimson-soft); padding: .2rem .55rem; border-radius: 999px; }
.price-card__price { display: flex; align-items: flex-start; gap: .15rem; margin: 1rem 0 .3rem; font-family: var(--font-display); }
.price-card__price .currency { font-size: 1.5rem; font-weight: 700; margin-top: .5rem; color: var(--muted); }
.price-card__price .amount { font-size: 3.1rem; font-weight: 700; line-height: 1; }
.price-card__note { color: var(--faint); font-size: .88rem; margin-bottom: 1.4rem; }
.price-card__features { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 1.6rem; }
.price-card__features li { display: flex; align-items: center; gap: .6rem; font-size: .92rem; color: var(--muted); }
.price-card__features svg { width: 18px; height: 18px; color: var(--crimson-400); flex-shrink: 0; }
.price-card .btn { margin-top: auto; }
.pay-methods { margin-top: 1rem; text-align: center; }
.pay-methods > span { font-size: .72rem; color: var(--faint); text-transform: uppercase; letter-spacing: .06em; }
.pay-methods .methods { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; margin-top: .5rem; }
.pay-methods .methods span { font-size: .72rem; color: var(--muted); border: 1px solid var(--border); border-radius: 6px; padding: .2rem .5rem; }
.compare-note { text-align: center; color: var(--muted); font-size: .95rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 1.4rem; }
.compare-note b { color: var(--ink); }

/* ---------- Rating summary bar ---------- */
.rating-bar { display: grid; grid-template-columns: 1fr 1.4fr 1fr; align-items: center; gap: 1.2rem; max-width: 560px; margin: 0 auto 2.6rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.2rem 1.6rem; }
.rating-bar__score strong, .rating-bar__sat strong { font-size: 1.9rem; }
.rating-bar__score, .rating-bar__sat { text-align: center; }
.rating-bar__score strong { display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--crimson-400); line-height: 1; }
.rating-bar__score span { font-size: .82rem; color: var(--faint); }
.rating-bar__mid { text-align: center; border-left: 1px solid var(--border); border-right: 1px solid var(--border); padding: 0 1rem; }
.rating-bar__stars { color: #ffb020; letter-spacing: .15em; font-size: 1.15rem; margin-bottom: .3rem; }
.rating-bar__mid p { color: var(--muted); font-size: .9rem; margin: 0; }
.rating-bar__mid strong { color: var(--ink); }
.rating-bar__sat strong { display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: #22c55e; line-height: 1; }
.rating-bar__sat span { font-size: .82rem; color: var(--faint); }

/* ---------- Reviews carousel ---------- */
.carousel { position: relative; }
.card-scroller { display: grid; grid-auto-flow: column; grid-auto-columns: calc(33.333% - .95rem); gap: 1.4rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1rem; scrollbar-width: none; }
.card-scroller::-webkit-scrollbar { display: none; }
.card-scroller > * { scroll-snap-align: start; }
.review-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.6rem; }
.review-card__head { display: flex; align-items: center; gap: .8rem; margin-bottom: .8rem; }
.review-card__avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; }
.review-card__name { font-family: var(--font-display); font-weight: 600; }
.review-card__loc { font-size: .82rem; color: var(--faint); }
.review-card__stars { color: #ffb020; letter-spacing: .1em; margin-bottom: .5rem; }
.review-card__stars .dim { color: #43434d; }
.review-card p { color: var(--muted); font-size: .93rem; margin: 0 0 .8rem; }
.review-card__tag { font-size: .72rem; color: var(--crimson-400); background: var(--crimson-soft); padding: .25rem .7rem; border-radius: 999px; }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.4rem; }
.carousel-dots { display: flex; gap: .4rem; }
.carousel-dots button { width: 8px; height: 8px; border-radius: 999px; border: 0; background: var(--border-strong); cursor: pointer; transition: width .2s, background .2s; }
.carousel-dots button[aria-current="true"] { width: 24px; background: var(--crimson); }
.carousel-arrow { width: 44px; height: 44px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border-strong); color: var(--ink); cursor: pointer; display: grid; place-items: center; transition: background .2s, border-color .2s; }
.carousel-arrow:hover { border-color: var(--crimson-400); background: rgba(255,255,255,.06); }
.carousel-arrow svg { width: 20px; height: 20px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: .8rem; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item__q { width: 100%; text-align: left; background: none; border: 0; color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; padding: 1.2rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; }
.faq-item__q .ic { flex-shrink: 0; width: 24px; height: 24px; transition: transform .25s; }
.faq-item__q .ic svg { width: 24px; height: 24px; color: var(--crimson-400); }
.faq-item[aria-expanded="true"] .ic { transform: rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item__a p { color: var(--muted); font-size: .95rem; padding: 0 1.4rem 1.3rem; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, rgba(225,29,42,.16), var(--surface)); border: 1px solid rgba(225,29,42,.3); border-radius: var(--radius-xl); padding: var(--space-7) var(--space-5); text-align: center; }
.cta-band::before { content: ""; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(225,29,42,.3), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cta-band p { color: var(--muted); max-width: 520px; margin: 0 auto 1.8rem; }
.cta-band__btns { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Blog cards ---------- */
.blog-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2.4rem; flex-wrap: wrap; }
.blog-head .eyebrow { margin-bottom: 1rem; }
.blog-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.blog-head p { color: var(--muted); margin: 0; max-width: 520px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.blog-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, border-color .2s, box-shadow .2s; }
.blog-card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.blog-card__img { display: block; aspect-ratio: 16 / 10; position: relative; overflow: hidden; }
.blog-card__img--grad { background: var(--grad); }
.blog-card__img--grad::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(122deg, transparent 0 22px, rgba(0,0,0,.10) 22px 23px); }
.blog-card__img svg { position: absolute; inset: 0; margin: auto; width: 54px; height: 54px; color: rgba(255,255,255,.9); z-index: 1; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card__body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.blog-card__meta { display: flex; align-items: center; gap: .8rem; margin-bottom: .8rem; }
.blog-badge { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--crimson-400); background: var(--crimson-soft); border: 1px solid rgba(225,29,42,.25); padding: .28rem .7rem; border-radius: 999px; }
.blog-time { display: inline-flex; align-items: center; gap: .3rem; font-size: .8rem; color: var(--faint); }
.blog-time svg { width: 15px; height: 15px; }
.blog-card__body h3 { font-size: 1.12rem; line-height: 1.35; margin-bottom: .5rem; }
.blog-card__body h3 a:hover { color: var(--crimson-400); }
.blog-card__body p { color: var(--muted); font-size: .9rem; margin: 0 0 1.2rem; }
.blog-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: .4rem; }
.blog-card__date { font-size: .82rem; color: var(--faint); }
.blog-card__link { font-family: var(--font-display); font-weight: 600; color: var(--crimson-400); font-size: .9rem; }
.blog-card__link:hover { text-decoration: underline; }

/* ---------- Article prose ---------- */
.prose { max-width: 780px; margin: 0 auto; }
.prose .lead { font-size: 1.18rem; color: var(--ink); margin-bottom: 1.6rem; }
.prose h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 2.4rem 0 .8rem; }
.prose h3 { font-size: 1.2rem; margin: 1.8rem 0 .6rem; }
.prose p { color: var(--muted); margin-bottom: 1.1rem; }
.prose ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 1.2rem; }
.prose li { color: var(--muted); margin-bottom: .5rem; }
.prose a { color: var(--crimson-400); }
.prose a:hover { text-decoration: underline; }
.prose a.btn--primary { color: #fff; }
.prose a.btn--ghost { color: var(--ink); }
.prose a.btn:hover { text-decoration: none; }
.prose strong { color: var(--ink); }
.prose .table-wrap { overflow-x: auto; margin: 0 0 1.4rem; border: 1px solid var(--border); border-radius: var(--radius); }
.prose table { width: 100%; border-collapse: collapse; font-size: .92rem; min-width: 420px; }
.prose th, .prose td { text-align: left; padding: .7rem 1rem; border-bottom: 1px solid var(--border); color: var(--muted); }
.prose th { color: var(--ink); font-family: var(--font-display); background: var(--surface-2); }
.prose tr:last-child td { border-bottom: 0; }
.article-figure { margin: 0 0 2rem; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.article-figure img { width: 100%; height: auto; display: block; }
.article-figure .ph { aspect-ratio: 16 / 9; background: var(--grad); display: grid; place-items: center; position: relative; }
.article-figure .ph::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(122deg, transparent 0 26px, rgba(0,0,0,.1) 26px 27px); }
.article-figure .ph svg { width: 72px; height: 72px; color: rgba(255,255,255,.9); position: relative; z-index: 1; }
.article-cta { margin: 2.4rem 0; background: linear-gradient(135deg, rgba(225,29,42,.16), var(--surface)); border: 1px solid rgba(225,29,42,.3); border-radius: var(--radius-lg); padding: 2rem; text-align: center; }
.article-cta h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.article-cta p { color: var(--muted); margin: 0 auto 1.2rem; max-width: 480px; }
.article-tags { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--border); }
.article-tags span:first-child { color: var(--faint); font-size: .88rem; margin-right: .3rem; }
.article-tag { font-size: .78rem; color: var(--muted); border: 1px solid var(--border); border-radius: 999px; padding: .3rem .8rem; }
.back-link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.6rem; color: var(--crimson-400); font-family: var(--font-display); font-weight: 600; font-size: .92rem; }
.back-link svg { width: 18px; height: 18px; }
.related-head { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 1.6rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: var(--space-7) 0 var(--space-4); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer-brand p { color: var(--muted); font-size: .92rem; max-width: 320px; }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.footer-tags span { font-size: .74rem; color: var(--muted); border: 1px solid var(--border); border-radius: 999px; padding: .25rem .7rem; }
.footer-col h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--faint); margin-bottom: 1rem; }
.footer-col a { display: block; color: var(--muted); font-size: .92rem; padding: .35rem 0; transition: color .18s; }
.footer-col a:hover { color: var(--ink); }
.footer-contact { display: flex; flex-direction: column; gap: .7rem; }
.footer-contact li { display: flex; align-items: center; gap: .6rem; font-size: .9rem; }
.footer-contact__ic { width: 34px; height: 34px; border-radius: 9px; background: var(--surface); border: 1px solid var(--border); display: grid; place-items: center; flex-shrink: 0; }
.footer-contact__ic svg { width: 18px; height: 18px; color: var(--crimson-400); }
.footer-contact a { color: var(--muted); white-space: nowrap; }
.footer-contact a:hover { color: var(--ink); }
.footer-disclaimer { color: var(--faint); font-size: .8rem; margin-top: var(--space-6); padding-top: var(--space-4); border-top: 1px solid var(--border); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: var(--space-4); color: var(--faint); font-size: .85rem; }
.footer-legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-legal a { color: var(--faint); }
.footer-legal a:hover { color: var(--ink); }

/* ---------- Order modal ---------- */
.order-modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 1.5rem; background: rgba(0,0,0,.7); backdrop-filter: blur(6px); opacity: 0; pointer-events: none; transition: opacity .25s; }
.order-modal.is-open { opacity: 1; pointer-events: auto; }
.order-modal__box { background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--radius-lg); padding: 2.2rem; max-width: 420px; width: 100%; text-align: center; transform: translateY(14px) scale(.98); transition: transform .25s; }
.order-modal.is-open .order-modal__box { transform: none; }
.order-modal__icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(34,197,94,.15); color: #22c55e; display: grid; place-items: center; margin: 0 auto 1.2rem; }
.order-modal__icon svg { width: 34px; height: 34px; }
.order-modal__box h3 { font-size: 1.4rem; }
.order-modal__box p { color: var(--muted); font-size: .95rem; }
.order-modal__plan { display: inline-block; font-family: var(--font-display); font-weight: 600; color: var(--ink); background: var(--crimson-soft); border: 1px solid rgba(225,29,42,.3); padding: .5rem 1.1rem; border-radius: 999px; margin: .4rem 0 1.4rem; }
.order-modal__dismiss { display: inline-block; margin-top: 1rem; color: var(--faint); font-size: .88rem; cursor: pointer; background: none; border: 0; }
.order-modal__dismiss:hover { color: var(--ink); }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 150; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.45); transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Legal pages ---------- */
.page-hero { padding: 130px 0 50px; background: var(--bg-2); border-bottom: 1px solid var(--border); text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); }
.page-hero .breadcrumb { color: var(--faint); font-size: .88rem; margin-bottom: 1rem; }
.page-hero .breadcrumb a { color: var(--muted); }
.legal { max-width: 820px; margin: 0 auto; padding: var(--space-7) 0; }
.legal h2 { font-size: 1.4rem; margin-top: 2.2rem; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: var(--muted); font-size: .96rem; }
.legal ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 1rem; }
.legal a { color: var(--crimson-400); }
.legal strong { color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .device-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .nav, .header-actions .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .perf-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .perf-copy { text-align: center; }
  .perf-copy .eyebrow { justify-content: center; }
  .perf-item { flex-direction: column; align-items: center; text-align: center; }
  .trust-cards { grid-template-columns: 1fr; max-width: 420px; }
  .rating-bar { grid-template-columns: auto 1.2fr auto; gap: .6rem; padding: 1.2rem .9rem; max-width: 420px; margin-bottom: 2rem; }
  .rating-bar__score strong, .rating-bar__sat strong { font-size: 1.9rem; }
  .rating-bar__score span, .rating-bar__sat span { font-size: .72rem; }
  .rating-bar__mid { padding: 0 .5rem; }
  .rating-bar__stars { font-size: 1rem; letter-spacing: .08em; margin-bottom: .2rem; }
  .rating-bar__mid p { font-size: .74rem; }
  .card-scroller { grid-auto-columns: 85%; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .section { padding: var(--space-7) 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .grid-4, .device-grid { grid-template-columns: 1fr 1fr; }
  .trust__row { gap: .8rem 1.4rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
