/* ============================================================
   Template 23 — Copper Dispatch
   Visual fingerprint: warm dark ink + Cormorant Garamond serif + copper accents
   Layout fingerprint: center-anchored editorial, zero JS animations
   ============================================================ */

/* ── Variables ────────────────────────────────────────────── */
:root {
  --bg:        #100e0c;
  --bg-2:      #1b1814;
  --bg-3:      #252018;
  --bg-4:      #2e2820;
  --copper:    #bf7a30;
  --copper-l:  #d4944e;
  --copper-d:  #8f5920;
  --ivory:     #ede5d0;
  --ivory-2:   #c2b79a;
  --ivory-3:   #8a7d68;
  --ivory-4:   #5a5044;
  --sage:      #7a9b8a;
  --sage-d:    #5a7a6a;
  --red:       #c45240;
  --border-c:  rgba(191, 122, 48, .22);
  --border-c2: rgba(191, 122, 48, .45);
  --border-s:  rgba(237, 229, 208, .09);
  --border-s2: rgba(237, 229, 208, .18);
  --font-d:    'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-b:    'Work Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --r:         4px;
  --r-lg:      8px;
  --max:       1180px;
  --nav-h:     68px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--font-b);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-b); border: none; background: none; }
ul, ol { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-d); line-height: 1.1; color: var(--ivory); }
h1 { font-size: clamp(2.8rem, 6vw, 5.4rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
p  { color: var(--ivory-2); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-b);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
  --rule-scale: 1;
}
.section-eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  transform: scaleX(var(--rule-scale));
  transform-origin: left;
}
.section-h {
  font-family: var(--font-d);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.12;
  margin-bottom: 16px;
}
.section-h em { font-style: italic; color: var(--copper-l); }
.section-sub {
  font-size: 1rem;
  color: var(--ivory-3);
  max-width: 620px;
  line-height: 1.7;
}

/* ── Layout helpers ───────────────────────────────────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.wrap { min-height: 100vh; display: flex; flex-direction: column; }
.divider { width: 100%; height: 1px; background: var(--border-c); margin: 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r);
  font-family: var(--font-b);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: transparent;
  border: 1.5px solid var(--copper);
  color: var(--ivory);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--copper);
  color: var(--bg);
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border-s2);
  color: var(--ivory-2);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  border-color: var(--border-c);
  color: var(--ivory);
}
.btn-full { width: 100%; justify-content: center; }

/* ── Header ───────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: var(--bg);
  border-bottom: 1px solid var(--border-c);
  gap: 24px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-d);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ivory);
  flex-shrink: 0;
}
.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: var(--r);
  background: var(--copper);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 800;
}
.logo-img { height: 32px; width: auto; object-fit: contain; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.site-nav a {
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ivory-3);
  border-radius: var(--r);
  transition: color 0.15s, background 0.15s;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--ivory); background: var(--border-s); }

.header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-cta { padding: 9px 20px; font-size: 0.82rem; }

/* ── Nav toggle (mobile) ──────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r);
}
.nav-toggle__bar {
  width: 20px;
  height: 2px;
  background: var(--ivory-2);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
  display: block;
}

/* ── Mobile nav ───────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg-2);
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.mobile-nav__close {
  padding: 8px;
  color: var(--ivory-3);
  border-radius: var(--r);
}
.mobile-nav__close:hover { color: var(--ivory); }
.mobile-nav nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mobile-nav nav a {
  padding: 12px 16px;
  font-size: 1rem;
  color: var(--ivory-2);
  border-radius: var(--r);
  border-bottom: 1px solid var(--border-s);
}
.mobile-nav nav a:hover { color: var(--ivory); background: var(--border-s); }
.mobile-nav__cta { margin-top: 16px; width: 100%; justify-content: center; }

/* ── Lang dropdown ────────────────────────────────────────── */
.lang-dropdown { position: relative; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: var(--r);
  border: 1px solid var(--border-s);
  background: transparent;
  font-size: 0.8rem;
  color: var(--ivory-3);
  transition: border-color 0.15s, color 0.15s;
}
.lang-btn:hover { border-color: var(--border-c); color: var(--ivory); }
.lang-dropdown__label { display: none; }
.lang-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 160px;
  background: var(--bg-3);
  border: 1px solid var(--border-s);
  border-radius: var(--r-lg);
  padding: 6px;
  z-index: 50;
  box-shadow: 0 8px 32px rgba(0,0,0,.6);
}
.lang-menu.open { display: block; }
.lang-menu li { list-style: none; }
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 0.82rem;
  color: var(--ivory-2);
  border-radius: var(--r);
  transition: background 0.15s, color 0.15s;
}
.lang-menu a:hover { background: var(--border-s); color: var(--ivory); }
.lang-dropdown__option--active { color: var(--copper) !important; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero-section {
  min-height: calc(88vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  border-bottom: 1px solid var(--border-c);
  position: relative;
}
.hero-inner {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-kicker::before,
.hero-kicker::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--copper);
  opacity: .5;
}
.hero-h1 {
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--ivory);
}
.hero-h1 em { color: var(--copper-l); font-style: italic; }
.hero-lead {
  font-size: 1.05rem;
  color: var(--ivory-3);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--ivory-3);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.trust-sep { color: var(--copper); font-size: 0.5rem; }

