/*
Theme Name:  Ariya eSIM — USA
Theme URI:   https://ariya-mobile.eu
Author:      Ariya Mobile
Description: Lightweight landing-page theme for the Ariya eSIM esim-usa.be satellite site (part of a shared multi-country theme family). No page builder, no jQuery. Polylang + Rank Math. Target: Lighthouse 95+ mobile.
Version:     1.0.0
License:     Proprietary
Text Domain: ariya-esim
Tags:        esim, landing-page, polylang, multilingual
*/

/* =====================================================
   Ariya Mobile — eSIM satellite theme
   Shared base styles, cloned from the esim-marokko-wp template
   ===================================================== */

/* --- Custom Properties --- */
:root {
  --green:      #00A45E;
  --green-lt:   #00C875;
  --dark:       #050806;
  --dark-alt:   #08100D;
  --dark-card:  #0c1a12;
  --surface:    #f5faf6;
  --border:     #ddeedd;
  --text:       #111a14;
  --muted:      #5a6b5e;
  --white:      #ffffff;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 2px 16px rgba(0,0,0,.07);
  --shadow-md:  0 6px 32px rgba(0,0,0,.12);
  --max-w:      1140px;
  --font:       system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 100%; text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* --- Utility --- */
.container  { max-width: var(--max-w); margin-inline: auto; padding-inline: 1.25rem; }
.sr-only    { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__brand {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 1rem; font-weight: 700; color: var(--dark);
  white-space: nowrap;
}
.nav__logo  { width: 30px; height: 30px; flex-shrink: 0; }
.nav__langs { display: flex; align-items: center; gap: 0.15rem; flex-wrap: wrap; }
.lang-link {
  font-size: 0.78rem; font-weight: 600; padding: 0.28rem 0.5rem;
  border-radius: 6px; color: var(--muted);
  transition: color .2s, background .2s;
}
.lang-link:hover        { color: var(--green); background: rgba(0,164,94,.08); }
.lang-link[aria-current]{ color: var(--green); background: rgba(0,164,94,.1); font-weight: 700; }

/* ===========================
   HERO
   =========================== */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 4.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0; width: 55%; height: 100%;
  background:
    radial-gradient(ellipse at 80% 40%, rgba(0,200,117,.12) 0%, transparent 60%),
    linear-gradient(135deg, transparent 60%, rgba(0,200,117,.04) 100%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; right: 8%; top: 15%; bottom: 15%;
  width: 2px; background: linear-gradient(to bottom, transparent, rgba(0,200,117,.25), transparent);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; max-width: 680px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(0,200,117,.12);
  border: 1px solid rgba(0,200,117,.28);
  border-radius: 100px; padding: 0.3rem 0.9rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--green-lt); margin-bottom: 1.5rem; text-transform: uppercase;
}
.hero__title {
  font-size: clamp(2rem, 6.5vw, 3.8rem);
  font-weight: 800; line-height: 1.13; letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hero__title mark { background: none; color: var(--green-lt); }
.hero__sub {
  font-size: clamp(0.98rem, 2.5vw, 1.15rem);
  color: rgba(255,255,255,.72);
  margin-bottom: 2.25rem; line-height: 1.65;
}
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--green); color: var(--white);
  padding: 0.9rem 1.9rem; border-radius: var(--radius);
  font-size: 0.98rem; font-weight: 700;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 2px 12px rgba(0,164,94,.35);
}
.btn-primary:hover { background: var(--green-lt); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,200,117,.4); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,.75);
  font-size: 0.9rem; font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.3);
  transition: color .2s, border-color .2s;
}
.btn-secondary:hover { color: var(--white); border-color: var(--white); }
.hero__proof {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem;
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.09);
}
.proof-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.83rem; color: rgba(255,255,255,.6);
}
.proof-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-lt); flex-shrink: 0;
}
.icon-arrow { width: 16px; height: 16px; }

/* ===========================
   SECTION ANATOMY
   =========================== */
.section         { padding: 4.5rem 0; }
.section--surface{ background: var(--surface); }
.section--dark   { background: var(--dark); color: var(--white); }
.section--mid    { background: var(--dark-card); color: var(--white); }

.section__label {
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 0.65rem;
}
.section--dark .section__label,
.section--mid  .section__label { color: var(--green-lt); }

