/* ALLE SENDER IPTV — slate-amber · split layout · DE */
:root {
  --page-bg: #1a1f26;
  --page-bg-2: #0f1318;
  --surface: #222831;
  --card: #252b35;
  --heading: #f5f0e6;
  --muted: #b8b0a0;
  --accent: #f5a623;
  --accent2: #e09515;
  --accent3: #ffc857;
  --accent-soft: rgba(245, 166, 35, 0.14);
  --line: rgba(245, 240, 230, 0.1);
  --hero-overlay: linear-gradient(105deg, rgba(15, 19, 24, 0.92) 0%, rgba(15, 19, 24, 0.55) 48%, rgba(15, 19, 24, 0.78) 100%);
  --hero-bg: linear-gradient(145deg, #0f1318 0%, #1a1f26 50%, #2a2118 100%);
  --footer-bg: #0a0d11;
  --footer-text: #9a9184;
  --card-border: rgba(245, 166, 35, 0.12);
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 56px rgba(245, 166, 35, 0.12);
  --nav-h: 72px;
  --logo-h: 48px;
  --radius-card: 6px;
  --radius-btn: 4px;
  --section-py: 84px;
  --font-head: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --btn-text-on-accent: #0f1318;
  --cream: #f5f0e6;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--page-bg-2);
  background-image:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(245, 166, 35, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 35% at 100% 20%, rgba(245, 166, 35, 0.05), transparent 50%),
    linear-gradient(180deg, var(--page-bg), var(--page-bg-2));
  color: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body[data-layout="split"] { --layout-name: split; }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent3); }
.container { width: min(1140px, calc(100% - 4rem)); margin-inline: auto; }
.narrow { width: min(720px, calc(100% - 3rem)); margin-inline: auto; }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15, 19, 24, 0.88);
  backdrop-filter: blur(16px) saturate(1.1);
  border-bottom: 1px solid rgba(245, 166, 35, 0.15);
}
.site-header .container, .nav-wrap {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
}
.logo { line-height: 0; display: flex; align-items: center; background: transparent !important; }
.logo img {
  height: var(--logo-h); width: auto; max-width: min(220px, 58vw);
  object-fit: contain; object-position: left center;
  background: transparent !important;
}
.nav-desktop { display: flex; flex-wrap: wrap; gap: 0.25rem 1.2rem; }
.nav-wrap nav.nav-desktop a {
  color: var(--muted); font-weight: 600; font-size: 0.9rem;
  transition: color 0.15s;
}
.nav-wrap nav.nav-desktop a:hover { color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: 0.55rem; margin-left: auto; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: var(--cream); border-radius: 2px; }
.mobile-nav {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: #151a21; padding: 1rem 1.15rem 1.35rem;
  border-bottom: 1px solid var(--line);
  z-index: 999; flex-direction: column; gap: 0.25rem; box-shadow: var(--shadow);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--cream); font-weight: 600; padding: 0.85rem 0.35rem;
  border-bottom: 1px solid rgba(245, 240, 230, 0.06);
}
.mobile-nav a.btn { border: 0; text-align: center; margin-top: 0.65rem; color: var(--btn-text-on-accent) !important; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
  padding: 0.88rem 1.4rem; border-radius: var(--radius-btn);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent3) 0%, var(--accent) 100%);
  color: var(--btn-text-on-accent) !important; border-color: var(--accent);
  box-shadow: 0 10px 24px rgba(245, 166, 35, 0.28);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  transform: translateY(-1px); color: var(--btn-text-on-accent) !important;
}
.btn-outline {
  background: transparent;
  color: var(--cream) !important; border-color: rgba(245, 240, 230, 0.35);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent) !important; }
.section .btn-outline,
.reviews-preview .btn-outline,
.trial-strip .btn-outline {
  color: var(--accent) !important;
  border-color: rgba(245, 166, 35, 0.45);
  background: transparent;
}
.btn-block { width: 100%; }