/* ── Stats strip ──────────────────────────────────────────── */
.stats-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border-c);
  background: var(--bg-2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 20px 32px;
  text-align: center;
  border-right: 1px solid var(--border-c);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl {
  font-size: 0.78rem;
  color: var(--ivory-3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── Features ─────────────────────────────────────────────── */
.features-section {
  padding: 96px 0;
  border-bottom: 1px solid var(--border-c);
}
.features-header {
  text-align: center;
  margin-bottom: 56px;
}
.features-header .section-sub { margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border-c);
  border: 1px solid var(--border-c);
  border-radius: var(--r);
  overflow: hidden;
}
.feature-cell {
  background: var(--bg-2);
  padding: 36px 32px;
  border-top: 2px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.feature-cell:hover { background: var(--bg-3); border-top-color: var(--copper); }
.feature-numeral {
  font-family: var(--font-d);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 16px;
  opacity: .7;
}
.feature-title {
  font-family: var(--font-d);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 10px;
  line-height: 1.2;
}
.feature-desc {
  font-size: 0.88rem;
  color: var(--ivory-3);
  line-height: 1.7;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section {
  padding: 96px 0;
  border-bottom: 1px solid var(--border-c);
}
.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}
.testimonials-header .section-sub { margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--bg-2);
  border: 1px solid var(--border-s);
  border-top: 2px solid var(--border-c2);
  border-radius: var(--r);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stars { display: flex; gap: 3px; }
.star { width: 14px; height: 14px; fill: var(--copper); }
.testimonial-text {
  font-size: 0.88rem;
  color: var(--ivory-2);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-4);
  border: 1px solid var(--border-c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--copper);
  flex-shrink: 0;
}
.author-name {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ivory);
}
.author-role { font-size: 0.75rem; color: var(--ivory-3); }

/* ── Comparison table ─────────────────────────────────────── */
.compare-section {
  padding: 96px 0;
  border-bottom: 1px solid var(--border-c);
}
.compare-header { text-align: center; margin-bottom: 48px; }
.compare-header .section-sub { margin: 0 auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: var(--bg-2);
  border: 1px solid var(--border-c);
  border-radius: var(--r);
  overflow: hidden;
}
.compare-table th, .compare-table td { padding: 14px 20px; text-align: left; }
.compare-table th {
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory-3);
  background: var(--bg-3);
  border-bottom: 1px solid var(--border-c);
}
.compare-table td { border-bottom: 1px solid var(--border-s); color: var(--ivory-2); }
.compare-table tr:last-child td { border-bottom: none; }
.check { color: var(--sage); font-size: 1rem; }
.cross { color: var(--ivory-4); font-size: 1rem; }
.compare-table td.us { color: var(--ivory); font-weight: 500; }

/* ── Promo offer ──────────────────────────────────────────── */
.offer-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--border-c);
  background: var(--bg-2);
}
.offer-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.offer-banner {
  margin: 20px 0 32px;
  font-size: 1.05rem;
  color: var(--ivory-2);
  line-height: 1.7;
}
.offer-banner em { font-style: normal; color: var(--copper-l); }
.offer-banner strong { color: var(--ivory); }