.section__title {
  font-size: clamp(1.5rem, 4.5vw, 2.4rem);
  font-weight: 800; line-height: 1.18; letter-spacing: -0.025em;
  margin-bottom: 0.85rem;
}
.section__intro {
  font-size: 1.03rem; color: var(--muted);
  max-width: 620px; line-height: 1.7;
}
.section--dark .section__intro,
.section--mid  .section__intro { color: rgba(255,255,255,.72); }
.section__head { margin-bottom: 2.75rem; }

/* ===========================
   WHY ESIM
   =========================== */
.why-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px)  { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.6rem 1.5rem;
  transition: box-shadow .25s, transform .25s;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.why-card__icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(0,164,94,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1rem;
}
.why-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.why-card__text  { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* ===========================
   HOW IT WORKS
   =========================== */
.steps {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
  counter-reset: step-counter;
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }

.step {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.85rem 1.6rem;
  transition: box-shadow .25s, transform .25s;
}
.step:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: var(--white);
  font-size: 1.1rem; font-weight: 800; margin-bottom: 1.1rem;
}
.step__title { font-size: 1.02rem; font-weight: 700; margin-bottom: 0.45rem; }
.step__text  { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
.step__tip {
  margin-top: 1rem; padding: 0.7rem 1rem;
  background: rgba(0,164,94,.07);
  border-inline-start: 3px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.82rem; color: var(--muted); line-height: 1.55; font-style: italic;
}
[dir="rtl"] .step__tip {
  border-inline-start: none;
  border-inline-end: 3px solid var(--green);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

/* ===========================
   COVERAGE & NETWORKS
   =========================== */
.networks-wrap { display: grid; gap: 2rem; }
@media (min-width: 768px) {
  .networks-wrap { grid-template-columns: 1fr 1fr; align-items: start; gap: 3rem; }
}
.networks-list { display: flex; flex-direction: column; gap: 1rem; }
.network-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.25rem; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  transition: box-shadow .2s;
}
.network-item:hover { box-shadow: var(--shadow); }
.network-item__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
}
.network-item__name { font-weight: 700; font-size: 0.95rem; }
.network-item__tech {
  margin-inline-start: auto;
  font-size: 0.78rem; font-weight: 700;
  color: var(--green); background: rgba(0,164,94,.1);
  padding: 0.2rem 0.55rem; border-radius: 100px;
}
.coverage-info__title {
  font-size: 0.78rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--muted); margin-bottom: 0.9rem;
}
.city-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.city-tag {
  padding: 0.4rem 0.9rem; background: var(--surface);
  border: 1px solid var(--border); border-radius: 100px;
  font-size: 0.88rem; font-weight: 500; color: var(--text);
  transition: background .2s, border-color .2s, color .2s;
}
.city-tag:hover { background: rgba(0,164,94,.1); border-color: rgba(0,164,94,.3); color: var(--green); }
.coverage-note {
  padding: 1rem 1.25rem; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.86rem; color: var(--muted); line-height: 1.6;
}
.coverage-note strong { color: var(--text); }

/* ===========================
   PRICING TEASER
   =========================== */
.pricing-teaser {
  background: linear-gradient(135deg, var(--dark-alt) 0%, #0b2214 100%);
  color: var(--white); padding: 4.5rem 0;
}
.pricing-inner { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .pricing-inner { grid-template-columns: 1fr 1fr; } }
.pricing-text .section__label { color: var(--green-lt); }
.pricing-text .section__title { color: var(--white); margin-bottom: 1rem; }
.pricing-bullets { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
.pricing-bullet {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.9rem; color: rgba(255,255,255,.78);
}
.pricing-bullet::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-lt); flex-shrink: 0;
}
.btn-light {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green-lt); color: var(--dark);
  padding: 0.9rem 1.9rem; border-radius: var(--radius);
  font-size: 0.98rem; font-weight: 700;
  transition: opacity .2s, transform .15s;
}
.btn-light:hover { opacity: 0.9; transform: translateY(-1px); }
.pricing-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 2.25rem;
}
.pricing-card__plans { display: flex; flex-direction: column; gap: 0.85rem; }
.plan-row {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.85rem 1rem; background: rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
}
.plan-row__label { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,.88); }
.plan-row__badge {
  font-size: 0.78rem; font-weight: 700; color: var(--green-lt);
  background: rgba(0,200,117,.12); padding: 0.2rem 0.55rem; border-radius: 100px;
}
.pricing-card__note { margin-top: 1.25rem; font-size: 0.8rem; color: rgba(255,255,255,.45); line-height: 1.5; }

