:root {
  --bg: #f5f7fb;
  --bg-soft: #f8faff;
  --surface: #ffffff;
  --surface-strong: #f1f5ff;
  --text: #111827;
  --text-soft: #5f6c84;
  --accent: #0f62fe;
  --accent-soft: rgba(15, 98, 254, 0.12);
  --line: rgba(17, 24, 39, 0.1);
  --line-strong: rgba(17, 24, 39, 0.16);
  --shadow-sm: 0 10px 26px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 70px rgba(15, 23, 42, 0.12);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --container: 1160px;
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7f9fd 0%, var(--bg) 100%);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.page-glow {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  filter: blur(60px);
}

.page-glow-top {
  width: 42rem;
  height: 42rem;
  top: -20rem;
  right: -9rem;
  background: radial-gradient(circle, rgba(15, 98, 254, 0.18) 0%, rgba(15, 98, 254, 0) 70%);
}

.page-glow-side {
  width: 28rem;
  height: 28rem;
  top: 20rem;
  left: -14rem;
  background: radial-gradient(circle, rgba(35, 93, 229, 0.14) 0%, rgba(35, 93, 229, 0) 72%);
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(246, 248, 253, 0.76);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-lockup {
  width: 154px;
  height: auto;
  display: block;
}

.site-footer .brand-lockup {
  width: 148px;
}

.desktop-nav {
  display: inline-flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav a {
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--text);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease,
    border-color 220ms ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-sm {
  height: 40px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.btn-lg {
  height: 52px;
  padding: 0 24px;
  font-size: 0.98rem;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #1b68ff, #0a47c2);
  box-shadow: 0 14px 30px rgba(10, 71, 194, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(10, 71, 194, 0.33);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line-strong);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.nav-toggle {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
}

.nav-toggle span {
  width: 17px;
  height: 2px;
  border-radius: 99px;
  background: #17233d;
}

.mobile-nav {
  display: none;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}

.mobile-nav a {
  display: block;
  padding: 10px 8px;
  border-radius: 10px;
  color: var(--text-soft);
  font-weight: 600;
}

.mobile-nav a:hover {
  background: var(--surface-strong);
  color: var(--text);
}

.mobile-nav .btn {
  margin-top: 8px;
  width: 100%;
}

.hero {
  padding: 86px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 52px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #2f4f91;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5.2vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.hero-sub {
  margin: 22px 0 0;
  max-width: 52ch;
  font-size: 1.12rem;
  color: var(--text-soft);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-assurance {
  margin: 14px 0 0;
  color: #31405d;
  font-size: 0.93rem;
  font-weight: 600;
}

.hero-flow {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.hero-flow li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #31405d;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-flow span {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(15, 98, 254, 0.24);
  background: rgba(15, 98, 254, 0.1);
  color: #0f4ec7;
  font-size: 0.72rem;
  font-weight: 800;
}

.signal-row {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.signal-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: #31405d;
  font-size: 0.83rem;
  font-weight: 600;
}

.signal-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #0f62fe;
  box-shadow: 0 0 0 6px rgba(15, 98, 254, 0.13);
}

.hero-visual {
  position: relative;
}

.panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-lg);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.panel:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 98, 254, 0.3);
  box-shadow: 0 26px 80px rgba(15, 23, 42, 0.16);
}

.product-panel {
  padding: 22px;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.panel-label {
  margin: 0;
  color: #4a5a79;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.panel-head h2 {
  margin: 4px 0 0;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f62fe;
  background: var(--accent-soft);
  border: 1px solid rgba(15, 98, 254, 0.24);
}

.product-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.subpanel {
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(250, 252, 255, 0.82);
  border-radius: var(--radius-md);
  padding: 14px;
}

.subpanel-title {
  margin: 0;
  font-size: 0.82rem;
  color: #5a6988;
  font-weight: 700;
}

.map-panel {
  grid-row: span 2;
}

.map-canvas {
  position: relative;
  margin-top: 10px;
  min-height: 186px;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background-color: #f1f6ff;
  background-image: linear-gradient(rgba(15, 98, 254, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 98, 254, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  overflow: hidden;
}

.map-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 36% 25%, rgba(15, 98, 254, 0.2), transparent 45%),
    radial-gradient(circle at 70% 72%, rgba(15, 98, 254, 0.12), transparent 42%);
}

.marker {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #0f62fe;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 8px rgba(15, 98, 254, 0.17);
}

.marker-a {
  top: 26%;
  left: 27%;
}

.marker-b {
  top: 59%;
  left: 63%;
}

.marker-c {
  top: 42%;
  left: 77%;
}

.map-meta {
  margin-top: 11px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.76rem;
  color: #4f5d79;
}

.map-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.75);
}