/* ── Calculator ───────────────────────────────────────────── */
.calc-section {
  padding: 96px 0;
  border-bottom: 1px solid var(--border-c);
}
.calc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  background: var(--bg-2);
  border: 1px solid var(--border-c);
  border-radius: var(--r-lg);
  padding: 48px;
}
.calc-eyebrow { margin-bottom: 8px; }
.calc-inner .section-h { margin-bottom: 32px; }
.range-group { margin-bottom: 24px; }
.range-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--ivory-3);
  margin-bottom: 8px;
  font-weight: 500;
}
.range-val { color: var(--copper); font-weight: 600; }
input[type="range"] {
  width: 100%;
  appearance: none;
  height: 3px;
  border-radius: 2px;
  background: var(--border-s2);
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--copper);
  cursor: pointer;
  border: 2px solid var(--bg);
}
input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--copper);
  cursor: pointer;
  border: 2px solid var(--bg);
}
.calc-results {
  background: var(--bg-3);
  border: 1px solid var(--border-c);
  border-radius: var(--r);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-s);
}
.calc-result-row:last-of-type { border-bottom: none; padding-bottom: 0; }
.calc-result-row.highlight .calc-result-val {
  font-size: 2rem;
  font-family: var(--font-d);
  color: var(--copper);
}
.calc-result-label { font-size: 0.78rem; color: var(--ivory-3); text-transform: uppercase; letter-spacing: 0.06em; }
.calc-result-val { font-family: var(--font-d); font-size: 1.4rem; font-weight: 700; color: var(--ivory); }
.calc-pct-badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(191,122,48,.15);
  border: 1px solid var(--border-c);
  font-size: 0.72rem;
  color: var(--copper-l);
  font-weight: 600;
  margin-left: 8px;
}
.form-note {
  font-size: 0.72rem;
  color: var(--ivory-4);
  line-height: 1.5;
  text-align: center;
}

/* ── Execution Timeline (signature block) ─────────────────── */
.timeline-section {
  padding: 96px 0;
  border-bottom: 1px solid var(--border-c);
}
.timeline-header { text-align: center; margin-bottom: 64px; }
.timeline-header .section-sub { margin: 0 auto; }
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.timeline-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  border-top: 2px dashed var(--border-c2);
  z-index: 0;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
  --timeline-progress: 1;
}
.timeline-step::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 50%;
  width: calc(100% - 72px);
  height: 2px;
  background: var(--sage);
  transform: translateX(36px) scaleX(var(--timeline-progress));
  transform-origin: left;
  opacity: 0.75;
}
.timeline-step:last-child::before { display: none; }
.timeline-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--copper);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--copper);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.timeline-step-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-4);
  margin-bottom: 6px;
}
.timeline-step-time {
  display: inline-flex;
  padding: 3px 10px;
  border: 1px solid var(--border-c);
  border-radius: 20px;
  font-size: 0.7rem;
  color: var(--copper-l);
  font-weight: 600;
  margin-bottom: 14px;
  background: rgba(191,122,48,.06);
}
.timeline-step-h {
  font-family: var(--font-d);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 8px;
  line-height: 1.2;
}
.timeline-step-p {
  font-size: 0.82rem;
  color: var(--ivory-3);
  line-height: 1.65;
}
.timeline-cta-wrap { text-align: center; margin-top: 56px; }

/* ── Lead form / Contact ──────────────────────────────────── */
.contact-section {
  padding: 96px 0;
  border-bottom: 1px solid var(--border-c);
  background: var(--bg-2);
}
.contact-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.contact-inner .section-h { margin-bottom: 8px; }
.contact-inner .section-sub { margin: 0 auto 36px; }
.contact-form { text-align: left; margin-top: 8px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-field:last-of-type { margin-bottom: 0; }
.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ivory-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.rf-form-input {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border-s2);
  border-radius: var(--r);
  padding: 12px 14px;
  font-family: var(--font-b);
  font-size: 0.9rem;
  color: var(--ivory);
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
}
.rf-form-input::placeholder { color: var(--ivory-4); }
.rf-form-input:focus { border-color: var(--copper); }
.rf-form-input.phone_input { padding-left: 52px; }
.iti-wrap { position: relative; }
.iti { width: 100%; }
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
  padding: 14px;
  font-size: 0.95rem;
  background: var(--copper);
  border: none;
  color: var(--bg);
}
.form-submit:hover { background: var(--copper-l); color: var(--bg); }
.form-note { margin-top: 14px; font-size: 0.72rem; color: var(--ivory-4); line-height: 1.6; }
.form-note a { color: var(--ivory-3); text-decoration: underline; text-underline-offset: 2px; }
.form-note a:hover { color: var(--copper); }
.err { font-size: 0.72rem; color: var(--red); display: block; }
.error-msg.hide { display: none; }
.input_group.has-error .rf-form-input { border-color: var(--red); }
.form_error { color: var(--red); font-size: 0.82rem; min-height: 0; }
.form-preloader-orange.hidden { display: none; }
.dot-spinner { display: flex; gap: 6px; justify-content: center; padding: 16px 0; }
.dot-spinner .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--copper);
  animation: dotPulse 1.2s ease-in-out infinite;
}
.dot-spinner .dot:nth-child(2) { animation-delay: 0.2s; }
.dot-spinner .dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotPulse { 0%, 80%, 100% { opacity: .2; transform: scale(.8); } 40% { opacity: 1; transform: scale(1); } }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-section { padding: 96px 0; border-bottom: 1px solid var(--border-c); }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border-s);
}
.faq-item summary {
  list-style: none;
  padding: 18px 0;
  font-family: var(--font-d);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ivory);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-b);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--copper);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body {
  padding: 0 0 18px;
  font-size: 0.9rem;
  color: var(--ivory-3);
  line-height: 1.75;
}