/* Split hero — text left, visual plane right */
.hero.hero--split {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: var(--page-bg-2);
}
.hero--split .hero-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 3rem) 3rem 3.5rem clamp(1.5rem, 5vw, 4.5rem);
  position: relative; z-index: 2;
  background: linear-gradient(105deg, #0f1318 0%, rgba(15, 19, 24, 0.94) 70%, transparent 100%);
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero--split .hero-visual {
  position: relative;
  min-height: 100%;
  background-image: var(--hero-overlay), url('/images/hero-home.webp?v=1');
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.hero--split .hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15, 19, 24, 0.75) 0%, transparent 40%);
  pointer-events: none;
}
.hero--split .hero-visual::before {
  content: "";
  position: absolute; right: -10%; bottom: -15%;
  width: min(420px, 55vw); height: min(420px, 55vw);
  background: radial-gradient(circle, rgba(245, 166, 35, 0.22), transparent 68%);
  pointer-events: none; animation: amberPulse 8s ease-in-out infinite alternate;
  z-index: 1;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.74rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 1.1rem;
  padding: 0.35rem 0;
  border-bottom: 2px solid rgba(245, 166, 35, 0.45);
  width: fit-content;
}
.section-eyebrow { color: var(--accent); border-color: rgba(245, 166, 35, 0.35); }
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 650; line-height: 1.12; margin-bottom: 1.05rem;
  letter-spacing: -0.02em; color: var(--cream);
  font-variation-settings: "SOFT" 40, "WONK" 0.4;
}
.hero-lead { color: var(--muted); font-size: 1.05rem; margin: 0 0 1.5rem; max-width: 34rem; }
.hero-lead strong { color: var(--cream); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: flex-start; }
.trust-line {
  margin-top: 1.5rem; font-size: 0.88rem; color: var(--muted);
  letter-spacing: 0.02em;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes amberPulse {
  from { opacity: 0.5; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1.06); }
}
@keyframes riseSoft {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes amberGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0); }
  50% { box-shadow: 0 0 0 4px var(--accent-soft), var(--shadow); }
}

.section { padding: var(--section-py) 0; }
.section-intro { color: var(--muted); margin-bottom: 1.5rem; max-width: 42rem; font-size: 1.02rem; }
.section h2, .seo-depth h2, .how-stack h2, .devices h2 {
  font-family: var(--font-head);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 650; margin-bottom: 0.75rem; letter-spacing: -0.02em;
  color: var(--cream);
}

.trust-band {
  padding: 1.35rem 0;
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.trust-band-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.trust-stat {
  text-align: left; padding: 0.5rem 0.75rem;
  border-left: 2px solid var(--accent);
  animation: riseSoft 0.5s ease both;
}
.trust-stat strong {
  display: block; font-family: var(--font-head);
  font-size: 1.35rem; font-weight: 650; color: var(--accent);
  margin-bottom: 0.15rem;
}
.trust-stat span { color: var(--muted); font-size: 0.86rem; }

.site-photo {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
  border-radius: var(--radius-card); border: 1px solid var(--line); box-shadow: var(--shadow);
  margin-top: 1.5rem;
}

.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 0.5rem;
}
.feature-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: 1.35rem 1.4rem;
  border-top: 3px solid var(--accent);
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { transform: translateY(-2px); border-color: rgba(245, 166, 35, 0.35); }
.feature-card h3 {
  font-family: var(--font-head); font-size: 1.08rem; font-weight: 650;
  margin-bottom: 0.45rem; color: var(--cream);
}
.feature-card p { color: var(--muted); font-size: 0.94rem; }

.how-stack .steps-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.35rem;
}
.steps-row article {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: 1.35rem;
}
.steps-row span {
  display: inline-block;
  font-family: var(--font-head); font-weight: 700; font-size: 1.4rem;
  color: var(--accent); margin-bottom: 0.5rem;
}
.steps-row h3 { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 0.4rem; color: var(--cream); }
.steps-row p { color: var(--muted); font-size: 0.92rem; }

.devices-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
}
.devices-split p { color: var(--muted); }

