/* British IPTV — racing green + ivory · centered layout */
:root {
  --page-bg: #f7f6f1;
  --page-bg-2: #efece4;
  --surface: #fffcf7;
  --card: #ffffff;
  --heading: #14261a;
  --muted: #5a6b5f;
  --accent: #14532d;
  --accent2: #166534;
  --accent3: #15803d;
  --accent-soft: rgba(20, 83, 45, 0.1);
  --line: rgba(20, 38, 26, 0.09);
  --racing: #14532d;
  --hero-overlay: linear-gradient(180deg, rgba(10, 30, 18, 0.72) 0%, rgba(14, 40, 24, 0.78) 48%, rgba(12, 36, 22, 0.92) 100%);
  --hero-bg: linear-gradient(165deg, #0f2918 0%, #14532d 48%, #0c1f14 100%);
  --footer-bg: #0c1f14;
  --footer-text: #8fa898;
  --card-border: rgba(20, 83, 45, 0.12);
  --shadow: 0 10px 28px rgba(20, 38, 26, 0.06);
  --shadow-lg: 0 22px 48px rgba(20, 83, 45, 0.14);
  --nav-h: 70px;
  --logo-h: 50px;
  --radius-card: 16px;
  --radius-btn: 12px;
  --section-py: 72px;
  --font-head: "Urbanist", sans-serif;
  --font-body: "Nunito Sans", sans-serif;
}

*, *::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);
  background-image:
    radial-gradient(ellipse 70% 42% at 8% -8%, rgba(20, 83, 45, 0.07), transparent 55%),
    radial-gradient(ellipse 48% 34% at 96% 12%, rgba(21, 128, 61, 0.06), transparent 50%),
    linear-gradient(180deg, var(--page-bg), var(--page-bg-2));
  color: var(--heading);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--accent2); text-decoration: none; }
a:hover { color: #0f3d22; }
.container { width: min(1080px, calc(100% - 4.5rem)); margin-inline: auto; }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 252, 247, 0.82);
  backdrop-filter: blur(16px) saturate(1.15);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(20, 38, 26, 0.04);
}
.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; }
.logo img { height: var(--logo-h); width: auto; max-width: min(220px, 58vw); object-fit: contain; object-position: left center; }
.nav-desktop { display: flex; flex-wrap: wrap; gap: 0.3rem 1.1rem; }
.nav-wrap nav.nav-desktop a {
  color: #2d4034; font-weight: 650; font-size: 0.92rem;
  transition: color 0.15s;
}
.nav-wrap nav.nav-desktop a.active,
.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: #14261a; border-radius: 2px; }
.mobile-nav {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: #fffcf7; 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: #14261a; font-weight: 650; padding: 0.85rem 0.35rem;
  border-bottom: 1px solid rgba(20, 38, 26, 0.06);
}
.mobile-nav a.btn { border: 0; text-align: center; margin-top: 0.65rem; color: #fff !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.9rem 1.5rem; 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: var(--accent);
  color: #ffffff !important; border-color: var(--accent);
  box-shadow: 0 10px 24px rgba(20, 83, 45, 0.28);
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-1px); color: #ffffff !important; }
.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important; border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.18); }
.section .btn-outline,
.page-hero .btn-outline,
.reviews-preview .btn-outline,
.trial-strip .btn-outline {
  color: var(--accent2) !important;
  border-color: rgba(20, 83, 45, 0.35);
  background: #fff;
}
.section .btn-outline:hover,
.reviews-preview .btn-outline:hover { background: var(--accent-soft); }
.btn-block { width: 100%; }