/* ── Subpage hero ─────────────────────────────────────────── */
.page-hero {
  padding: 72px 0 56px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  border-bottom: 1px solid var(--border-c);
  margin-bottom: 56px;
}
.page-hero .section-sub { margin: 0 auto; }

/* ── About subpage ────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  padding: 0 0 80px;
  align-items: start;
}
.about-text h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ivory);
  margin: 28px 0 10px;
  border-left: 2px solid var(--copper);
  padding-left: 14px;
}
.about-text h2:first-child { margin-top: 0; }
.about-text p { font-size: 0.9rem; color: var(--ivory-3); line-height: 1.75; margin-bottom: 12px; }
.about-stats { display: flex; flex-direction: column; gap: 16px; }
.about-stat-card {
  background: var(--bg-2);
  border: 1px solid var(--border-c);
  border-radius: var(--r);
  padding: 20px 24px;
}
.about-stat-card .big-num {
  font-family: var(--font-d);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 4px;
}
.about-stat-card .lbl { font-size: 0.78rem; color: var(--ivory-3); }

/* ── Documents subpage ────────────────────────────────────── */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-bottom: 80px;
}
.doc-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-2);
  border: 1px solid var(--border-s);
  border-top: 2px solid var(--copper);
  border-radius: var(--r);
  padding: 24px;
  color: var(--ivory);
  transition: border-top-color 0.2s, background 0.2s;
}
.doc-card:hover { background: var(--bg-3); border-top-color: var(--copper-l); }
.doc-card__icon { color: var(--copper); }
.doc-card__title { font-family: var(--font-d); font-size: 1.2rem; font-weight: 600; color: var(--ivory); }
.doc-card__desc { font-size: 0.85rem; color: var(--ivory-3); line-height: 1.65; }

/* ── Plans subpage ────────────────────────────────────────── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 80px;
}
.plan-card {
  background: var(--bg-2);
  border: 1px solid var(--border-s);
  border-top: 2px solid var(--border-c2);
  border-radius: var(--r);
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.plan-card.featured {
  border-top-color: var(--copper);
  background: var(--bg-3);
}
.plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--copper);
  color: var(--bg);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-name { font-family: var(--font-d); font-size: 1.6rem; font-weight: 700; color: var(--ivory); }
.plan-price { font-family: var(--font-d); font-size: 2rem; font-weight: 700; color: var(--copper); line-height: 1; }
.plan-price span { font-size: 0.9rem; color: var(--ivory-3); font-family: var(--font-b); }
.plan-features { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.plan-feature {
  font-size: 0.85rem;
  color: var(--ivory-3);
  padding-left: 16px;
  position: relative;
}
.plan-feature::before { content: '◆'; position: absolute; left: 0; color: var(--copper); font-size: 0.5rem; top: 5px; }
.plan-cta { margin-top: 8px; }
.plans-disclaimer { text-align: center; padding: 0 20px 80px; color: var(--ivory-4); font-size: 0.78rem; }

/* ── Risk disclosure ──────────────────────────────────────── */
.risk-section { padding: 0 0 80px; }
.risk-section .rte-content {
  max-width: 780px;
  margin: 0 auto;
  font-size: 0.9rem;
  color: var(--ivory-3);
  line-height: 1.8;
}
.risk-section .rte-content h2 {
  font-size: 1.2rem;
  color: var(--ivory);
  margin: 24px 0 8px;
  font-family: var(--font-d);
}
.risk-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.risk-card {
  background: var(--bg-2);
  border: 1px solid var(--border-c);
  border-radius: var(--r);
  padding: 24px;
}
.risk-card h3 { font-size: 1rem; color: var(--copper-l); margin-bottom: 8px; font-family: var(--font-b); font-weight: 600; }
.risk-card p { font-size: 0.85rem; color: var(--ivory-3); line-height: 1.7; }