/* Comparison table pricing (not equal cards) */
.pricing-compare-wrap {
  overflow-x: auto; margin: 1.25rem 0 1.75rem;
  border: 1px solid var(--line); border-radius: var(--radius-card);
  background: var(--card); box-shadow: var(--shadow);
}
.pricing-compare {
  width: 100%; border-collapse: collapse; min-width: 640px;
}
.pricing-compare th,
.pricing-compare td {
  padding: 1rem 1.15rem; text-align: left;
  border-bottom: 1px solid var(--line); vertical-align: middle;
}
.pricing-compare thead th {
  font-family: var(--font-head); font-size: 0.82rem; font-weight: 650;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--accent); background: rgba(245, 166, 35, 0.06);
}
.pricing-compare tbody tr:hover { background: rgba(245, 166, 35, 0.04); }
.pricing-compare tbody tr.is-featured {
  background: rgba(245, 166, 35, 0.08);
  animation: amberGlow 5s ease-in-out infinite;
}
.pricing-compare .plan-name {
  font-family: var(--font-head); font-weight: 650; color: var(--cream); font-size: 1.05rem;
}
.pricing-compare .price {
  font-family: var(--font-head); font-size: 1.45rem; font-weight: 700; color: var(--cream);
}
.pricing-monthly { color: var(--accent); font-size: 0.9rem; font-weight: 700; }
.pricing-compare .btn { padding: 0.65rem 1.1rem; font-size: 0.88rem; white-space: nowrap; }
.pricing-all-link { margin-top: 1rem; font-weight: 600; }
.multi-note { color: var(--muted); font-size: 0.92rem; margin-top: 0.75rem; }

/* Single-column editorial reviews */
.reviews-editorial {
  display: flex; flex-direction: column; gap: 0;
  max-width: 720px; margin-inline: auto;
  border-top: 1px solid var(--line);
}
.review-card.review-editorial {
  padding: 1.65rem 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  animation: riseSoft 0.55s ease both;
}
.review-card .review-stars { color: var(--accent); letter-spacing: 0.08em; display: block; margin-bottom: 0.55rem; font-size: 0.95rem; }
.review-text {
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 500;
  line-height: 1.45; color: var(--cream); font-style: italic;
}
.review-author { margin-top: 0.85rem; color: var(--muted) !important; font-size: 0.88rem !important; font-weight: 600; font-style: normal; font-family: var(--font-body); }
.reviews-preview .reviews-editorial { max-width: 640px; }

.faq-list { max-width: 720px; }
.faq-list details {
  border-bottom: 1px solid var(--line); padding: 1rem 0;
  margin-bottom: 0; background: transparent;
}
.faq-list summary {
  cursor: pointer; font-family: var(--font-head); font-weight: 650;
  color: var(--cream); letter-spacing: -0.01em; list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before { content: "+ "; color: var(--accent); font-weight: 700; }
.faq-list details[open] summary::before { content: "− "; }
.faq-list details p { color: var(--muted); margin-top: 0.55rem; padding-left: 1.1rem; }

.depth-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.depth-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: 1.25rem 1.35rem;
}
.depth-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 650; margin-bottom: 0.45rem; color: var(--cream); }
.depth-card p { color: var(--muted); font-size: 0.9rem; }
.depth-more {
  margin-top: 1.25rem; border: 1px solid var(--line); border-radius: var(--radius-card);
  background: var(--surface); padding: 0.95rem 1.15rem;
}
.depth-more > summary {
  cursor: pointer; font-family: var(--font-head); font-weight: 650;
  color: var(--accent); list-style: none;
}
.depth-more > summary::-webkit-details-marker { display: none; }
.depth-more p { color: var(--muted); font-size: 0.92rem; margin-top: 0.75rem; line-height: 1.65; }
.depth-longform { display: none !important; }
.seo-depth p, .seo-depth li { color: var(--muted); margin-bottom: 0.75rem; }