.score-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.score-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #fff;
  padding: 8px 10px;
  color: #2d3c59;
  font-size: 0.82rem;
  font-weight: 600;
}

.score-list strong {
  color: #0f62fe;
  font-size: 0.84rem;
}

.bars {
  margin-top: 12px;
  min-height: 82px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.bars span {
  flex: 1;
  height: var(--h);
  border-radius: 999px;
  background: linear-gradient(180deg, #75a5ff 0%, #0f62fe 100%);
}

.bars-labels {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  color: #667694;
  font-size: 0.7rem;
  font-weight: 600;
}

.chart-note {
  margin: 8px 0 0;
  color: #5f6c84;
  font-size: 0.8rem;
}

.section {
  padding: 94px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(244, 247, 253, 0.9), rgba(249, 251, 255, 0.92));
  border-top: 1px solid rgba(17, 24, 39, 0.05);
  border-bottom: 1px solid rgba(17, 24, 39, 0.05);
}

.section-intro {
  max-width: 68ch;
}

.section-intro h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.section-support {
  margin: 12px 0 0;
  color: #4a5a79;
  font-size: 1rem;
  max-width: 58ch;
}

.process-layout {
  margin-top: 38px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  align-items: start;
}

.process-timeline {
  position: relative;
  display: grid;
  gap: 12px;
  padding-left: 24px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, rgba(15, 98, 254, 0.36), rgba(15, 98, 254, 0.12));
}

.process-step {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.process-step::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 28px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0f62fe;
  box-shadow: 0 0 0 6px rgba(15, 98, 254, 0.13);
}

.process-step:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 98, 254, 0.28);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.11);
}

.process-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  min-width: 30px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid rgba(15, 98, 254, 0.24);
  background: rgba(15, 98, 254, 0.11);
  color: #0f4ec7;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.process-step h3 {
  margin: 12px 0 8px;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.process-step p {
  margin: 0;
  color: var(--text-soft);
}

.process-tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.process-tags span {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: rgba(255, 255, 255, 0.82);
  color: #41506b;
  font-size: 0.78rem;
  font-weight: 600;
}

.process-compare {
  padding: 22px;
}

.process-compare h3 {
  margin: 6px 0 0;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.compare-badges {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.compare-badges span {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 98, 254, 0.24);
  background: rgba(15, 98, 254, 0.1);
  color: #0f4ec7;
  font-size: 0.78rem;
  font-weight: 700;
}

.compare-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.compare-list li {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.75);
}

.compare-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.compare-head span {
  color: #2d3c59;
  font-size: 0.86rem;
  font-weight: 600;
}

.compare-head strong {
  color: #0f62fe;
  font-size: 0.88rem;
}

.compare-bar {
  margin-top: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 98, 254, 0.13);
  overflow: hidden;
}