/* ── Articles ─────────────────────────────────────────────── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 80px;
}
.article-card {
  background: var(--bg-2);
  border: 1px solid var(--border-s);
  border-top: 2px solid var(--border-c2);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-top-color 0.2s;
}
.article-card:hover { border-top-color: var(--copper); }
.article-card__img { width: 100%; height: 180px; object-fit: cover; }
.article-card__img-placeholder {
  width: 100%;
  height: 180px;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--copper);
  opacity: .3;
}
.article-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.article-card__date { font-size: 0.72rem; color: var(--ivory-4); text-transform: uppercase; letter-spacing: 0.06em; }
.article-card__title { font-family: var(--font-d); font-size: 1.1rem; font-weight: 600; color: var(--ivory); line-height: 1.3; }
.article-card__preview { font-size: 0.82rem; color: var(--ivory-3); line-height: 1.6; }
.article-card__more { font-size: 0.78rem; color: var(--copper); font-weight: 600; margin-top: auto; }

/* ── Article single ───────────────────────────────────────── */
.article-hero {
  padding: 64px 0 40px;
  max-width: 720px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border-c);
  margin-bottom: 40px;
}
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 64px;
  font-size: 1rem;
  color: var(--ivory-2);
  line-height: 1.8;
}
.article-body h2, .article-body h3 { margin: 28px 0 12px; }
.article-body p { margin-bottom: 16px; }
.article-body a { color: var(--copper-l); text-decoration: underline; }
.rte h2, .rte h3 { font-family: var(--font-d); color: var(--ivory); margin: 28px 0 12px; }
.rte p { margin-bottom: 16px; color: var(--ivory-2); }
.rte a { color: var(--copper-l); }

/* ── Thank you ────────────────────────────────────────────── */
.thank-you-section {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}
.thank-you-card {
  max-width: 440px;
  text-align: center;
  background: var(--bg-2);
  border: 1px solid var(--border-c);
  border-top: 2px solid var(--copper);
  border-radius: var(--r-lg);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.thank-you-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
}
.thank-you-card h1 { font-size: 2rem; font-weight: 700; }
.thank-you-card p { font-size: 0.9rem; color: var(--ivory-3); line-height: 1.7; }

/* ── Legal doc ────────────────────────────────────────────── */
.legal-doc {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 0 80px;
  font-size: 0.92rem;
  color: var(--ivory-3);
  line-height: 1.8;
}
.legal-doc section { margin-bottom: 32px; }
.legal-doc h2 {
  font-family: var(--font-d);
  font-size: 1.2rem;
  color: var(--ivory);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-s);
}
.legal-doc p { margin-bottom: 10px; }
.legal-doc a { color: var(--copper-l); text-decoration: underline; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  padding: 40px 0 32px;
  border-top: 1px solid var(--border-c);
  margin-top: auto;
}
.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: 4px;
}
.footer-links a {
  font-size: 0.78rem;
  color: var(--ivory-4);
  padding: 4px 10px;
  border-radius: var(--r);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--ivory-2); }
.footer-copy { font-size: 0.73rem; color: var(--ivory-4); line-height: 1.6; max-width: 700px; }
.footer-copy a { color: var(--ivory-3); text-decoration: underline; }

/* ── intl-tel-input overrides ─────────────────────────────── */
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-dial-code { color: var(--ivory); }
.iti__country-list { background: var(--bg-3); border: 1px solid var(--border-s); color: var(--ivory-2); }
.iti__country.iti__highlight { background: var(--border-s); }
.iti__divider { border-bottom-color: var(--border-s); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .calc-inner { grid-template-columns: 1fr; gap: 32px; }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .timeline-grid::before { display: none; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  header { padding: 0 16px; }
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .lang-dropdown__label { display: inline; }
  .hero-section { padding: 60px 20px; min-height: auto; }
  .hero-h1 { font-size: clamp(2.4rem, 9vw, 4rem); }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 0.78rem; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
  .timeline-grid { grid-template-columns: 1fr; gap: 32px; }
  .calc-inner { padding: 28px 20px; }
  .about-grid { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .risk-cards { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stat-item { padding: 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; max-width: 320px; }
}