/* Blog list-featured */
.blog-list-featured { display: grid; gap: 2rem; }
.blog-featured {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 1.5rem; align-items: center;
  padding-bottom: 2rem; border-bottom: 1px solid var(--line);
}
.blog-featured h2 {
  font-family: var(--font-head); font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 650; margin: 0.5rem 0; color: var(--cream);
}
.blog-featured h2 a { color: var(--cream); }
.blog-featured h2 a:hover { color: var(--accent); }
.blog-featured p { color: var(--muted); font-size: 0.95rem; }
.blog-list { display: flex; flex-direction: column; gap: 0; }
.blog-list-item {
  display: grid; grid-template-columns: 140px 1fr; gap: 1.15rem; align-items: center;
  padding: 1.15rem 0; border-bottom: 1px solid var(--line);
}
.blog-list-item h3 {
  font-family: var(--font-head); font-size: 1.08rem; font-weight: 650; margin: 0;
}
.blog-list-item h3 a { color: var(--cream); }
.blog-list-item h3 a:hover { color: var(--accent); }
.blog-list-item p { color: var(--muted); font-size: 0.88rem; margin-top: 0.25rem; }
.blog-meta {
  color: var(--accent); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.blog-crumb { color: var(--muted); margin-bottom: 0.75rem; }
.article--post .container.narrow { width: min(720px, calc(100% - 3rem)); }
.article-hero-img {
  margin: 1rem 0 1.5rem; border-radius: var(--radius-card); overflow: hidden; border: 1px solid var(--line);
}

.cta-band {
  background: var(--hero-bg);
  color: var(--cream); text-align: left; padding: var(--section-py) 0;
  border-top: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; right: -5%; top: -20%;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.2), transparent 70%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: var(--font-head); font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 650; margin-bottom: 0.65rem; color: var(--cream);
}
.cta-band p { color: var(--muted); margin: 0 0 1.35rem; max-width: 480px; }

.trial-strip { padding: 1.15rem 0; background: var(--surface); border-top: 1px solid var(--line); }
.trial-strip-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.trial-strip p { font-size: 0.98rem; color: var(--muted); margin: 0; }
.trial-strip strong { color: var(--cream); }

.site-footer { background: var(--footer-bg); color: var(--footer-text); padding: 3rem 0 1.35rem; }
.site-footer h3 {
  font-family: var(--font-head); font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--cream); margin-bottom: 0.85rem;
}
.site-footer a { display: block; color: #8a8278; font-size: 0.92rem; margin-bottom: 0.4rem; }
.site-footer a:hover { color: var(--accent); }
.site-footer p { color: #8a8278; margin-top: 0.85rem; max-width: 28rem; font-size: 0.92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2rem; margin-bottom: 1.5rem; }
.footer-bottom {
  text-align: left; font-size: 0.8rem; color: #6a635a;
  padding-top: 1.35rem; border-top: 1px solid rgba(245, 240, 230, 0.08); margin-top: 1rem;
}

.page-hero {
  padding: calc(var(--nav-h) + 52px) 0 2.75rem; background: var(--hero-bg);
  text-align: left; color: var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-family: var(--font-head); font-size: clamp(1.85rem, 3.4vw, 2.45rem);
  font-weight: 650; letter-spacing: -0.02em; color: var(--cream);
}
.page-hero p { color: var(--muted); margin-top: 0.55rem; max-width: 40rem; }
.page-hero--cover {
  background-size: cover !important; background-position: center !important;
  color: #fff;
}
.page-hero--cover h1, .page-hero--cover p { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.45); }

.article { padding: calc(var(--nav-h) + 36px) 0 3rem; }
.article h1 {
  font-family: var(--font-head); font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  font-weight: 650; margin-bottom: 1rem; color: var(--cream);
}
.article h2 {
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 650;
  margin: 1.6rem 0 0.55rem; color: var(--cream); text-align: left;
}
.article p, .article li { color: var(--muted); margin-bottom: 0.75rem; }
.article ul, .article ol { padding-left: 1.25rem; margin-bottom: 1rem; }

.reseller-packs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.25rem; }
.reseller-pack {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: 1.4rem;
}
.reseller-pack h3 { font-family: var(--font-head); color: var(--cream); margin-bottom: 0.35rem; }
.reseller-pack .price { font-family: var(--font-head); font-size: 1.65rem; color: var(--accent); margin: 0.35rem 0 0.85rem; }
.reseller-pack p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1rem; }

