/* Template 25 - Lumen Relay
   Visual fingerprint: clean futuristic fintech, mist surface, coral/cyan route traces, daylight instrument panels.
   Layout fingerprint: full-width route-map hero, luminous split bands, scenario board, precision form lane. */
:root {
  --surface: #f7fbff;
  --surface-2: #edf4f8;
  --surface-3: #d7e5ea;
  --ink: #0b1620;
  --ink-2: #162833;
  --muted: #60727c;
  --line: #bfd1d9;
  --line-strong: #1e3a44;
  --lime: #ff6f61;
  --cyan: #15c7c9;
  --aqua: #def8f7;
  --danger: #d73747;
  --font-d: "Sora", "Trebuchet MS", sans-serif;
  --font-b: "IBM Plex Mono", "Courier New", monospace;
  --max: 1200px;
  --nav-h: 72px;
  --r: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  min-width: 320px;
  background:
    radial-gradient(circle at 10% 0%, rgba(21,199,201,.16), transparent 34%),
    linear-gradient(120deg, transparent 0 36%, rgba(255,111,97,.16) 36.2% 36.8%, transparent 37%),
    linear-gradient(152deg, rgba(11,22,32,.045) 0 1px, transparent 1px 100%) 0 0 / 96px 96px,
    var(--surface);
  color: var(--ink);
  font-family: var(--font-b);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font-family: var(--font-b); }
button { cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; }
.wrap { min-height: 100vh; display: flex; flex-direction: column; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

h1, h2, h3 { color: var(--ink); font-family: var(--font-d); line-height: 1; letter-spacing: 0; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--line-strong);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.section-eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  transform: scaleX(var(--rule-scale, 1));
  transform-origin: left;
}
.section-h {
  font-size: clamp(2.25rem, 4.7vw, 5rem);
  font-weight: 800;
}
.section-h em, .hero-h1 em {
  display: inline;
  font-style: normal;
  color: var(--ink);
  background: linear-gradient(180deg, transparent 58%, var(--lime) 58%);
  padding: 0 .05em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.section-sub {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(.95rem, 1.2vw, 1.05rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  font-size: .78rem;
  font-weight: 700;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--surface);
  box-shadow: 0 0 0 1px var(--lime), 0 12px 30px rgba(31,215,210,.22);
}
.btn-primary:hover, .btn-primary:focus-visible { transform: translateY(-2px); background: var(--line-strong); box-shadow: 0 0 0 1px var(--lime), 0 16px 36px rgba(31,215,210,.28); }
.btn-ghost { background: rgba(255,255,255,.72); color: var(--ink); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--aqua); border-color: var(--cyan); }
.btn-full { width: 100%; }

header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 28px;
  background: rgba(248,251,247,.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.logo-link { display: flex; align-items: center; gap: 10px; flex-shrink: 0; font-family: var(--font-d); font-weight: 800; }
.logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--lime);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--cyan);
}
.logo-img { height: 32px; width: auto; object-fit: contain; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 4px; flex: 1; }
.site-nav a {
  padding: 8px 10px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  border-radius: 999px;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--ink); background: var(--aqua); }
.header-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-cta { min-height: 38px; padding: 8px 14px; font-size: .72rem; }
.nav-toggle { display: none; padding: 8px; border: 1px solid var(--line-strong); border-radius: var(--r); background: var(--surface); }
.nav-toggle__bar { display: block; width: 22px; height: 2px; margin: 4px 0; background: var(--ink); }