/* ===========================
   FAQ
   =========================== */
.faq-list { display: flex; flex-direction: column; gap: 0.6rem; max-width: 820px; }
details.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
details.faq-item[open] { border-color: rgba(0,164,94,.3); box-shadow: var(--shadow); }
details.faq-item > summary {
  padding: 1.1rem 1.35rem;
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; user-select: none;
  transition: background .15s;
}
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item > summary:hover { background: var(--surface); }
details.faq-item > summary::after {
  content: '+'; font-size: 1.4rem; line-height: 1; font-weight: 300;
  color: var(--green); flex-shrink: 0; transition: transform .2s;
}
details.faq-item[open] > summary::after { content: '−'; }
.faq-body {
  padding: 0 1.35rem 1.2rem;
  font-size: 0.91rem; color: var(--muted); line-height: 1.7;
}
.faq-body a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }

/* ===========================
   TRUST SIGNALS
   =========================== */
.trust-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-card {
  padding: 1.4rem 1.25rem; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  text-align: center;
}
.trust-card__icon { font-size: 1.8rem; margin-bottom: 0.65rem; }
.trust-card__title { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.3rem; }
.trust-card__text  { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }
.compat-section { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.compat-title { font-size: 0.85rem; font-weight: 600; color: var(--muted); text-align: center; margin-bottom: 0.9rem; }
.compat-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
.compat-tag {
  padding: 0.35rem 0.85rem; background: var(--surface);
  border: 1px solid var(--border); border-radius: 100px;
  font-size: 0.82rem; font-weight: 500; color: var(--text);
}

/* ===========================
   FINAL CTA
   =========================== */
.cta-section { background: var(--dark); color: var(--white); padding: 5rem 0; text-align: center; }
.cta-section .section__label { color: var(--green-lt); }
.cta-title {
  font-size: clamp(1.6rem, 5vw, 2.9rem);
  font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.18; margin-bottom: 1rem; color: var(--white);
}
.cta-sub {
  color: rgba(255,255,255,.68); font-size: 1.05rem;
  line-height: 1.65; margin-bottom: 2rem;
  max-width: 520px; margin-inline: auto;
}

/* ===========================
   PAGE CUSTOM CONTENT (Gutenberg)
   =========================== */
.page-custom-content {
  padding: 2rem 0;
}
.page-custom-content:empty { padding: 0; }

/* ===========================
   404
   =========================== */
.error-404 { padding: 6rem 0; text-align: center; }
.error-404 h1 { font-size: clamp(2rem, 6vw, 4rem); font-weight: 800; margin-bottom: 1rem; }
.error-404 p { color: var(--muted); margin-bottom: 2rem; }

/* ===========================
   FOOTER
   =========================== */
.footer { background: var(--dark-alt); color: rgba(255,255,255,.65); padding: 3.5rem 0 2rem; }
.footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; } }
.footer__brand { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 0.75rem; }
.footer__brand-logo { width: 26px; height: 26px; }
.footer__brand-name { font-size: 0.9rem; font-weight: 700; color: var(--white); }
.footer__tagline { font-size: 0.84rem; line-height: 1.65; max-width: 260px; }
.footer__col-title {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,.38);
  margin-bottom: 0.85rem;
}
.footer__links  { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__link   { font-size: 0.87rem; transition: color .2s; }
.footer__link:hover { color: var(--white); }
.footer__bottom {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  justify-content: space-between; align-items: center;
}
.footer__copy { font-size: 0.78rem; color: rgba(255,255,255,.35); }
.footer__legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer__legal a { font-size: 0.78rem; color: rgba(255,255,255,.38); transition: color .2s; }
.footer__legal a:hover { color: rgba(255,255,255,.7); }

/* ===========================
   FOOTER — APP DOWNLOAD BADGES
   =========================== */
.footer__app { margin-top: 1.75rem; }
.store-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; }
.store-badge-group { display: flex; flex-direction: column; align-items: flex-start; gap: 0.35rem; }
.store-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #f7f8f9;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  padding: 0.55rem 0.95rem;
  box-shadow: 0 4px 14px rgba(0,0,0,.22);
  transition: transform .15s, box-shadow .2s, border-color .2s;
}
.store-badge:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.28); border-color: rgba(0,0,0,.16); }
.store-badge__icon { width: 26px; height: 26px; flex-shrink: 0; }
.store-badge__text { display: flex; flex-direction: column; line-height: 1.15; }
.store-badge__line1 { font-size: 0.6rem; color: #4d574f; }
.store-badge__line2 { font-size: 0.95rem; font-weight: 700; color: #0c1a12; letter-spacing: 0.01em; }
.store-badge__version { font-size: 0.68rem; color: rgba(255,255,255,.4); padding-inline-start: 0.1rem; }
.store-badges__cta {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,.68);
  text-decoration: none; align-self: center;
  transition: color .2s;
}
.store-badges__cta:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.store-badges__cta .icon-arrow { width: 14px; height: 14px; }

/* ===========================
   MOBILE APP INSTALL BANNER
   =========================== */
.app-banner {
  display: none;
  position: fixed;
  left: 0.75rem; right: 0.75rem; bottom: 0.75rem;
  z-index: 200;
  align-items: center; gap: 0.65rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 0.65rem 0.75rem;
}
.app-banner.is-visible { display: flex; }
.app-banner__logo { width: 36px; height: 36px; flex-shrink: 0; border-radius: var(--radius-sm); background: rgba(0,164,94,.1); padding: 0.3rem; }
.app-banner__text { flex: 1; font-size: 0.82rem; font-weight: 600; color: var(--text); line-height: 1.3; }
.app-banner__cta {
  flex-shrink: 0;
  background: var(--green); color: var(--white);
  font-size: 0.78rem; font-weight: 700;
  padding: 0.5rem 1rem; border-radius: 100px;
  transition: background .2s;
}
.app-banner__cta:hover { background: var(--green-lt); }
.app-banner__close {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  color: var(--muted); background: transparent; border: 0; cursor: pointer;
}
.app-banner__close:hover { background: var(--surface); color: var(--text); }
.app-banner__close svg { width: 14px; height: 14px; }

body.app-banner-visible { padding-bottom: 4.75rem; }

@media (min-width: 769px) {
  .app-banner { display: none !important; }
  body.app-banner-visible { padding-bottom: 0; }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (min-width: 768px) {
  .hero    { padding: 7rem 0 6rem; }
  .section { padding: 6rem 0; }
}

/* ===========================
   RTL (Arabic)
   =========================== */
[dir="rtl"] { text-align: right; }
[dir="rtl"] .nav__inner         { flex-direction: row-reverse; }
[dir="rtl"] .hero__inner        { margin-inline-start: auto; }
[dir="rtl"] .proof-item         { flex-direction: row-reverse; }
[dir="rtl"] .why-card           { text-align: right; }
[dir="rtl"] .network-item__tech { margin-inline-start: 0; margin-inline-end: auto; }
[dir="rtl"] .network-item       { flex-direction: row-reverse; }
[dir="rtl"] .pricing-bullet     { flex-direction: row-reverse; }
[dir="rtl"] .icon-arrow         { transform: scaleX(-1); }
[dir="rtl"] .plan-row           { flex-direction: row-reverse; }
[dir="rtl"] .store-badges       { flex-direction: row-reverse; }
[dir="rtl"] .store-badge        { flex-direction: row-reverse; }
[dir="rtl"] .store-badge-group  { align-items: flex-end; }
[dir="rtl"] .store-badge__text  { text-align: right; }
[dir="rtl"] .store-badge__version { padding-inline-start: 0; padding-inline-end: 0.1rem; }
[dir="rtl"] .app-banner         { flex-direction: row-reverse; }
[dir="rtl"] .app-banner__text   { text-align: right; }

/* Focus / accessibility */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

/* WordPress: hide default block editor styles interference */
.wp-block { max-width: none; }

/* Print */
@media print {
  .nav, .hero__proof, .cta-section, .footer { display: none; }
  body { font-size: 12pt; }
}