.contact-panel {
  max-width: 560px; padding: 1.6rem; border-radius: var(--radius-card);
  background: var(--card); border: 1px solid var(--line);
}
.contact-panel p { margin-bottom: 1rem; color: var(--muted); }

.wa-sticky {
  position: fixed; right: 20px; bottom: 20px; z-index: 1500;
  background: #25d366; color: #fff !important; font-weight: 700; font-size: 0.85rem;
  padding: 0.9rem 1.15rem; border-radius: 8px; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.15s;
}
.wa-sticky:hover { transform: translateY(-2px); color: #fff !important; }

.offer-overlay {
  position: fixed; inset: 0; background: rgba(10, 13, 17, 0.72); z-index: 2000;
  opacity: 0; pointer-events: none; transition: opacity 0.25s; backdrop-filter: blur(4px);
}
.offer-overlay.show { opacity: 1; pointer-events: auto; }
.offer-modal {
  position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%) scale(0.96);
  z-index: 2001; width: min(400px, calc(100% - 2rem)); background: #1a1f26;
  border-radius: 8px; box-shadow: var(--shadow-lg); padding: 1.7rem 1.55rem 1.4rem;
  opacity: 0; pointer-events: none; transition: opacity 0.25s, transform 0.25s;
  border: 1px solid rgba(245, 166, 35, 0.35); color: var(--cream);
}
.offer-modal.show { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.offer-modal h3 { font-family: var(--font-head); font-size: 1.35rem; font-weight: 650; margin-bottom: 0.55rem; color: var(--cream); }
.offer-modal p { color: var(--muted); font-size: 0.92rem; margin-bottom: 0.65rem; }
.offer-modal .btn { width: 100%; margin-top: 0.45rem; }
.offer-badge {
  display: inline-block; margin-bottom: 0.65rem;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--btn-text-on-accent) !important;
  background: linear-gradient(135deg, var(--accent3), var(--accent));
  padding: 0.35rem 0.7rem; border-radius: 4px;
}
.offer-price strong { font-family: var(--font-head); font-size: 1.75rem; color: var(--cream); }
.offer-price span { color: var(--accent); font-weight: 700; margin-left: 0.35rem; }
.offer-timer { font-size: 1rem !important; font-weight: 800; color: var(--accent) !important; margin: 0.35rem 0 0.75rem !important; }
.offer-close {
  position: absolute; top: 0.65rem; right: 0.8rem; border: 0; background: transparent;
  color: var(--muted); font-size: 1.5rem; line-height: 1; cursor: pointer;
}
.offer-dismiss {
  display: block; width: 100%; margin-top: 0.65rem; border: 0; background: transparent;
  color: var(--muted); font-size: 0.88rem; cursor: pointer; text-decoration: underline;
}
body.offer-open { overflow: hidden; }

@media (max-width: 1024px) {
  .hero.hero--split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero--split .hero-visual {
    min-height: 42vh; order: -1;
  }
  .hero--split .hero-copy {
    padding: 2.5rem 1.5rem 3rem;
    background: var(--page-bg-2);
  }
  .features-grid, .depth-grid, .steps-row, .devices-split, .blog-featured, .reseller-packs {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-band-inner { grid-template-columns: repeat(2, 1fr); }
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 768px) {
  :root { --nav-h: 62px; --section-py: 52px; --logo-h: 40px; }
  .container { width: min(1140px, calc(100% - 1.75rem)); }
  .nav-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .blog-list-item { grid-template-columns: 96px 1fr; gap: 0.85rem; }
  .trial-strip-inner { flex-direction: column; text-align: left; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .pricing-compare { min-width: 560px; }
  .wa-sticky { right: 14px; bottom: 14px; padding: 0.75rem 0.95rem; font-size: 0.8rem; }
  body.nav-open { overflow: hidden; }
  .mobile-nav { max-height: calc(100vh - var(--nav-h)); overflow: auto; }
}