.compare-bar span {
  display: block;
  height: 100%;
  width: var(--w);
  border-radius: inherit;
  background: linear-gradient(90deg, #79a8ff, #0f62fe);
}

.compare-note {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.data-layout {
  display: grid;
  grid-template-columns: 1fr 1.06fr;
  gap: 34px;
  align-items: start;
}

.data-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.data-copy p {
  margin: 18px 0 0;
  color: var(--text-soft);
  max-width: 58ch;
}

.insight-list {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.insight-item {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  padding: 13px 14px;
}

.insight-item span {
  display: block;
  color: #4a5a79;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.insight-item strong {
  display: block;
  margin-top: 4px;
  font-size: 0.93rem;
  letter-spacing: -0.01em;
}

.data-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.data-panel {
  padding: 18px;
}

.data-panel h3 {
  margin: 4px 0 0;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.data-kpis {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.kpi-item {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 10px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.78);
}

.kpi-item span {
  display: block;
  color: #5a6988;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.kpi-item strong {
  display: block;
  margin-top: 4px;
  color: #25344f;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.mini-chart {
  margin-top: 16px;
  min-height: 96px;
  display: flex;
  align-items: flex-end;
  gap: 7px;
}

.mini-chart span {
  flex: 1;
  height: var(--h);
  border-radius: 999px;
  background: linear-gradient(180deg, #6fa0ff 0%, #105ef2 100%);
}

.geo-signal-list {
  margin-top: 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.geo-signal-list li {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 10px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.76);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.geo-signal-list span {
  color: #32405d;
  font-size: 0.84rem;
  font-weight: 600;
}

.geo-signal-list strong {
  color: #0f62fe;
  font-size: 0.85rem;
}

.panel-note {
  margin: 12px 0 0;
  color: #5f6c84;
  font-size: 0.84rem;
}

.data-panel-wide {
  grid-column: 1 / -1;
}

.weight-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.weight-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.7);
  padding: 9px 12px;
  color: #31405d;
  font-weight: 600;
}

.weight-list strong {
  color: #0f62fe;
}

.trust-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.trust-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  padding: 26px;
  min-height: 176px;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, border-color 220ms ease;
}

.trust-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 98, 254, 0.26);
}

.trust-card h3 {
  margin: 0;
  font-size: 1.14rem;
  letter-spacing: -0.02em;
}

.trust-card p {
  margin: 12px 0 0;
  color: var(--text-soft);
}

.form-experience {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 18px;
  align-items: start;
}

.form-shell {
  padding: clamp(24px, 4vw, 42px);
}

.form-header h2 {
  margin: 0;
  font-size: clamp(1.95rem, 4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: 18ch;
}

.form-intro {
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 1rem;
}

.form-badges {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.form-badges span {
  display: inline-flex;
  align-items: center;
  height: 29px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 98, 254, 0.24);
  background: rgba(15, 98, 254, 0.1);
  color: #0f4ec7;
  font-size: 0.78rem;
  font-weight: 700;
}

.form-progress {
  margin-top: 24px;
}

.form-progress-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 98, 254, 0.14);
  overflow: hidden;
}

.form-progress-track span {
  display: block;
  width: 33.33%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #78a7ff, #0f62fe);
  transition: width 260ms ease;
}

.form-progress-text {
  margin: 8px 0 0;
  color: #495b7d;
  font-size: 0.84rem;
  font-weight: 700;
}

.match-form {
  margin-top: 18px;
}

.form-step {
  display: none;
}

.form-step.is-active {
  display: block;
  animation: fade-in-step 260ms ease;
}