.lang-dropdown { position: relative; }
.lang-dropdown__btn, .lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.7);
  color: var(--ink);
  font-size: .74rem;
  font-weight: 700;
}
.lang-dropdown__list, .lang-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 190px;
  padding: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: 0 18px 50px rgba(7,20,17,.16);
  z-index: 50;
}
.lang-dropdown__list.open, .lang-menu.open { display: block; }
.lang-dropdown__list a, .lang-menu a { display: flex; gap: 8px; padding: 8px; border-radius: 6px; font-size: .82rem; color: var(--ink); }
.lang-dropdown__list a:hover, .lang-menu a:hover, .lang-dropdown__option--active { background: var(--aqua); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  background: var(--surface);
  color: var(--ink);
  overflow-y: auto;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.mobile-nav__close { padding: 9px; border: 1px solid var(--line-strong); border-radius: var(--r); }
.mobile-nav nav { display: flex; flex-direction: column; gap: 8px; }
.mobile-nav nav a { padding: 13px 10px; border-bottom: 1px solid var(--line); font-weight: 800; }
.mobile-nav__cta { margin-top: 14px; }
.mobile-lang-list { display: flex; flex-wrap: wrap; gap: 8px; padding: 16px 10px 0; }
.mobile-lang-list a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .8rem;
}
.mobile-lang-list a.active { background: var(--lime); color: var(--ink); }

.hero-section { padding: 54px 0 46px; }
.hero-relay {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  min-height: calc(86vh - var(--nav-h));
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(280px, .46fr);
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(128deg, rgba(255,111,97,.16) 0 15%, transparent 15.2%),
    linear-gradient(142deg, rgba(21,199,201,.14) 0 38%, transparent 38.2%),
    rgba(255,255,255,.72);
  box-shadow: 0 26px 80px rgba(7,20,17,.12);
}
.hero-copy { padding: clamp(34px, 6vw, 88px); align-self: center; }
.hero-h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 850;
  line-height: .97;
}
.hero-lead { max-width: 660px; margin-bottom: 28px; color: var(--muted); font-size: clamp(1rem, 1.35vw, 1.16rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.relay-board {
  align-self: center;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 500px;
  margin: 22px 22px 22px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, transparent 0 49%, rgba(21,199,201,.18) 49.3% 50%, transparent 50.3%),
    rgba(255,255,255,.78);
  color: var(--ink);
  box-shadow: 0 18px 52px rgba(11,22,32,.1);
}
.relay-board__cap { display: flex; justify-content: space-between; gap: 16px; align-items: start; padding-bottom: 20px; }
.relay-board__cap span { color: var(--muted); font-size: .74rem; font-weight: 700; text-transform: uppercase; }
.relay-board__cap strong { color: var(--ink); font-family: var(--font-d); font-size: clamp(2rem, 4vw, 4rem); line-height: .85; }
.relay-lanes { position: relative; min-height: 230px; margin: 10px 0 26px; }
.relay-lanes::before {
  content: "";
  position: absolute;
  inset: 12px 0;
  background:
    radial-gradient(circle at 22% 24%, var(--cyan) 0 5px, transparent 6px),
    radial-gradient(circle at 78% 70%, var(--lime) 0 6px, transparent 7px),
    linear-gradient(135deg, transparent 0 49%, rgba(21,199,201,.5) 49.4% 50%, transparent 50.4%);
}
.relay-lanes span {
  position: absolute;
  left: var(--x);
  top: calc(18% + var(--i, 0) * 14%);
  width: var(--w);
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  box-shadow: none;
}
.relay-lanes span:nth-child(1) { top: 16%; }
.relay-lanes span:nth-child(2) { top: 34%; }
.relay-lanes span:nth-child(3) { top: 52%; }
.relay-lanes span:nth-child(4) { top: 70%; }
.relay-lanes span:nth-child(5) { top: 86%; }
.quote-lanes { display: grid; gap: 10px; }
.quote-lanes div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.quote-lanes span { color: var(--muted); font-size: .72rem; }
.quote-lanes strong { color: var(--ink); font-family: var(--font-d); }
.hero-trust {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255,255,255,.74);
  border-top: 1px solid var(--line);
}
.hero-trust span { padding: 15px 18px; border-right: 1px solid var(--line); font-size: .76rem; font-weight: 700; text-align: center; color: var(--line-strong); }
.hero-trust span:last-child { border-right: 0; }

