*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #ffffff;
  --bg-2:       #f2f2f7;
  --label:      #000000;
  --label-2:    rgba(60,60,67,0.6);
  --label-3:    rgba(60,60,67,0.3);
  --separator:  rgba(60,60,67,0.18);
  --accent:     #ff9500;
  --accent-bg:  rgba(255,149,0,0.1);
  --sf: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', sans-serif;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--label);
  font-family: var(--sf);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

.bg-rails {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='160' viewBox='0 0 120 160' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='10' y='0' width='5' height='160' fill='%23b0b0b0'/%3E%3Crect x='105' y='0' width='5' height='160' fill='%23b0b0b0'/%3E%3Crect x='6' y='14' width='108' height='7' rx='1' fill='%23c0c0c0'/%3E%3Crect x='6' y='94' width='108' height='7' rx='1' fill='%23c0c0c0'/%3E%3C/svg%3E"),url("data:image/svg+xml,%3Csvg width='120' height='160' viewBox='0 0 120 160' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='10' y='0' width='5' height='160' fill='%23b0b0b0'/%3E%3Crect x='105' y='0' width='5' height='160' fill='%23b0b0b0'/%3E%3Crect x='6' y='54' width='108' height='7' rx='1' fill='%23c0c0c0'/%3E%3Crect x='6' y='134' width='108' height='7' rx='1' fill='%23c0c0c0'/%3E%3C/svg%3E");
  background-size: 120px 160px, 120px 160px;
  background-position: 0 0, 0 80px;
}

main, footer { position: relative; z-index: 1; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0.8rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 1.4rem;
  padding: 1.1rem 1.4rem;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  transition: background 0.25s, box-shadow 0.25s, padding 0.25s;
}
nav.nav-scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05);
  padding: 0.7rem 1.4rem;
}

.logo {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--label);
  text-decoration: none;
  flex-shrink: 0;
}
.logo .dot { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--label-2);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--label); }
.nav-link.active { color: var(--label); font-weight: 600; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--bg-2);
  border-radius: 20px;
  padding: 0.22rem;
}

.lang-btn {
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--label-2);
  background: transparent;
  border: none;
  border-radius: 16px;
  padding: 0.26rem 0.6rem;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.15s, background 0.15s;
}
.lang-btn:hover { color: var(--label); }
.lang-btn.active {
  color: var(--label);
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.beta-pill {
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-bg);
  border-radius: 20px;
  padding: 0.3rem 0.7rem;
  white-space: nowrap;
}

.nav-menu-btn {
  display: none;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  background: var(--bg-2);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--label);
  flex-shrink: 0;
}
.nav-menu-btn svg { width: 16px; height: 16px; }

.nav-menu-dropdown {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 1.4rem;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.06);
  padding: 0.4rem;
  display: flex;
  flex-direction: column;
  min-width: 160px;
  z-index: 10;
}
.nav-menu-dropdown[hidden] { display: none; }
.nav-menu-dropdown .nav-link {
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  text-align: left;
}
.nav-menu-dropdown .nav-link:hover { background: var(--bg-2); }
.nav-menu-dropdown .nav-link.active { background: var(--accent-bg); color: var(--accent); box-shadow: none; }

/* ── MAIN ── */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.6rem 1.4rem 2rem;
  gap: 1.4rem;
}

/* ── HERO ── */
.hero {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 3.2rem 1.8rem 2.6rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  text-align: center;
}

h1 {
  font-size: clamp(2.6rem, 9vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: var(--label);
  margin-bottom: 1.1rem;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--label-2);
  margin-bottom: 2rem;
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  background: var(--accent);
  border-radius: 980px;
  padding: 0.9rem 1.7rem;
  text-decoration: none;
  transition: opacity 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover { opacity: 0.85; }
.btn-primary svg { width: 13px; height: 13px; flex-shrink: 0; }

.hero-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--label-3);
}