@keyframes fade-in-step {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-step h3 {
  margin: 0 0 12px;
  font-size: 1.14rem;
  letter-spacing: -0.02em;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-grid-single {
  grid-template-columns: 1fr;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-field > span {
  color: #334362;
  font-size: 0.84rem;
  font-weight: 700;
}

.form-field :is(input, select, textarea) {
  width: 100%;
  border: 1px solid rgba(17, 24, 39, 0.15);
  border-radius: 12px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  line-height: 1.3;
  padding: 12px 13px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.form-field select {
  min-height: 47px;
}

.form-field textarea {
  min-height: 108px;
  resize: vertical;
}

.form-field :is(input, select, textarea):focus {
  outline: none;
  border-color: rgba(15, 98, 254, 0.56);
  box-shadow: 0 0 0 4px rgba(15, 98, 254, 0.13);
}

.form-field :is(input, select, textarea).is-invalid {
  border-color: #d64f5a;
  background: #fff7f8;
}

.choice-field {
  display: grid;
  gap: 8px;
}

.choice-label {
  color: #334362;
  font-size: 0.84rem;
  font-weight: 700;
}

.choice-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice-option {
  display: block;
}

.choice-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-option span {
  min-height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid rgba(17, 24, 39, 0.15);
  background: #fff;
  color: #334362;
  font-size: 0.85rem;
  font-weight: 700;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.choice-option input:checked + span {
  border-color: rgba(15, 98, 254, 0.5);
  background: rgba(15, 98, 254, 0.1);
  color: #0f4ec7;
}

.choice-option input.is-invalid + span {
  border-color: #d64f5a;
  background: #fff7f8;
  color: #8f3040;
}

.check-field {
  margin-top: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  padding: 12px;
}

.check-field input {
  margin-top: 3px;
  accent-color: #0f62fe;
}

.check-field span {
  color: #334362;
  font-size: 0.9rem;
}

.check-field a {
  color: #0f62fe;
  font-weight: 700;
}

.form-nav {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.form-nav .btn {
  min-width: 172px;
}

.form-footnote {
  margin: 12px 0 0;
  color: #5a6988;
  font-size: 0.85rem;
}

.form-success {
  margin-top: 18px;
  border: 1px solid rgba(28, 132, 74, 0.22);
  border-radius: 16px;
  background: rgba(239, 254, 245, 0.82);
  padding: 18px;
}

.form-success h3 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.form-success p {
  margin: 10px 0 0;
  color: #3f556f;
}

.form-side {
  padding: 24px;
}

.form-side h3 {
  margin: 6px 0 0;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}

.side-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.side-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  align-items: start;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.75);
}

.side-list strong {
  color: #0f62fe;
}

.side-list span {
  color: #394963;
}

.smart-preview {
  margin-top: 18px;
  border: 1px solid rgba(15, 98, 254, 0.2);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(244, 248, 255, 0.95), rgba(237, 243, 255, 0.9));
  padding: 14px;
}

.smart-label {
  margin: 0;
  color: #4a5a79;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.smart-score {
  margin-top: 8px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.smart-score strong {
  color: #0f4ec7;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.smart-score span {
  color: #4a5a79;
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.smart-meter {
  margin-top: 10px;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(15, 98, 254, 0.15);
}

.smart-meter span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #76a5ff, #0f62fe);
  transition: width 280ms ease;
}

.smart-note,
.smart-estimate {
  margin: 10px 0 0;
  color: #3f5473;
  font-size: 0.87rem;
}

.site-footer {
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.footer-inner p a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.enhanced .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 560ms ease, transform 560ms ease;
}

body.enhanced .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .container {
    width: min(var(--container), calc(100% - 44px));
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-copy h1 {
    max-width: 14ch;
  }

  .data-layout {
    grid-template-columns: 1fr;
  }

  .process-layout {
    grid-template-columns: 1fr;
  }

  .form-experience {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .desktop-nav,
  .nav-actions .btn {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .section,
  .hero {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .process-timeline {
    padding-left: 0;
  }

  .process-timeline::before,
  .process-step::before {
    display: none;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: calc(100% - 30px);
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 11vw, 2.9rem);
  }

  .hero-sub {
    font-size: 1rem;
  }

  .btn-lg {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-flow li {
    font-size: 0.87rem;
  }

  .form-grid,
  .choice-group {
    grid-template-columns: 1fr;
  }

  .form-nav {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .form-nav .btn {
    width: 100%;
    min-width: 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .map-panel {
    grid-row: auto;
  }

  .map-canvas {
    min-height: 148px;
  }

  .data-panels {
    grid-template-columns: 1fr;
  }

  .data-panel-wide {
    grid-column: auto;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
