:root {
  --bg: #f5f1e8;
  --surface: #fffdfa;
  --surface-2: #efe8dc;
  --text: #16212b;
  --muted: #53606b;
  --line: #d8cfbf;
  --brand: #1f5679;
  --brand-dark: #153c55;
  --accent: #b57a3f;
  --success: #2d6a4f;
  --shadow: 0 16px 40px rgba(23, 32, 42, 0.09);
  --shadow-soft: 0 8px 24px rgba(23, 32, 42, 0.05);
  --radius: 20px;
  --container: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Avenir Next", Avenir, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.62), transparent 28%),
    linear-gradient(180deg, #f7f3eb 0%, #f3eee4 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(245, 241, 232, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216, 207, 191, 0.7);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 78px; gap: 16px;
}
.brand {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.08rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  position: relative;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(31, 86, 121, 0.08);
  border: 1px solid rgba(31, 86, 121, 0.12);
}
.brand-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand);
}
.brand-arc {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(181, 122, 63, 0.8);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 999px;
  transform: rotate(-18deg);
}
.nav nav { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.nav nav a { color: var(--muted); font-size: 0.95rem; }
.nav nav a:hover { color: var(--text); }
.nav-cta { color: var(--brand) !important; font-weight: 700; }
.hero { padding: 88px 0 56px; }
.hero-small { padding-top: 68px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 430px);
  gap: 40px;
  align-items: start;
}
.hero-grid-single { grid-template-columns: 1fr; max-width: 900px; }
.eyebrow {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(31, 86, 121, 0.08);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
h1, h2, h3 { letter-spacing: -0.04em; line-height: 1.02; margin: 0 0 16px; }
h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); max-width: 11ch; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); max-width: 18ch; }
h3 { font-size: 1.12rem; }
.lead { font-size: 1.14rem; color: var(--muted); max-width: 58ch; line-height: 1.72; }
.hero-actions, .cta-band-actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px;
}
.trust-inline {
  margin: 20px 0 0; padding: 0; list-style: none;
  display: flex; gap: 18px; flex-wrap: wrap; color: var(--muted); font-size: 0.95rem;
}
.hero-signal {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.84);
  border: 1px solid rgba(216, 207, 191, 0.85);
  color: var(--muted);
  font-size: 0.94rem;
  box-shadow: var(--shadow-soft);
}
.signal-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: var(--brand);
  background: rgba(31, 86, 121, 0.08);
  font-weight: 800;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.proof-card {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(32, 83, 117, 0.12);
  background: rgba(255,255,255,0.6);
}
.proof-card strong {
  display: block;
  margin-bottom: 6px;
}
.proof-card span {
  color: var(--muted);
  font-size: 0.95rem;
}
.card {
  background: var(--surface);
  border: 1px solid rgba(216, 207, 191, 0.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.hero-card, .price-card, .info-card, .thanks-card {
  padding: 28px;
  background: rgba(255, 253, 250, 0.94);
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 20px; border-radius: 14px;
  border: 1px solid transparent; font-weight: 800; transition: 0.2s ease;
  letter-spacing: -0.01em;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, #25638c 0%, #1f5679 100%);
  color: white;
  box-shadow: 0 10px 24px rgba(31, 86, 121, 0.22);
}
.btn-primary:hover { background: linear-gradient(180deg, #1f5679 0%, #153c55 100%); }
.btn-secondary { background: rgba(255,255,255,0.78); border-color: var(--line); color: var(--text); }
.btn-block { width: 100%; }
.lead-form { display: grid; gap: 16px; margin-top: 18px; }
.lead-form label { display: grid; gap: 8px; font-weight: 700; font-size: 0.95rem; }
.lead-form input,
.lead-form select {
  width: 100%; min-height: 50px; padding: 0 16px;
  border: 1px solid var(--line); border-radius: 14px; background: white;
  font: inherit; color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.lead-form input:focus,
.lead-form select:focus { outline: 2px solid rgba(32, 83, 117, 0.18); border-color: var(--brand); }
.microcopy { color: var(--muted); font-size: 0.88rem; margin: 0; line-height: 1.55; }
.form-status {
  min-height: 1.2em;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.section { padding: 84px 0; }
.muted { background: linear-gradient(180deg, rgba(239,232,220,0.8) 0%, rgba(245,241,232,0.65) 100%); }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px;
}
.step { padding: 22px; }
.trust-strip {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.trust-strip > div {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.75);
}
.trust-strip strong {
  display: block;
  margin-bottom: 4px;
}
.trust-strip span {
  color: var(--muted);
  font-size: 0.92rem;
}
.step span {
  display: inline-flex; width: 34px; height: 34px; border-radius: 999px;
  align-items: center; justify-content: center; margin-bottom: 12px;
  background: rgba(184, 115, 51, 0.13); color: var(--accent); font-weight: 800;
}
.two-col {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; align-items: start;
}
.checklist { margin: 0; padding-left: 18px; color: var(--muted); display: grid; gap: 10px; }
.text-link { color: var(--brand); font-weight: 700; }
.route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.route-card,
.mini-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,253,250,0.94);
  border: 1px solid rgba(216, 207, 191, 0.85);
  box-shadow: var(--shadow-soft);
}
.route-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}
.route-card span,
.mini-card span { color: var(--brand); font-weight: 700; }
.quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.mini-card strong { font-size: 1rem; }
.price-row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 14px 0; border-top: 1px solid var(--line);
}
.price-row:first-of-type { border-top: 0; }
.faq-wrap { max-width: 880px; }
.faq-list { display: grid; gap: 14px; margin-top: 22px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 0 18px;
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 18px 0; font-weight: 700;
}
.faq-item p { color: var(--muted); padding: 0 0 18px; margin: 0; }
.cta-band { background: linear-gradient(135deg, var(--brand), #2e6b91); color: white; }
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
}
.cta-band .eyebrow { background: rgba(255,255,255,0.12); color: white; }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 56ch; }
.cta-band .btn-secondary { color: white; border-color: rgba(255,255,255,0.25); }
.site-footer { padding: 28px 0 48px; color: var(--muted); }
.footer-inner { display: grid; gap: 6px; }
.footer-note { font-size: 0.92rem; }
.related-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.related-link {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.related-link p {
  margin: 0;
  color: var(--muted);
}
.related-link span {
  color: var(--brand);
  font-weight: 700;
}
.thanks-page {
  min-height: 100vh; display: grid; place-items: center; padding: 36px 0;
}
.thanks-card { max-width: 860px; width: 100%; }
.compact-steps { margin-top: 26px; }
.center { justify-content: center; }

@media (max-width: 980px) {
  .hero-grid, .two-col, .steps, .cta-band-inner, .quick-links, .route-grid, .hero-proof, .trust-strip, .related-links { grid-template-columns: 1fr; }
  .cta-band-inner { align-items: start; }
}

@media (max-width: 640px) {
  body { line-height: 1.48; }
  .container { width: min(var(--container), calc(100% - 24px)); }
  .site-header {
    position: static;
    background: rgba(246, 243, 236, 0.97);
  }
  .nav {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 10px 0;
    gap: 8px;
    min-height: auto;
  }
  .brand {
    font-size: 1.05rem;
  }
  .nav,
  .nav nav {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
  }
  .nav nav {
    width: 100%;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .nav nav::-webkit-scrollbar { display: none; }
  .nav nav a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    width: auto;
    flex: 0 0 auto;
    padding: 0;
    white-space: nowrap;
    font-size: 0.95rem;
  }
  .hero {
    padding-top: 34px;
    padding-bottom: 24px;
  }
  .hero-small { padding-top: 30px; }
  h1 {
    font-size: clamp(2rem, 9vw, 2.7rem);
    line-height: 1.03;
    margin-bottom: 12px;
    max-width: 100%;
  }
  h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin-bottom: 14px;
    max-width: 100%;
  }
  .lead {
    font-size: 1rem;
    line-height: 1.62;
  }
  .hero-card, .price-card, .info-card, .thanks-card { padding: 18px; }
  .section { padding: 52px 0; }
  .hero-actions, .cta-band-actions { width: 100%; gap: 10px; }
  .btn { width: 100%; min-height: 50px; }
  .trust-inline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 16px;
  }
  .trust-inline li {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.68);
    border: 1px solid rgba(222, 215, 202, 0.8);
  }
  .hero-signal {
    display: flex;
    width: 100%;
    border-radius: 16px;
    padding: 12px 14px;
    margin-top: 16px;
    font-size: 0.92rem;
  }
  .proof-card, .route-card, .mini-card, .trust-strip > div, .step {
    padding: 16px;
    border-radius: 14px;
  }
  .route-grid, .quick-links, .hero-proof, .trust-strip, .steps, .two-col { gap: 14px; }
  .lead-form { gap: 12px; }
  .lead-form label { gap: 6px; font-size: 0.92rem; }
  .lead-form input, .lead-form select { min-height: 50px; font-size: 16px; }
  .faq-item { padding: 0 14px; }
  .faq-item summary { padding: 16px 0; }
  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .cta-band-inner { gap: 18px; }
  .footer-inner { gap: 10px; }
}