/* ── FEATURE BLOCKS (alternating) ── */
.feature-blocks {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.feature-block {
  border-radius: var(--r-xl);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.6rem;
}
.fb-orange { background: rgba(255,149,0,0.1); }
.fb-blue   { background: rgba(10,132,255,0.1); }
.fb-green  { background: rgba(48,209,88,0.1); }
.fb-purple { background: rgba(191,90,242,0.1); }

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  flex-shrink: 0;
}
.feature-icon svg { width: 26px; height: 26px; }
.fb-orange .feature-icon svg { color: #ff9500; }
.fb-blue   .feature-icon svg { color: #0a84ff; }
.fb-green  .feature-icon svg { color: #30d158; }
.fb-purple .feature-icon svg { color: #bf5af2; }

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--label);
  margin-bottom: 0.5rem;
}
.feature-desc {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--label-2);
  max-width: 26rem;
}

.feature-visual {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1.5;
  border-radius: var(--r-lg);
  background: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-visual svg { width: 40%; height: 40%; }
.fb-blue   .feature-visual svg { color: #0a84ff; }
.fb-green  .feature-visual svg { color: #30d158; }
.fb-purple .feature-visual svg { color: #bf5af2; }

/* ── HOW IT WORKS ── */
.how-it-works {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 2.4rem 1.8rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
}
.how-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--label);
  margin-bottom: 2rem;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.how-step { text-align: center; }
.how-step-num {
  width: 32px; height: 32px;
  margin: 0 auto 0.8rem;
  border-radius: 50%;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-step-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--label);
  margin-bottom: 0.4rem;
}
.how-step-desc {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--label-2);
  max-width: 22rem;
  margin: 0 auto;
}

/* ── HERO FEATURE ── */
.hero-feature {
  border-radius: var(--r-xl);
  padding: 2rem 1.8rem 0;
  overflow: hidden;
  margin-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
}
.hero-feature-text { padding-bottom: 1.6rem; }
.hero-feature .feature-icon { margin-bottom: 1.2rem; }
.hero-feature-title {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--label);
  margin-bottom: 0.6rem;
}
.hero-feature-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--label-2);
  max-width: 34rem;
}

.hero-feature-visual {
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}
.mock-phone {
  position: relative;
  width: 220px;
  height: 200px;
  background: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
  overflow: hidden;
}
.mock-map {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,149,0,0.08), rgba(255,149,0,0.02)),
    repeating-linear-gradient(0deg, transparent 0 22px, rgba(60,60,67,0.06) 22px 23px),
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(60,60,67,0.06) 22px 23px);
}
.mock-pin {
  position: absolute;
  top: 42%;
  left: 48%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ff9500;
  box-shadow: 0 0 0 6px rgba(255,149,0,0.25);
}
.mock-card {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border-radius: 12px;
  padding: 0.6rem 0.7rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.mock-card-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ff9500;
  flex-shrink: 0;
}
.mock-card-title { font-size: 0.68rem; font-weight: 600; color: var(--label); }
.mock-card-sub { font-size: 0.6rem; color: var(--label-2); margin-top: 0.1rem; }

/* ── STORY BLOCK ── */
.story-block {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 2rem 1.8rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
}
.story-quote {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: var(--label);
  max-width: 34rem;
  margin: 0 auto 0.8rem;
}
.story-byline {
  font-size: 0.78rem;
  color: var(--label-2);
  margin-bottom: 1rem;
}
.story-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.story-link:hover { opacity: 0.8; }

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--label);
  border-radius: var(--r-xl);
  padding: 2.4rem 1.8rem;
  text-align: center;
}
.cta-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0.5rem;
}
.cta-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.4rem;
}
.cta-block .btn-primary { background: var(--accent); }

/* ── STATS ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.04);
}

.stat-item {
  padding: 1rem 0.5rem;
  text-align: center;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 18%; bottom: 18%;
  width: 1px;
  background: var(--separator);
}
.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--label);
}
.stat-label {
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--label-3);
  margin-top: 0.15rem;
}

/* ── OPERATORS GRID ── */
.operators-grid-wrap {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.3rem 1.2rem;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.04);
}
.operators-grid-label {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--label-3);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.operators-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem 1rem;
  align-items: center;
  justify-items: center;
}
.operators-grid img {
  height: 22px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.45;
  transition: opacity 0.15s, filter 0.15s;
}
.operators-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ── COVERAGE PAGE ── */
.coverage-intro {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 1.6rem 1.6rem 1.4rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
}
.coverage-intro h1 {
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  margin-bottom: 0.6rem;
}
.coverage-intro p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--label-2);
}
.coverage-updated {
  margin-top: 0.6rem;
  font-size: 0.68rem;
  color: var(--label-3);
}