.stats-section, .features-section, .scenario-section, .compare-section, .calc-section, .testimonials-section, .offer-section, .contact-section, .faq-section, .articles-section {
  padding: 88px 0;
}
.stats-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
  box-shadow: 0 18px 50px rgba(7,20,17,.08);
}
.stat-item { min-height: 132px; display: flex; flex-direction: column; justify-content: space-between; padding: 22px; background: rgba(255,255,255,.74); }
.stat-item strong { color: var(--ink); font-family: var(--font-d); font-size: clamp(2.15rem, 3.7vw, 4rem); line-height: .86; }
.stat-item span { color: var(--muted); font-size: .72rem; font-weight: 700; text-transform: uppercase; }

.split-heading { display: grid; grid-template-columns: minmax(0, .95fr) minmax(300px, .65fr); gap: 40px; align-items: end; margin-bottom: 38px; }
.relay-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.feature-cell {
  min-height: 220px;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(31,215,210,.16) 0 1px, transparent 1px 100%),
    rgba(255,255,255,.78);
  box-shadow: 0 16px 44px rgba(7,20,17,.07);
}
.feature-cell--wide { grid-column: span 3; }
.feature-cell--tall { grid-column: span 3; background: var(--ink); color: var(--surface); }
.feature-cell i { width: 40px; height: 10px; border-radius: 999px; background: linear-gradient(90deg, var(--cyan), var(--lime)); box-shadow: 0 0 18px rgba(31,215,210,.32); }
.feature-cell h3 { font-size: 1.1rem; font-weight: 800; line-height: 1.16; }
.feature-cell p { margin-top: auto; color: var(--muted); font-size: .9rem; }
.feature-cell--tall h3 { color: var(--surface); }
.feature-cell--tall p { color: var(--surface-3); }

.scenario-section { background: var(--ink); color: var(--surface); }
.scenario-section .section-h, .scenario-section .section-sub, .scenario-section .section-eyebrow { color: var(--surface); }
.scenario-shell { display: grid; grid-template-columns: .68fr 1fr; gap: 44px; align-items: start; }
.scenario-board {
  display: grid;
  gap: 12px;
  transform: skewY(-2deg);
}
.scenario-board article {
  padding: 22px;
  border: 1px solid rgba(217,255,251,.18);
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(31,215,210,.16), rgba(184,255,61,.06));
  transform: skewY(2deg);
}
.scenario-board span { display: block; margin-bottom: 12px; color: var(--lime); font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.scenario-board strong { display: block; margin-bottom: 8px; font-family: var(--font-d); font-size: 1.05rem; color: var(--surface); }
.scenario-board p { color: var(--surface-3); font-size: .88rem; }

.compare-shell, .calc-inner { display: grid; grid-template-columns: .68fr 1fr; gap: 34px; align-items: start; }
.compare-scroll { width: 100%; overflow-x: auto; border-radius: 14px; }
.compare-table { width: 100%; min-width: 620px; border-collapse: collapse; overflow: hidden; border-radius: 14px; background: rgba(255,255,255,.78); border: 1px solid var(--line); font-size: .84rem; }
.compare-table th, .compare-table td { padding: 13px 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.compare-table th { background: var(--aqua); color: var(--ink); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.compare-table td:nth-child(2) { color: var(--line-strong); font-weight: 900; }
.compare-table td:nth-child(3) { color: var(--muted); }

.calc-inner { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.72); box-shadow: 0 18px 52px rgba(7,20,17,.09); }
.calc-controls { padding: 34px; }
.range-group { margin-top: 24px; }
.range-label { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 9px; font-size: .78rem; font-weight: 800; }
input[type="range"] { width: 100%; appearance: none; height: 6px; border-radius: 999px; background: linear-gradient(90deg, var(--cyan), var(--lime)); outline: none; }
input[type="range"]::-webkit-slider-thumb { appearance: none; width: 22px; height: 22px; border: 2px solid var(--ink); border-radius: 50%; background: var(--surface); cursor: pointer; }
input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border: 2px solid var(--ink); border-radius: 50%; background: var(--surface); cursor: pointer; }
.calc-results { display: grid; gap: 0; background: var(--ink); color: var(--surface); }
.calc-results div { display: flex; justify-content: space-between; gap: 16px; padding: 22px; border-bottom: 1px solid rgba(217,255,251,.18); }
.calc-results span { color: var(--surface-3); font-size: .76rem; font-weight: 800; }
.calc-results strong { color: var(--lime); font-family: var(--font-d); font-size: clamp(1.7rem, 2.7vw, 2.8rem); line-height: .95; text-align: right; }
.calc-results .btn { margin: 22px; width: auto; background: var(--lime); color: var(--ink); }
.calc-results p { padding: 0 22px 22px; color: var(--surface-3); font-size: .76rem; }

.testimonials-grid, .articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial-card, .article-card, .doc-card, .plan-card, .about-stat-card, .risk-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 44px rgba(7,20,17,.07);
}
.testimonial-card p, .article-card__preview, .doc-card__desc, .risk-card p { color: var(--muted); font-size: .9rem; }
.testimonial-card strong, .article-card__title, .doc-card__title, .plan-name { font-family: var(--font-d); font-weight: 800; }
.testimonial-card span, .article-card__date, .article-card__more { color: var(--muted); font-size: .74rem; font-weight: 800; text-transform: uppercase; }