.hero.hero--centered {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 1.25rem 3.25rem;
  background-image: var(--hero-overlay), url('/images/hero-home.webp');
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.hero-center { max-width: 720px; margin-inline: auto; animation: fadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) both; }
.eyebrow {
  display: inline-block; font-size: 0.76rem; font-weight: 750;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #86efac; margin-bottom: 0.9rem;
}
.hero h1 {
  font-family: var(--font-head); font-size: clamp(2rem, 4.6vw, 3rem);
  font-weight: 800; line-height: 1.08; margin-bottom: 0.95rem; letter-spacing: -0.035em; color: #fff;
}
.hero-lead { color: #d4e5d9; font-size: 1.06rem; margin: 0 auto 1.4rem; max-width: 34rem; }
.hero-lead strong { color: #fff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 1.1rem; }
.trust-line { color: #b7cebf; font-size: 0.9rem; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes greenPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(20, 83, 45, 0); }
  50% { box-shadow: 0 0 0 6px var(--accent-soft); }
}
@keyframes riseSoft {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.section { padding: var(--section-py) 0; }
.section-intro { color: var(--muted); margin-bottom: 1.35rem; text-align: center; max-width: 40rem; margin-inline: auto; }
.section h2, .seo-depth h2, .how-center h2, .devices-center h2 {
  font-family: var(--font-head);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800; margin-bottom: 0.7rem; letter-spacing: -0.03em;
  text-align: center;
}
.text-link { font-weight: 700; }

.trust-band {
  padding: 1.2rem 0;
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.trust-band-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.85rem;
}
.trust-stat {
  text-align: center; padding: 0.55rem 0.35rem;
  animation: riseSoft 0.5s ease both;
}
.trust-stat strong {
  display: block; font-family: var(--font-head);
  font-size: 1.35rem; font-weight: 800; color: var(--accent);
  letter-spacing: -0.03em; margin-bottom: 0.15rem;
}
.trust-stat span { color: var(--muted); font-size: 0.86rem; font-weight: 600; }

.site-photo {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  border-radius: var(--radius-card); border: 1px solid var(--card-border); box-shadow: var(--shadow);
}
.site-photo--wide { aspect-ratio: 16/9; max-height: 280px; }
.inline-photo { margin: 1.5rem auto 0; max-width: 740px; }

.how-center, .devices-center { text-align: center; }
.steps-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.25rem; text-align: left;
}
.steps-row span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.1rem; height: 2.1rem; border-radius: 10px;
  background: var(--accent-soft); color: var(--accent);
  font-family: var(--font-head); font-weight: 800; margin-bottom: 0.5rem; font-size: 0.92rem;
}

.card {
  background: var(--card); border-radius: var(--radius-card);
  border: 1px solid var(--card-border); box-shadow: var(--shadow);
  padding: 1.4rem 1.45rem; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  animation: riseSoft 0.55s ease both;
}
.card:hover { border-color: rgba(20, 83, 45, 0.32); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 750; margin-bottom: 0.4rem; letter-spacing: -0.02em; }
.card p { color: var(--muted); font-size: 0.93rem; }
.card-grid { display: grid; gap: 1.1rem; }
.features-grid { grid-template-columns: repeat(3, 1fr); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 1.1rem; }
.pricing-card {
  display: flex; flex-direction: column; height: 100%;
  background: var(--card); border-radius: var(--radius-card);
  border: 1px solid var(--card-border); padding: 1.55rem 1.45rem; position: relative;
  box-shadow: var(--shadow); animation: fadeUp 0.55s ease both;
}
.pricing-card:nth-child(2) { animation-delay: 0.08s; }
.pricing-card:nth-child(3) { animation-delay: 0.16s; }
.pricing-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 5px var(--accent-soft), var(--shadow-lg);
  animation: greenPulse 4.5s ease-in-out infinite;
}
.pricing-card .price {
  font-family: var(--font-head); font-size: 2.15rem; font-weight: 800;
  margin: 0.35rem 0; color: var(--heading); letter-spacing: -0.04em; text-align: center;
}
.pricing-card h3 { text-align: center; }
.pricing-monthly { text-align: center; color: var(--accent); font-size: 0.9rem; font-weight: 750; margin-bottom: 0.35rem; }
.pricing-card > p { text-align: center; }
.pricing-card ul { list-style: none; margin: 0.85rem 0 1.1rem; flex: 1; }
.pricing-card ul li { padding: 0.28rem 0 0.28rem 1.15rem; position: relative; color: var(--muted); font-size: 0.91rem; }
.pricing-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.pricing-all-link { text-align: center; margin-top: 1.5rem; font-weight: 650; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.review-card .review-stars { color: #ca8a04; letter-spacing: 0.05em; display: block; margin-bottom: 0.5rem; }
.review-author { margin-top: 0.75rem; color: var(--heading) !important; font-size: 0.9rem !important; font-weight: 650; }

.faq-list { max-width: 720px; margin-inline: auto; }
.faq-list details {
  border: 1px solid var(--card-border); border-radius: 14px; padding: 1rem 1.15rem;
  margin-bottom: 0.65rem; background: var(--surface);
}
.faq-list summary { cursor: pointer; font-family: var(--font-head); font-weight: 750; color: var(--heading); }
.faq-list details p { color: var(--muted); margin-top: 0.55rem; }

.depth-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.depth-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius-card); padding: 1.2rem 1.3rem; box-shadow: var(--shadow);
}
.depth-card h3 { font-family: var(--font-head); font-size: 1.02rem; font-weight: 750; margin-bottom: 0.45rem; }
.depth-card p { color: var(--muted); font-size: 0.9rem; margin-bottom: 0.55rem; }
.depth-card p:last-child { margin-bottom: 0; }
.depth-more {
  margin-top: 1.25rem; border: 1px solid var(--card-border); border-radius: 14px;
  background: var(--surface); padding: 0.95rem 1.15rem;
}
.depth-more > summary {
  cursor: pointer; font-family: var(--font-head); font-weight: 750;
  color: var(--accent2); list-style: none;
}
.depth-more > summary::-webkit-details-marker { display: none; }
.depth-more > summary::after { content: " +"; }
.depth-more[open] > summary::after { content: " −"; }
.depth-more[open] { padding-bottom: 1.1rem; }
.depth-grid--more { margin-top: 1rem; }
.depth-longform { margin-top: 1.25rem; }
.depth-longform p { color: var(--muted); font-size: 0.88rem; margin-bottom: 0.75rem; }
.seo-depth p, .seo-depth li { color: var(--muted); margin-bottom: 0.75rem; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.blog-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; height: 100%; }
.blog-card:hover { transform: translateY(-4px); }
.blog-card-media { display: block; overflow: hidden; background: #e8ebe4; line-height: 0; }
.blog-thumb {
  width: 100%; aspect-ratio: 16/10; max-height: 168px; object-fit: cover;
  display: block; transition: transform 0.4s ease;
}
.blog-card:hover .blog-thumb { transform: scale(1.05); }
.blog-card-body { padding: 1.05rem 1.15rem 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.35rem; }
.blog-card-body h2, .blog-card-body h3 {
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 750; line-height: 1.35; margin: 0; letter-spacing: -0.02em;
}
.blog-card-body h2 a, .blog-card-body h3 a { color: var(--heading); }
.blog-card-body h2 a:hover, .blog-card-body h3 a:hover { color: var(--accent); }
.blog-card-body p { color: var(--muted); font-size: 0.88rem; margin: 0; }
.blog-meta { color: var(--accent); font-size: 0.8rem; font-weight: 750; margin-bottom: 0.25rem; text-transform: uppercase; letter-spacing: 0.04em; }
.blog-crumb { color: var(--muted); margin-bottom: 0.75rem; }
.article--post .container.narrow { width: min(760px, calc(100% - 3.5rem)); }
.article-image {
  width: 100%; aspect-ratio: 16/9; max-height: 360px; object-fit: cover;
  display: block; border-radius: var(--radius-card);
}

.cta-band {
  background: var(--hero-bg);
  color: #fff; text-align: center; padding: var(--section-py) 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: -20% auto auto 55%;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.28), 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.5rem, 3vw, 2.05rem);
  font-weight: 800; margin-bottom: 0.65rem; color: #fff; letter-spacing: -0.03em;
}
.cta-band p { color: #b7cebf; margin-bottom: 1.3rem; max-width: 480px; margin-inline: auto; }

.trial-strip { padding: 1.1rem 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(--heading); }

.site-footer { background: var(--footer-bg); color: var(--footer-text); padding: 2.75rem 0 1.3rem; }
.site-footer h3 {
  font-family: var(--font-head); font-size: 0.82rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: #e4efe7; margin-bottom: 0.75rem;
}
.site-footer a { display: block; color: #8fa898; font-size: 0.92rem; margin-bottom: 0.35rem; }
.site-footer a:hover { color: #86efac; }
.site-footer p { color: #8fa898; margin-top: 0.85rem; max-width: 28rem; font-size: 0.92rem; }
.footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); gap: 2rem; margin-bottom: 1.5rem; }
.footer-bottom {
  text-align: center; font-size: 0.8rem; color: #6b8574;
  padding-top: 1.25rem; border-top: 1px solid rgba(143, 168, 152, 0.18); margin-top: 1rem;
}

.page-hero {
  padding: calc(var(--nav-h) + 44px) 0 2.35rem; background: var(--hero-bg);
  text-align: center; color: #fff;
}
.page-hero h1 {
  font-family: var(--font-head); font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  font-weight: 800; letter-spacing: -0.03em; color: #fff;
}
.page-hero p { color: #b7cebf; margin-top: 0.55rem; max-width: 40rem; margin-inline: auto; }

.article { padding: calc(var(--nav-h) + 32px) 0 3rem; }
.article h1 {
  font-family: var(--font-head); font-size: clamp(1.55rem, 3.5vw, 2.05rem);
  font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.03em;
}
.article h2 {
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 750;
  margin: 1.55rem 0 0.5rem; color: var(--heading); text-align: left; letter-spacing: -0.02em;
}
.article p, .article li { color: var(--muted); margin-bottom: 0.75rem; }
.article ul, .article ol { padding-left: 1.25rem; margin-bottom: 1rem; }
.article-hero-img { margin: 1rem 0 1.5rem; border-radius: var(--radius-card); overflow: hidden; border: 1px solid var(--card-border); }

.reseller-info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.5rem 0 2rem;
}
.info-panel {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius-card); padding: 1.5rem 1.55rem; box-shadow: var(--shadow);
}
.info-panel--accent {
  background: linear-gradient(160deg, rgba(20, 83, 45, 0.08), #fff 42%);
  border-color: rgba(20, 83, 45, 0.22);
}
.info-panel h2 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; margin-bottom: 1rem; text-align: left; }
.check-list { list-style: none; display: grid; gap: 0.95rem; }
.check-list li { display: grid; grid-template-columns: auto 1fr; gap: 0.85rem; align-items: start; }
.check-icon {
  width: 28px; height: 28px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent); font-weight: 800; font-size: 0.85rem;
}
.check-list strong { display: block; color: var(--heading); font-size: 0.98rem; margin-bottom: 0.15rem; }
.check-list span { color: var(--muted); font-size: 0.9rem; }
.credit-facts { display: grid; gap: 0.85rem; }
.credit-fact {
  display: grid; gap: 0.15rem; padding: 0.95rem 1rem; border-radius: 12px;
  background: var(--page-bg); border: 1px solid var(--card-border);
}
.credit-fact strong { font-family: var(--font-head); font-size: 1.05rem; color: var(--accent); }
.credit-fact span { color: var(--muted); font-size: 0.9rem; }
.reseller-packs-title { margin: 0.5rem 0 1rem; font-family: var(--font-head); font-size: 1.35rem; text-align: left; }
.reseller-cta-box {
  margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1.25rem; padding: 1.45rem 1.55rem;
  border-radius: var(--radius-card);
  background: linear-gradient(120deg, rgba(20, 83, 45, 0.1), #fff);
  border: 1px solid rgba(20, 83, 45, 0.2);
}
.reseller-cta-box h2 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 0.35rem; text-align: left; }
.reseller-cta-box p { color: var(--muted); margin: 0; max-width: 36rem; }

.contact-panel {
  max-width: 560px; margin-inline: auto; padding: 1.55rem; border-radius: var(--radius-card);
  background: var(--card); border: 1px solid var(--card-border); box-shadow: var(--shadow);
}
.contact-panel p { margin-bottom: 1rem; }
.contact-panel p:last-child { margin-bottom: 0; }

.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: 14px; 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(12, 31, 20, 0.62); 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: #fff;
  border-radius: 18px; 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 var(--line);
}
.offer-modal.show { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.offer-modal.urgent { border-color: rgba(20, 83, 45, 0.45); }
.offer-modal h3 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; margin-bottom: 0.55rem; letter-spacing: -0.03em; }
.offer-modal p { color: var(--muted); font-size: 0.92rem; margin-bottom: 0.65rem; }
.offer-modal .btn { width: 100%; margin-top: 0.45rem; }
.offer-modal p.offer-badge,
.offer-badge {
  display: inline-block; margin-bottom: 0.65rem;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: #ffffff !important; background: var(--accent);
  padding: 0.35rem 0.7rem; border-radius: 999px;
}
.offer-price { margin: 0.35rem 0 0.15rem !important; }
.offer-price strong { font-family: var(--font-head); font-size: 1.85rem; color: var(--heading); letter-spacing: -0.03em; }
.offer-price span { color: var(--accent); font-weight: 750; 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) {
  .features-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reseller-info-grid, .depth-grid, .steps-row { grid-template-columns: 1fr; }
  .trust-band-inner { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.35rem; }
  .trust-stat strong { font-size: 1.15rem; }
  .trust-stat span { font-size: 0.72rem; }
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .desktop-only { display: none !important; }
}
@media (max-width: 768px) {
  :root { --nav-h: 62px; --section-py: 48px; --logo-h: 40px; }
  .container { width: min(1080px, calc(100% - 1.75rem)); }
  .nav-cta { display: none; }
  .features-grid, .reviews-grid, .footer-grid, .blog-grid { grid-template-columns: 1fr; }
  .trust-band { padding: 0.55rem 0; }
  .trust-band-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.25rem;
  }
  .trust-stat { padding: 0.2rem 0.1rem; }
  .trust-stat strong { font-size: 0.95rem; margin-bottom: 0.05rem; }
  .trust-stat span {
    font-size: 0.62rem; line-height: 1.15;
    display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .trial-strip-inner { flex-direction: column; text-align: center; }
  .trial-strip .btn { width: 100%; }
  .hero.hero--centered { min-height: auto; padding: calc(var(--nav-h) + 1.6rem) 0 2.35rem; }
  .hero h1 { font-size: clamp(1.65rem, 7.5vw, 2.15rem); }
  .hero-lead { font-size: 0.98rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .cta-band .btn { width: 100%; max-width: 320px; }
  .reseller-cta-box { flex-direction: column; align-items: stretch; text-align: center; }
  .reseller-cta-box h2 { text-align: center; }
  .pricing-grid { max-width: none; width: 100%; }
  .pricing-card .btn, .btn-block { min-height: 48px; }
  .site-photo { aspect-ratio: 16/10; max-height: 220px; }
  .wa-sticky { right: 14px; bottom: 14px; padding: 0.75rem 0.95rem; font-size: 0.8rem; }
  .offer-modal { width: min(400px, calc(100% - 1.25rem)); max-height: calc(100vh - 2rem); overflow: auto; }
  .blog-thumb { max-height: 150px; }
  .article-image { max-height: 220px; }
  body.nav-open { overflow: hidden; }
  .mobile-nav { max-height: calc(100vh - var(--nav-h)); overflow: auto; }
  .mobile-nav .btn { margin-top: 0.5rem; width: 100%; }
}