.coverage-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.legend-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  color: var(--label-2);
  background: #fff;
  border-radius: 20px;
  padding: 0.3rem 0.7rem;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.04);
}
.legend-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.legend-dot.live-pos { background: #30d158; }
.legend-dot.live-delay { background: #ff9500; }
.legend-dot.schedule { background: #8e8e93; }
.legend-dot.uncovered { background: #d1d1d6; }

.country-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.country-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 0.9rem 1.1rem;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.04);
}
.country-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.3rem;
}
.country-name {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--label);
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--label-2);
  white-space: nowrap;
}
.operators-list {
  list-style: none;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--label-2);
}
.operators-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}
.operators-list li:last-child {
  margin-bottom: 0;
}
.operators-list li:not(:has(.operator-logo))::before {
  content: '·';
  color: var(--label-3);
}
.operator-logo {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ── COVERAGE MAP ── */
.coverage-map-wrap {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 0.6rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
}
.coverage-map {
  width: 100%;
  height: 320px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-2);
}
.coverage-map .leaflet-control-attribution {
  font-size: 0.55rem;
  background: rgba(255,255,255,0.75);
}
.map-country {
  transition: fill-opacity 0.15s;
}
.map-country:hover {
  fill-opacity: 0.85;
}
.map-tooltip {
  font-family: var(--sf);
  font-size: 0.72rem;
  font-weight: 500;
}

/* ── CONTENT PAGES (about / faq / legal) ── */
.content-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 1.6rem 1.6rem 1.8rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
}
.content-card h1 {
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  margin-bottom: 0.8rem;
}
.content-card h2 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 1.6rem 0 0.5rem;
}
.content-card h2:first-of-type { margin-top: 0.4rem; }
.content-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--label-2);
  margin-bottom: 0.8rem;
}
.content-card p:last-child { margin-bottom: 0; }
.content-updated {
  margin-top: 1.2rem;
  font-size: 0.68rem;
  color: var(--label-3);
}

/* ── BLOG ── */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.blog-card {
  display: block;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.04);
  text-decoration: none;
  transition: box-shadow 0.15s;
}
.blog-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05); }
.blog-card-date {
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--label-3);
  margin-bottom: 0.35rem;
}
.blog-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--label);
  margin-bottom: 0.3rem;
}
.blog-card-excerpt {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--label-2);
}

.article-meta {
  font-size: 0.7rem;
  color: var(--label-3);
  margin-bottom: 1rem;
}
.article-back {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--label-2);
  text-decoration: none;
  margin-bottom: 0.9rem;
}
.article-back:hover { color: var(--accent); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.faq-item {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1rem 1.1rem;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.04);
}
.faq-question {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--label);
  margin-bottom: 0.3rem;
}
.faq-answer {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--label-2);
}

/* ── FOOTER ── */
footer {
  padding: 0.8rem 1.4rem 1.6rem;
  display: flex;
  justify-content: space-between;
}
.footer-l, .footer-r {
  font-size: 0.65rem;
  color: var(--label-3);
}

/* ── ENTRANCE ── */
.hero, .hero-feature, .how-it-works, .feature-blocks, .story-block, .stats-row, .cta-block,
.coverage-map-wrap, .coverage-intro, .coverage-legend, .country-list,
.content-card, .faq-list, .blog-list {
  opacity: 0;
  transform: translateY(12px);
  animation: up 0.45s ease-out forwards;
}
.hero-feature { animation-delay: 0.06s; }
.how-it-works { animation-delay: 0.1s; }
.feature-blocks { animation-delay: 0.14s; }
.story-block { animation-delay: 0.18s; }
.stats-row  { animation-delay: 0.22s; }
.coverage-intro { animation-delay: 0.08s; }
.coverage-legend { animation-delay: 0.14s; }
.country-list { animation-delay: 0.2s; }
.faq-list { animation-delay: 0.08s; }
.blog-list { animation-delay: 0.08s; }

@keyframes up {
  to { opacity: 1; transform: translateY(0); }
}

/* ── DESKTOP ── */
@media (min-width: 640px) {
  nav  { max-width: 720px; margin: 0 auto; padding: 1.2rem 2rem; }
  nav.nav-scrolled { padding: 0.8rem 2rem; }
  main { padding: 0.6rem 2rem 2rem; max-width: 720px; margin: 0 auto; width: 100%; }
  footer { max-width: 720px; margin: 0 auto; width: 100%; padding: 0.6rem 2rem 1.8rem; }
  .coverage-map { height: 420px; }

  .hero-feature {
    flex-direction: row;
    align-items: center;
    padding: 2.4rem 0 2.4rem 2.4rem;
    gap: 1.5rem;
  }
  .hero-feature-text { flex: 1; padding-bottom: 0; }
  .hero-feature-visual { flex-shrink: 0; padding-top: 0; }

  .feature-blocks { flex-direction: row; }
  .feature-block { flex: 1; }

  .how-steps { flex-direction: row; }
  .how-step { flex: 1; }
}

@media (max-width: 639px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  .hero, .hero-feature, .how-it-works, .feature-blocks, .story-block, .stats-row, .cta-block,
  .coverage-map-wrap, .coverage-intro, .coverage-legend, .country-list,
  .content-card, .faq-list, .blog-list { animation: none; opacity: 1; transform: none; }
}