.offer-section { background: linear-gradient(120deg, var(--aqua), var(--surface-2)); }
.offer-panel {
  display: grid;
  grid-template-columns: .95fr .8fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.66);
}
.offer-panel .btn { justify-self: end; }
.offer-banner { margin-bottom: 12px; color: var(--line-strong); font-weight: 800; }
.offer-banner em { font-style: normal; background: var(--lime); }

.contact-section { background: var(--surface-2); }
.contact-inner {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 20px 56px rgba(7,20,17,.1);
}
.contact-copy { padding: 34px; background: var(--ink); color: var(--surface); }
.contact-copy .section-h, .contact-copy .section-sub, .contact-copy .section-eyebrow { color: var(--surface); }
.contact-copy .section-sub { margin-bottom: 12px; color: var(--surface-3); }
.contact-form-wrap { padding: 34px; }
.form-heading { margin-bottom: 18px; font-family: var(--font-d); font-size: 1rem; font-weight: 800; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: .7rem; font-weight: 800; text-transform: uppercase; color: var(--muted); }
.rf-form-input {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  color: var(--ink);
  font-size: .9rem;
  outline: none;
}
.rf-form-input:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(31,215,210,.16); }
.rf-form-input.phone_input { padding-left: 52px; }
.iti-wrap, .iti { width: 100%; }
.form-note { color: var(--muted); font-size: .72rem; line-height: 1.55; }
.form-note a { text-decoration: underline; font-weight: 800; }
.err { display: block; color: var(--danger); font-size: .72rem; }
.error-msg.hide, .form-preloader-orange.hidden { display: none; }
.input_group.has-error .rf-form-input { border-color: var(--danger); }
.form_error { color: var(--danger); font-size: .82rem; min-height: 0; }
.dot-spinner { display: flex; justify-content: center; gap: 6px; padding: 12px; }
.dot-spinner .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); animation: dotPulse 1s infinite ease-in-out; }
.dot-spinner .dot:nth-child(2) { animation-delay: .15s; }
.dot-spinner .dot:nth-child(3) { animation-delay: .3s; }
@keyframes dotPulse { 0%, 80%, 100% { opacity: .25; transform: scale(.75); } 40% { opacity: 1; transform: scale(1); } }

.faq-shell { display: grid; grid-template-columns: .52fr 1fr; gap: 40px; }
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  font-family: var(--font-d);
  font-weight: 800;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--cyan); font-size: 1.4rem; line-height: 1; }
.faq-item[open] summary::after { content: "-"; }
.faq-item__body { padding-bottom: 18px; color: var(--muted); }

