/* ARIS IPTV — USA navy + electric lime · centered layout */
:root {
  --page-bg: #0a1628;
  --page-bg-2: #0e1f38;
  --card: #122844;
  --heading: #eef4ff;
  --muted: #93a8c4;
  --accent: #b8f000;
  --accent2: #d4ff4a;
  --accent3: #8fd400;
  --accent-soft: rgba(184, 240, 0, 0.12);
  --navy-deep: #06101c;
  --hero-overlay: linear-gradient(180deg, rgba(6, 16, 28, 0.72) 0%, rgba(10, 22, 40, 0.82) 50%, rgba(10, 22, 40, 0.94) 100%);
  --hero-bg: linear-gradient(165deg, #0a1628 0%, #123056 42%, #0a1628 100%);
  --footer-bg: #050d18;
  --footer-text: #6f849e;
  --card-border: rgba(184, 240, 0, 0.14);
  --shadow: 0 2px 28px rgba(0, 0, 0, 0.42);
  --shadow-lg: 0 18px 48px rgba(184, 240, 0, 0.1);
  --nav-h: 68px;
  --logo-h: 52px;
  --radius-card: 10px;
  --radius-btn: 6px;
  --section-py: 64px;
  --font-head: "Archivo", sans-serif;
  --font-body: "IBM Plex 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: 15.5px;
  background: var(--page-bg);
  background-image:
    radial-gradient(ellipse 65% 40% at 50% -6%, rgba(184, 240, 0, 0.1), transparent 52%),
    radial-gradient(ellipse 50% 35% at 90% 20%, rgba(56, 120, 200, 0.12), transparent 45%),
    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: #eaff8a; }
.container { width: min(1040px, calc(100% - 4.5rem)); margin-inline: auto; }

/* Light header — dark navy logo.webp readable */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(241, 246, 252, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(10, 40, 80, 0.12);
  box-shadow: 0 4px 18px rgba(6, 16, 28, 0.08);
}
.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; filter: none; }
.nav-desktop { display: flex; flex-wrap: wrap; gap: 0.35rem 1rem; }
.nav-wrap nav.nav-desktop a { color: #132a4a; font-weight: 650; font-size: 0.92rem; }
.nav-wrap nav.nav-desktop a.active,
.nav-wrap nav.nav-desktop a:hover { color: #0a4a20; }
.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: #132a4a; border-radius: 2px; }
.mobile-nav {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: #f1f6fc; padding: 1rem 1.15rem 1.25rem;
  border-bottom: 1px solid rgba(184, 240, 0, 0.35);
  z-index: 999; flex-direction: column; gap: 0.35rem; box-shadow: var(--shadow);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: #132a4a; font-weight: 650; padding: 0.75rem 0.35rem; border-bottom: 1px solid rgba(19, 42, 74, 0.08); }
.mobile-nav a.btn { border: 0; text-align: center; margin-top: 0.65rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
  padding: 0.85rem 1.55rem; border-radius: var(--radius-btn);
  border: 2px solid transparent; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary {
  background: linear-gradient(90deg, #b8f000, #8fd400);
  color: #0a1628 !important; border: 0;
  box-shadow: 0 8px 24px rgba(184, 240, 0, 0.28);
}
.btn-primary:hover { filter: brightness(1.06); transform: translateY(-1px); color: #06101c !important; }
.btn-outline { background: transparent; color: var(--accent2) !important; border-color: var(--accent2); }
.btn-outline:hover { background: rgba(184, 240, 0, 0.1); }
.btn-block { width: 100%; }

/* Centered full-bleed hero */
.hero.hero--centered {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 36px) 1.25rem 3rem;
  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: 700px; margin-inline: auto; animation: fadeUp 0.75s ease both; }
.eyebrow {
  display: inline-block; font-size: 0.76rem; font-weight: 750;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent2); margin-bottom: 0.85rem;
}
.hero h1 {
  font-family: var(--font-head); font-size: clamp(1.9rem, 4.4vw, 2.85rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 0.9rem; letter-spacing: -0.02em;
}
.hero-lead { color: #c5d4ea; font-size: 1.05rem; margin: 0 auto 1.35rem; 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: #a8bdd6; font-size: 0.9rem; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes limePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184, 240, 0, 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.25rem; text-align: center; max-width: 40rem; margin-inline: auto; }
.section h2, .seo-depth h2, .how-center h2, .devices-center h2, .trust-copy h2 {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800; margin-bottom: 0.65rem; letter-spacing: -0.02em;
  text-align: center;
}
.text-link { font-weight: 700; }

.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: 720px; }

.trust-strip {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: center;
}
.trust-copy { text-align: left; }
.trust-copy h2, .trust-copy .section-intro { text-align: left; margin-inline: 0; }
.trust-visual { min-width: 0; }

.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-block; color: var(--accent2); font-family: var(--font-head); font-weight: 800; margin-bottom: 0.35rem;
}

.card {
  background: var(--card); border-radius: var(--radius-card);
  border: 1px solid var(--card-border); box-shadow: var(--shadow);
  padding: 1.35rem 1.45rem; transition: border-color 0.2s, transform 0.2s;
  animation: riseSoft 0.55s ease both;
}
.card:hover { border-color: rgba(184, 240, 0, 0.4); transform: translateY(-2px); }
.card h3 { font-family: var(--font-head); font-size: 1.02rem; font-weight: 700; margin-bottom: 0.4rem; }
.card p { color: var(--muted); font-size: 0.92rem; }
.card-grid { display: grid; gap: 20px; }
.features-grid { grid-template-columns: repeat(3, 1fr); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 20px; }
.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.5rem; position: relative;
  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 4px var(--accent-soft);
  animation: limePulse 4.5s ease-in-out infinite;
}
.pricing-card .price { font-family: var(--font-head); font-size: 2rem; font-weight: 800; margin: 0.35rem 0; color: var(--accent2); }
.pricing-monthly { text-align: center; color: var(--accent3); font-size: 0.88rem; font-weight: 700; margin-bottom: 0.35rem; }
.pricing-card ul { list-style: none; margin: 0.75rem 0 1rem; }
.pricing-card ul li { padding: 0.25rem 0 0.25rem 1.1rem; position: relative; color: var(--muted); font-size: 0.9rem; }
.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: 600; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stats-grid--compact { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; margin-top: 1rem; }
.stats-grid strong { display: block; font-family: var(--font-head); font-size: 1.6rem; color: var(--accent2); }
.stats-grid span { color: var(--muted); font-size: 0.82rem; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.review-card .review-stars { color: var(--accent2); 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; }

.faq-list { max-width: 720px; margin-inline: auto; }
.faq-list details { border-bottom: 1px solid var(--card-border); padding: 0.85rem 0; }
.faq-list summary { cursor: pointer; font-family: var(--font-head); font-weight: 700; color: var(--heading); }
.faq-list details p { color: var(--muted); margin-top: 0.5rem; }

.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.15rem 1.25rem;
}
.depth-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; 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: 12px;
  background: rgba(18, 40, 68, 0.55); padding: 0.85rem 1.1rem;
}
.depth-more > summary {
  cursor: pointer; font-family: var(--font-head); font-weight: 700;
  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.25rem; }
.blog-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; height: 100%; }
.blog-card:hover { transform: translateY(-3px); }
.blog-card-media { display: block; overflow: hidden; background: var(--navy-deep); line-height: 0; }
.blog-thumb {
  width: 100%; aspect-ratio: 16/10; max-height: 168px; object-fit: cover;
  display: block; transition: transform 0.35s ease;
}
.blog-card:hover .blog-thumb { transform: scale(1.04); }
.blog-card-body { padding: 1rem 1.15rem 1.2rem; 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.02rem; font-weight: 700; line-height: 1.35; margin: 0;
}
.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(--accent2); }
.blog-card-body p { color: var(--muted); font-size: 0.88rem; margin: 0; }
.blog-meta { color: var(--accent3); font-size: 0.82rem; font-weight: 650; margin-bottom: 0.35rem; }
.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: linear-gradient(135deg, #0e2a4a, #163a62 50%, #0c2240);
  color: #fff; text-align: center; padding: var(--section-py) 0;
  border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border);
}
.cta-band h2 { font-family: var(--font-head); font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; margin-bottom: 0.65rem; color: #fff; }
.cta-band p { color: #b8cce0; margin-bottom: 1.25rem; max-width: 480px; margin-inline: auto; }

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

.site-footer { background: var(--footer-bg); color: var(--footer-text); padding: 2.5rem 0 1.25rem; }
.site-footer h3 {
  font-family: var(--font-head); font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.06em; color: #d4e4f8; margin-bottom: 0.65rem;
}
.site-footer a { display: block; color: #6f849e; font-size: 0.9rem; margin-bottom: 0.35rem; }
.site-footer a:hover { color: var(--accent2); }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 2rem; margin-bottom: 1.5rem; }
.footer-bottom {
  text-align: center; font-size: 0.8rem; color: #4a5f78;
  padding-top: 1.25rem; border-top: 1px solid var(--card-border); margin-top: 1rem;
}

.page-hero {
  padding: calc(var(--nav-h) + 36px) 0 2rem; background: var(--hero-bg);
  text-align: center; border-bottom: 1px solid var(--card-border);
}
.page-hero h1 { font-family: var(--font-head); font-size: clamp(1.65rem, 3.5vw, 2.2rem); font-weight: 800; }
.page-hero p { color: var(--muted); margin-top: 0.5rem; }

.article { padding: calc(var(--nav-h) + 32px) 0 3rem; }
.article h1 { font-family: var(--font-head); font-size: clamp(1.5rem, 3.5vw, 1.95rem); font-weight: 800; margin-bottom: 1rem; }
.article h2 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; margin: 1.5rem 0 0.5rem; color: var(--heading); 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; }
.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: 14px; padding: 1.5rem 1.6rem; box-shadow: var(--shadow);
}
.info-panel--accent {
  background: linear-gradient(160deg, rgba(184, 240, 0, 0.1), rgba(18, 40, 68, 0.95) 45%);
  border-color: rgba(184, 240, 0, 0.28);
}
.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: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(184, 240, 0, 0.18); color: var(--accent2); 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: 10px;
  background: rgba(6, 16, 28, 0.5); border: 1px solid var(--card-border);
}
.credit-fact strong { font-family: var(--font-head); font-size: 1.05rem; color: var(--accent2); }
.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.4rem 1.5rem;
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(18, 58, 100, 0.55), rgba(184, 240, 0, 0.08));
  border: 1px solid rgba(184, 240, 0, 0.22);
}
.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.5rem; border-radius: 14px;
  background: var(--card); border: 1px solid var(--card-border);
}
.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.85rem 1.1rem; border-radius: 999px; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.offer-overlay {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.72); z-index: 2000;
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.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: var(--card);
  border-radius: 14px; box-shadow: var(--shadow-lg); padding: 1.6rem 1.5rem 1.35rem;
  opacity: 0; pointer-events: none; transition: opacity 0.25s, transform 0.25s;
  border: 1px solid rgba(184, 240, 0, 0.35);
}
.offer-modal.show { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.offer-modal.urgent { border-color: var(--accent); }
.offer-modal h3 { font-family: var(--font-head); font-size: 1.35rem; font-weight: 800; margin-bottom: 0.55rem; }
.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: #0a1628; background: linear-gradient(90deg, #b8f000, #d4ff4a);
  padding: 0.3rem 0.65rem; border-radius: 4px;
}
.offer-price { margin: 0.35rem 0 0.15rem !important; }
.offer-price strong { font-family: var(--font-head); font-size: 1.75rem; color: var(--heading); }
.offer-price span { color: var(--accent2); font-weight: 700; margin-left: 0.35rem; }
.offer-timer { font-size: 1rem !important; font-weight: 800; color: var(--accent2) !important; margin: 0.35rem 0 0.75rem !important; }
.offer-close {
  position: absolute; top: 0.55rem; right: 0.7rem; 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; }
  .trust-strip, .reseller-info-grid, .depth-grid, .steps-row { grid-template-columns: 1fr; }
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .reviews-grid, .stats-grid { grid-template-columns: 1fr 1fr; }
  .desktop-only { display: none !important; }
  .trust-copy h2, .trust-copy .section-intro { text-align: center; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; --section-py: 40px; --logo-h: 40px; }
  .container { width: min(1040px, calc(100% - 1.75rem)); }
  .nav-cta { display: none; }
  .features-grid, .reviews-grid, .footer-grid, .blog-grid, .stats-grid, .stats-grid--compact { grid-template-columns: 1fr; }
  .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.5rem) 0 2.25rem; }
  .hero h1 { font-size: clamp(1.5rem, 7vw, 1.95rem); }
  .hero-lead { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .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%; }
  .cta-band .btn { width: 100%; max-width: 320px; }
}