.page-hero { max-width: 980px; margin: 0 auto 54px; padding: 74px 20px 42px; border-bottom: 1px solid var(--line); text-align: center; }
.page-hero .section-sub { margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; padding-bottom: 80px; }
.about-text h2, .risk-section .rte-content h2, .legal-doc h2 { margin: 24px 0 10px; font-size: 1.1rem; font-family: var(--font-d); font-weight: 800; }
.about-text p, .risk-section .rte-content, .legal-doc { color: var(--muted); }
.about-stats, .plan-features { display: flex; flex-direction: column; gap: 14px; }
.big-num, .plan-price { font-family: var(--font-d); font-size: 2.6rem; line-height: .9; }
.docs-grid, .risk-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; padding-bottom: 80px; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding-bottom: 80px; }
.plan-card.featured { background: var(--aqua); border-color: var(--cyan); }
.plan-badge { align-self: flex-start; padding: 4px 8px; border-radius: 999px; background: var(--ink); color: var(--lime); font-size: .7rem; font-weight: 900; }
.plan-feature { color: var(--muted); font-size: .9rem; }
.plans-disclaimer { padding-bottom: 80px; text-align: center; color: var(--muted); font-size: .8rem; }
.risk-section, .legal-doc { padding-bottom: 80px; }
.risk-section .rte-content, .legal-doc, .article-body, .article-hero { max-width: 820px; margin-left: auto; margin-right: auto; }
.article-hero { padding: 70px 20px 36px; border-bottom: 1px solid var(--line); margin-bottom: 36px; }
.article-body { padding-bottom: 70px; color: var(--muted); }
.article-body p, .rte p, .legal-doc p { margin-bottom: 14px; }
.thank-you-section { min-height: calc(100vh - var(--nav-h)); display: grid; place-items: center; padding: 50px 20px; }
.thank-you-card { max-width: 520px; text-align: center; background: rgba(255,255,255,.8); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 20px 56px rgba(7,20,17,.12); padding: 38px; }
.thank-you-icon { width: 58px; height: 58px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--lime); }

.site-footer { margin-top: auto; padding: 42px 0; border-top: 1px solid var(--line); background: var(--surface-2); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.footer-links a { padding: 4px 8px; border-radius: 999px; font-size: .76rem; font-weight: 800; color: var(--muted); }
.footer-links a:hover { color: var(--ink); background: var(--aqua); }
.footer-copy { max-width: 820px; color: var(--muted); font-size: .72rem; }

.iti__country-list { background: var(--surface); border: 1px solid var(--line); color: var(--ink); }
.iti__country.iti__highlight { background: var(--aqua); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
}
@media (max-width: 1080px) {
  .site-nav, .header-cta { display: none; }
  .nav-toggle { display: block; }
  .hero-relay { grid-template-columns: 1fr; background: var(--surface); }
  .relay-board { margin: 0 22px 22px; }
  .hero-trust { grid-column: 1; }
  .stats-ribbon { grid-template-columns: repeat(2, 1fr); }
  .relay-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-cell, .feature-cell--wide, .feature-cell--tall { grid-column: auto; }
  .scenario-shell, .compare-shell, .calc-inner, .contact-inner, .faq-shell, .offer-panel { grid-template-columns: 1fr; }
  .testimonials-grid, .articles-grid, .plans-grid { grid-template-columns: 1fr; }
  .offer-panel .btn { justify-self: start; }
}
@media (max-width: 720px) {
  :root { --nav-h: 64px; }
  header { padding: 0 16px; }
  .container, .hero-relay { width: min(100% - 28px, var(--max)); }
  .hero-copy { padding: 34px 22px; }
  .hero-h1 { font-size: clamp(2.45rem, 13vw, 4.1rem); line-height: 1.02; }
  .relay-board { min-height: 440px; margin: 0 14px 14px; padding: 18px; }
  .hero-trust, .stats-ribbon, .relay-grid, .docs-grid, .risk-cards { grid-template-columns: 1fr; }
  .hero-trust span { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-trust span:last-child { border-bottom: 0; }
  .split-heading { grid-template-columns: 1fr; gap: 18px; }
  .form-row { grid-template-columns: 1fr; }
  .compare-table { font-size: .74rem; }
  .compare-table th, .compare-table td { padding: 9px; }
  .calc-controls, .contact-copy, .contact-form-wrap { padding: 24px; }
  .hero-actions .btn { width: 100%; }
}
