@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-var-latin.woff2") format("woff2");
}

: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;
  --display: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::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-valuation {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(5, 24, 64, 0.28);
  background: linear-gradient(135deg, #1f72ff, #0d4fd6);
}

.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:not(.btn) {
  display: block;
  padding: 10px 8px;
  border-radius: 10px;
  color: var(--text-soft);
  font-weight: 600;
}

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

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

.mobile-nav .btn-valuation {
  color: #ffffff;
}

.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%);
}

.market-snapshot {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.market-stat {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 10px;
  padding: 7px 8px;
  background: rgba(255, 255, 255, 0.8);
}

.market-stat span {
  display: block;
  color: #5b6b89;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.market-stat strong {
  display: block;
  margin-top: 3px;
  color: #25344f;
  font-size: 0.8rem;
  letter-spacing: -0.01em;
}

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

.market-trend-row {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.market-trend-row span {
  display: inline-flex;
  align-items: center;
  height: 23px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(15, 98, 254, 0.2);
  background: rgba(15, 98, 254, 0.08);
  color: #33528f;
  font-size: 0.68rem;
  font-weight: 700;
}

.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-submit-error {
  margin: 12px 0 0;
  color: #a62635;
  font-size: 0.88rem;
  font-weight: 700;
}

.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-success-broker {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(28, 132, 74, 0.08);
  border: 1px solid rgba(28, 132, 74, 0.18);
}

.form-success-broker-eyebrow {
  margin: 0 0 4px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1c844a;
  font-weight: 600;
}

.form-success-broker-name {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f1f33;
}

.form-success-broker-blurb {
  margin: 0;
  color: #3f556f;
  font-size: 0.95rem;
}

.form-success-broker-next {
  margin: 10px 0 0;
  color: #0f1f33;
  font-size: 0.95rem;
  font-weight: 500;
}

.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;
}

.footer-login-btn {
  height: 36px;
  padding-inline: 14px;
  font-size: 0.82rem;
}

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);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.hero-stage {
  position: absolute;
  inset: 0 0 auto 0;
  height: clamp(820px, 96vh, 1180px);
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero-stage-mesh {
  position: absolute;
  inset: -10% -10% -10% -10%;
  background:
    radial-gradient(48rem 38rem at 12% 10%, rgba(98, 156, 255, 0.34) 0%, rgba(98, 156, 255, 0) 60%),
    radial-gradient(40rem 32rem at 88% 14%, rgba(15, 98, 254, 0.24) 0%, rgba(15, 98, 254, 0) 65%),
    radial-gradient(46rem 36rem at 70% 92%, rgba(140, 196, 255, 0.22) 0%, rgba(140, 196, 255, 0) 60%),
    radial-gradient(30rem 26rem at 18% 78%, rgba(28, 132, 74, 0.1) 0%, rgba(28, 132, 74, 0) 70%);
  animation: heroMeshDrift 38s ease-in-out infinite alternate;
  filter: saturate(1.05);
}

@keyframes heroMeshDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(2%, 1%, 0) scale(1.04);
  }
  100% {
    transform: translate3d(-1.5%, -1%, 0) scale(1.02);
  }
}

.hero-stage-orbs {
  position: absolute;
  inset: 0;
  transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-stage-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.78;
  will-change: transform;
}

.hero-stage-orb-1 {
  width: 26rem;
  height: 26rem;
  top: -6rem;
  left: -4rem;
  background: radial-gradient(circle, rgba(27, 104, 255, 0.55) 0%, rgba(27, 104, 255, 0) 70%);
  animation: heroOrbFloatA 22s ease-in-out infinite alternate;
}

.hero-stage-orb-2 {
  width: 22rem;
  height: 22rem;
  top: 6rem;
  right: -3rem;
  background: radial-gradient(circle, rgba(118, 178, 255, 0.5) 0%, rgba(118, 178, 255, 0) 72%);
  animation: heroOrbFloatB 28s ease-in-out infinite alternate;
}

.hero-stage-orb-3 {
  width: 28rem;
  height: 28rem;
  bottom: -8rem;
  left: 38%;
  background: radial-gradient(circle, rgba(58, 234, 198, 0.32) 0%, rgba(58, 234, 198, 0) 70%);
  animation: heroOrbFloatC 32s ease-in-out infinite alternate;
}

@keyframes heroOrbFloatA {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(3rem, 2rem, 0); }
}
@keyframes heroOrbFloatB {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-2rem, 3rem, 0); }
}
@keyframes heroOrbFloatC {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-3rem, -2rem, 0); }
}

.hero-stage-grid {
  position: absolute;
  inset: 0;
  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: 36px 36px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  opacity: 0.55;
}

@media (prefers-reduced-motion: reduce) {
  .hero-stage-mesh,
  .hero-stage-orb {
    animation: none;
  }
}

.hero-city {
  padding-top: 56px;
  padding-bottom: 64px;
  scroll-margin-top: 90px;
  position: relative;
}

.hero-city .hero-grid-form {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 40px;
  align-items: start;
}

.hero-form-col {
  min-width: 0;
}

.hero-form-col .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 98, 254, 0.1);
  border: 1px solid rgba(15, 98, 254, 0.22);
  padding: 5px 12px;
  border-radius: 999px;
  color: #0f4ec7;
}

.eyebrow-pulse {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #1c844a;
  box-shadow: 0 0 0 3px rgba(28, 132, 74, 0.18);
  animation: livePulse 1800ms ease-in-out infinite;
}

.hero-city .hero-copy h1,
.hero-form-col h1 {
  font-size: clamp(1.95rem, 4.2vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  max-width: 18ch;
  margin-top: 14px;
}

.hero-h1-accent {
  background: linear-gradient(135deg, #1b68ff 0%, #59e3c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
  position: relative;
}

.hero-h1-soft {
  display: inline;
  color: #4a5a79;
  font-weight: 600;
}

.hero-form-col .hero-sub {
  margin-top: 14px;
  max-width: 46ch;
  font-size: 1.02rem;
}

.hero-trust-bar {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  color: #41506b;
  font-size: 0.84rem;
  font-weight: 600;
}

.hero-trust-bar li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1b68ff, #0a47c2);
  box-shadow: 0 0 0 3px rgba(15, 98, 254, 0.12);
  flex: 0 0 auto;
}

/* ---------- EDITORIAL / BRIEFING ---------- */

.hero-masthead {
  margin: 0 auto 36px;
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.hero-masthead-line {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 460px;
}

.hero-masthead-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 24, 39, 0.28), transparent);
}

.hero-masthead-label {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 700;
  color: #1f2a44;
  white-space: nowrap;
}

.hero-masthead-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #5a6988;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-masthead-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #a3acc1;
}

.hero-masthead-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #1c844a;
}

.hero-masthead-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #1c844a;
  box-shadow: 0 0 0 3px rgba(28, 132, 74, 0.16);
  animation: livePulse 1800ms ease-in-out infinite;
}

.hero-editorial-h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.4rem, 7.4vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: #0b1426;
}

.hero-editorial-line {
  display: block;
}

.hero-editorial-italic {
  font-weight: 800;
  background: linear-gradient(135deg, #1b68ff 0%, #59e3c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-editorial-deck {
  margin: 26px 0 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.5;
  color: #2a3753;
  max-width: 36ch;
  letter-spacing: -0.01em;
}

.hero-editorial-deck em {
  font-style: normal;
  font-weight: 600;
  color: #0f4ec7;
  background: linear-gradient(135deg, rgba(15, 98, 254, 0.16), rgba(89, 227, 200, 0.16));
  padding: 0 6px;
  border-radius: 4px;
}

.hero-editorial-meta {
  margin: 26px 0 0;
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 24, 39, 0.12);
}

.hero-editorial-meta-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: #5a6988;
}

.hero-editorial-meta-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
  color: #1f2a44;
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-editorial-meta-list li {
  position: relative;
  padding-left: 22px;
}

.hero-editorial-meta-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 1px;
  background: #1f2a44;
}

.hero-form-shell-editorial .hero-form-shell-head {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
}

.hero-form-shell-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: #5a6988;
  margin-bottom: 8px;
}

.hero-form-shell-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #0b1426;
}

.hero-form-shell-sub {
  margin: 8px 0 0;
  color: #5a6988;
  font-size: 0.92rem;
}

.section-briefing-toc {
  padding-top: 36px;
  padding-bottom: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(244, 247, 253, 0.86));
  border-top: 1px solid rgba(17, 24, 39, 0.06);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.briefing-toc {
  max-width: 880px;
  margin-inline: auto;
  display: grid;
  gap: 24px;
}

.briefing-toc-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.briefing-toc-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 24, 39, 0.22), transparent);
}

.briefing-toc-label {
  font-family: var(--display);
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: #1f2a44;
  white-space: nowrap;
}

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

.briefing-toc-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.briefing-toc-list li:last-child {
  border-bottom: 0;
}

.briefing-toc-num {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f4ec7;
  letter-spacing: -0.03em;
  font-feature-settings: "lnum", "tnum";
  font-variant-numeric: tabular-nums;
}

.briefing-toc-text {
  color: #2a3753;
  font-size: 1rem;
  line-height: 1.55;
}

.briefing-toc-text strong {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.14rem;
  color: #0b1426;
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.section-intro-editorial {
  text-align: left;
}

.section-chapter {
  margin: 0 0 14px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.74rem;
  color: #5a6988;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-editorial-h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #0b1426;
  max-width: 18ch;
}

.section-editorial-h2 em {
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(135deg, #1b68ff 0%, #59e3c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-selection {
  background: linear-gradient(180deg, rgba(248, 250, 255, 0.94), rgba(244, 247, 253, 0.96));
}

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

.selection-card {
  position: relative;
  padding: 26px 24px 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 10px;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 240ms ease, box-shadow 240ms ease;
}

.selection-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 98, 254, 0.32);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.1);
}

.selection-num {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f4ec7;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.selection-card h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.24rem;
  letter-spacing: -0.025em;
  color: #0b1426;
}

.selection-card p {
  margin: 0;
  color: #2a3753;
  font-size: 0.95rem;
  line-height: 1.6;
}

.briefing-pull-quote {
  margin: 50px auto 0;
  max-width: 680px;
  text-align: center;
  display: grid;
  gap: 14px;
  padding: 32px 24px;
  position: relative;
}

.briefing-pull-quote::before,
.briefing-pull-quote::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 24, 39, 0.18), transparent);
}

.briefing-pull-quote p {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  line-height: 1.32;
  letter-spacing: -0.025em;
  color: #0b1426;
}

.briefing-pull-quote cite {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5a6988;
  font-weight: 600;
}

.section-closing {
  padding: 64px 0;
  background: linear-gradient(180deg, rgba(244, 247, 253, 0.4), rgba(232, 240, 255, 0.7));
}

.closing-card {
  max-width: 820px;
  margin-inline: auto;
  padding: 52px 36px 44px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 98, 254, 0.16);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 36px 80px rgba(15, 23, 42, 0.1);
  display: grid;
  gap: 14px;
  justify-items: center;
}

.closing-card-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: #1f2a44;
}

.closing-card-rule {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 24, 39, 0.32), transparent);
}

.closing-card-title {
  margin: 8px 0 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 22ch;
  color: #0b1426;
}

.closing-card-title em {
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(135deg, #1b68ff 0%, #59e3c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.closing-card-deck {
  margin: 0;
  color: #2a3753;
  font-size: 1.04rem;
  max-width: 44ch;
}

.closing-card-actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.closing-card-meta {
  font-size: 0.84rem;
  color: #5a6988;
  font-weight: 500;
}

.hero-form-shell {
  margin-top: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.65);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.93));
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 40px 100px -28px rgba(11, 35, 90, 0.32),
    0 18px 38px -14px rgba(11, 35, 90, 0.16),
    0 0 0 1px rgba(15, 98, 254, 0.06);
  padding: clamp(22px, 3vw, 34px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-form-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #1b68ff 0%, #59e3c8 50%, #0a47c2 100%);
  opacity: 0.9;
  z-index: 1;
}

.hero-form-shell::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 0;
  pointer-events: none;
}

.hero-form-shell-glow {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(89, 227, 200, 0.22) 0%, rgba(89, 227, 200, 0) 65%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
  animation: heroShellGlow 8s ease-in-out infinite alternate;
}

@keyframes heroShellGlow {
  0% { opacity: 0.7; transform: translate3d(0, 0, 0); }
  100% { opacity: 1; transform: translate3d(-1rem, 0.8rem, 0); }
}

.hero-form-shell > * {
  position: relative;
  z-index: 1;
}

.form-progress-v2 {
  margin-top: 4px;
}

.form-progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.form-progress-step {
  color: #485a7c;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.form-progress-step strong {
  color: #0f4ec7;
  font-weight: 800;
  font-size: 1.02rem;
}

.form-progress-time {
  color: #6a7691;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.form-progress-time::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #1c844a;
  box-shadow: 0 0 0 3px rgba(28, 132, 74, 0.18);
  animation: livePulse 1800ms ease-in-out infinite;
}

.form-step-sub {
  margin: -8px 0 18px;
  color: #5f6c84;
  font-size: 0.92rem;
}

.match-form-hero {
  margin-top: 22px;
}

.form-step-title {
  margin: 0 0 16px;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.match-form-hero .form-field :is(input, select, textarea) {
  background: #ffffff;
  border-color: rgba(17, 24, 39, 0.14);
  padding: 13px 14px;
  font-size: 0.98rem;
}

.match-form-hero .form-field :is(input, select, textarea):hover {
  border-color: rgba(15, 98, 254, 0.36);
}

.match-form-hero .form-field input[autofocus],
.match-form-hero .form-field input[name="street_address"] {
  border-color: rgba(15, 98, 254, 0.34);
  box-shadow: 0 0 0 4px rgba(15, 98, 254, 0.08);
}

.match-form-hero .form-field input[autofocus]:focus,
.match-form-hero .form-field input[name="street_address"]:focus {
  border-color: rgba(15, 98, 254, 0.6);
  box-shadow: 0 0 0 4px rgba(15, 98, 254, 0.16);
}

.form-nav-hero {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.form-nav-hero #formPrev {
  margin-right: auto;
}

.form-nav-hero .btn {
  min-width: 0;
  padding: 0 26px;
}

.form-nav-hero .btn-primary {
  min-width: 200px;
}

.quick-start-arrow {
  display: inline-block;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-magnetic {
  position: relative;
  overflow: hidden;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease;
}

.btn-magnetic::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 80% at 50% 0%, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 60%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.btn-magnetic:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 36px rgba(10, 71, 194, 0.4), 0 0 0 5px rgba(15, 98, 254, 0.1);
}

.btn-magnetic:hover::after {
  opacity: 1;
}

.btn-magnetic:hover .quick-start-arrow {
  transform: translateX(4px);
}

.btn-magnetic:active {
  transform: translateY(0) scale(0.99);
}

.btn-magnetic-text {
  position: relative;
  z-index: 1;
}

.form-trust-row {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: #41506b;
  font-size: 0.84rem;
  font-weight: 600;
}

.form-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(28, 132, 74, 0.14);
  color: #1c844a;
  font-size: 0.72rem;
  font-weight: 800;
  flex: 0 0 auto;
}

.hero-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1b68ff, #0a47c2);
  box-shadow: 0 0 0 3px rgba(15, 98, 254, 0.14);
  flex: 0 0 auto;
}

.hero-side-col {
  min-width: 0;
  position: sticky;
  top: 100px;
}

.hero-live-panel {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 255, 0.9));
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 36px 90px -28px rgba(11, 35, 90, 0.28),
    0 14px 30px -14px rgba(11, 35, 90, 0.14),
    0 0 0 1px rgba(15, 98, 254, 0.06);
  padding: 22px;
  display: grid;
  gap: 18px;
  overflow: hidden;
  isolation: isolate;
}

.hero-live-panel::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(27, 104, 255, 0.18) 0%, rgba(27, 104, 255, 0) 60%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.hero-live-panel > * {
  position: relative;
  z-index: 1;
}

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

.hero-side-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 24, 39, 0.1), transparent);
  margin: 0;
}

.live-block {
  display: grid;
  gap: 10px;
}

.live-progress {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.live-progress-ring {
  position: relative;
  width: 132px;
  height: 132px;
}

.live-progress-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.live-progress-track {
  fill: none;
  stroke: rgba(15, 98, 254, 0.12);
  stroke-width: 7;
}

.live-progress-fill {
  fill: none;
  stroke: url(#liveGradient);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 276.46;
  stroke-dashoffset: 276.46;
  transition: stroke-dashoffset 520ms cubic-bezier(0.22, 1, 0.36, 1);
  filter: drop-shadow(0 4px 12px rgba(15, 98, 254, 0.32));
}

.live-progress-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.live-progress-label strong {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f1f33;
  line-height: 1;
}

.live-progress-label span {
  margin-top: 2px;
  color: #6a7691;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-live-panel .smart-note {
  margin: 0;
  color: #3f5473;
  font-size: 0.88rem;
  font-weight: 600;
  max-width: 28ch;
}

.hero-live-panel .smart-estimate {
  margin: 0;
  color: #6a7691;
  font-size: 0.8rem;
}

.live-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}

.live-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  color: #5a6988;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background-color 280ms ease, color 280ms ease, transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.live-checklist li.is-filled {
  color: #0f1f33;
  background: linear-gradient(90deg, rgba(28, 132, 74, 0.08), rgba(28, 132, 74, 0));
  transform: translateX(2px);
}

.live-check-icon {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 2px solid rgba(15, 98, 254, 0.22);
  background: rgba(255, 255, 255, 0.9);
  flex: 0 0 auto;
  transition: border-color 280ms ease, background-color 280ms ease, transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.live-check-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -65%) rotate(-45deg) scale(0);
  transform-origin: center;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.live-checklist li.is-filled .live-check-icon {
  border-color: #1c844a;
  background: linear-gradient(135deg, #2db66a, #1c844a);
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(28, 132, 74, 0.28);
}

.live-checklist li.is-filled .live-check-icon::after {
  transform: translate(-50%, -65%) rotate(-45deg) scale(1);
}

.match-dimensions {
  display: grid;
  gap: 12px;
}

.match-dim {
  display: grid;
  gap: 6px;
}

.match-dim-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  color: #485a7c;
  font-size: 0.84rem;
  font-weight: 600;
}

.match-dim-head strong {
  color: #0f4ec7;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  transition: color 280ms ease;
}

.match-dim.is-complete .match-dim-head strong {
  color: #1c844a;
}

.match-dim-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 98, 254, 0.1);
  overflow: hidden;
  position: relative;
}

.match-dim-bar span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #78a7ff, #0f62fe);
  transition: width 520ms cubic-bezier(0.22, 1, 0.36, 1), background 280ms ease;
  position: relative;
}

.match-dim-bar span::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent 50%, rgba(255, 255, 255, 0.42));
  opacity: 0;
  transition: opacity 280ms ease;
}

.match-dim.is-active .match-dim-bar span::after {
  opacity: 1;
}

.match-dim.is-complete .match-dim-bar span {
  background: linear-gradient(90deg, #2db66a, #1c844a);
}

.chip-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(28, 132, 74, 0.1);
  color: #1c844a;
  border-color: rgba(28, 132, 74, 0.24);
}

.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #1c844a;
  box-shadow: 0 0 0 3px rgba(28, 132, 74, 0.18);
  animation: livePulse 1800ms ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(1.18);
  }
}

.hero-neighborhoods {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.neighborhood-chip {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(15, 98, 254, 0.22);
  background: rgba(15, 98, 254, 0.08);
  color: #0f4ec7;
  font-size: 0.78rem;
  font-weight: 700;
  transition: transform 200ms ease, background-color 200ms ease;
}

.neighborhood-chip:hover {
  transform: translateY(-1px);
  background: rgba(15, 98, 254, 0.14);
}

.insight-cards {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.insight-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, border-color 220ms ease;
}

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

.insight-card .panel-label {
  color: #0f4ec7;
}

.insight-card p:not(.panel-label) {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.faq-panel {
  padding: 8px 22px;
}

.faq-panel details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.faq-panel details:last-child {
  border-bottom: 0;
}

.faq-panel summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text);
  font-size: 1rem;
}

.faq-panel summary::-webkit-details-marker {
  display: none;
}

.faq-panel summary::after {
  content: "+";
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  transition: transform 200ms ease;
}

.faq-panel details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-panel details p {
  margin: 10px 0 0;
  color: var(--text-soft);
}

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

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

  .hero-city .hero-grid-form {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-side-col {
    position: static;
    top: auto;
  }

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

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

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

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

  .insight-cards {
    grid-template-columns: 1fr 1fr;
  }
}

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

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

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

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

  .hero-city {
    padding-top: 40px;
    padding-bottom: 56px;
  }

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

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

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

  .insight-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .selection-grid {
    grid-template-columns: 1fr;
  }

  .closing-card {
    padding: 40px 24px 32px;
  }
}

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

  .hero-masthead {
    margin-bottom: 28px;
  }

  .hero-masthead-line {
    gap: 12px;
  }

  .hero-masthead-label {
    font-size: 0.78rem;
    letter-spacing: 0.24em;
  }

  .hero-masthead-meta {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
    font-size: 0.68rem;
  }

  .briefing-toc-list li {
    grid-template-columns: 44px 1fr;
    gap: 10px;
    padding: 12px 0;
  }

  .briefing-toc-num {
    font-size: 1.2rem;
  }

  .briefing-toc-text strong {
    font-size: 1.05rem;
  }

  .closing-card-eyebrow {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.74rem;
  }

  .closing-card-rule {
    width: 28px;
  }

  .section-closing {
    padding: 48px 0;
  }

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

  .hero-form-col h1 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
    max-width: none;
  }

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

  .hero-form-shell {
    padding: 18px;
    margin-top: 22px;
  }

  .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,
  .form-nav-hero {
    flex-direction: column-reverse;
    align-items: stretch;
  }

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

  .form-nav-hero #formPrev {
    margin-right: 0;
  }

  .form-trust-row {
    font-size: 0.8rem;
    gap: 8px 14px;
  }

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

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

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

  .market-snapshot {
    grid-template-columns: 1fr;
  }

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

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

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

/* --- SEO additions: breadcrumbs, briefing prose, city links --- */

.breadcrumbs {
  padding-top: 18px;
  font-size: 0.82rem;
}

.breadcrumbs-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: #5f6c84;
}

.breadcrumbs-list li + li::before {
  content: "/";
  margin-right: 6px;
  color: rgba(17, 24, 39, 0.3);
}

.breadcrumbs-list a {
  color: #4a5a79;
  text-decoration: none;
}

.breadcrumbs-list a:hover {
  color: #0f4ec7;
  text-decoration: underline;
}

.briefing-prose {
  margin: 34px 0 38px;
  max-width: 72ch;
}

.briefing-prose p {
  margin: 0 0 18px;
  color: #33415e;
  font-size: 1.04rem;
  line-height: 1.75;
}

.briefing-prose p:last-child {
  margin-bottom: 0;
}

.city-links {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-links a {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: rgba(255, 255, 255, 0.86);
  color: #41506b;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.city-links a:hover {
  border-color: rgba(15, 98, 254, 0.32);
  color: #0f4ec7;
  transform: translateY(-1px);
}

.city-links .city-links-all {
  border-color: rgba(15, 98, 254, 0.28);
  background: rgba(15, 98, 254, 0.1);
  color: #0f4ec7;
  font-weight: 700;
}

.city-links-compact {
  margin-top: 14px;
}

.city-links-compact a {
  height: 30px;
  padding: 0 12px;
  font-size: 0.78rem;
}

.all-cities-label {
  margin-top: 34px;
}

.guide-links {
  margin-top: 22px;
  color: #4a5a79;
  font-size: 0.92rem;
}

.guide-links a {
  color: #0f4ec7;
  font-weight: 600;
}

/* --- Methodology panel on city pages --- */

.method-panel {
  margin-top: 38px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
  padding: 28px;
}

.method-panel h3 {
  margin: 0 0 16px;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.method-steps {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
}

.method-steps li {
  color: #33415e;
  line-height: 1.65;
}

/* --- Guide pages (mäklararvode, välja mäklare) --- */

.guide-hero {
  max-width: 76ch;
}

.guide-body {
  max-width: 800px;
}

.guide-body h2 {
  margin: 44px 0 14px;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  letter-spacing: -0.02em;
}

.guide-body > p {
  color: #33415e;
  line-height: 1.75;
  margin: 0 0 16px;
}

.guide-list {
  margin: 0 0 16px;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.guide-list li {
  color: #33415e;
  line-height: 1.7;
}

.fee-table-wrap {
  margin: 18px 0 22px;
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.fee-table th,
.fee-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(17, 24, 39, 0.07);
}

.fee-table thead th {
  background: rgba(15, 98, 254, 0.07);
  color: #0f3d94;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.fee-table tbody th {
  font-weight: 600;
  color: #1c2a44;
}

.fee-table tbody tr:last-child th,
.fee-table tbody tr:last-child td {
  border-bottom: none;
}

.fee-table a {
  color: #0f4ec7;
  font-weight: 600;
}

.calc-panel {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  padding: 30px;
  max-width: 640px;
}

.calc-panel h2 {
  margin: 0 0 6px;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.calc-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.calc-result {
  margin-top: 20px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 98, 254, 0.24);
  background: rgba(15, 98, 254, 0.08);
  display: grid;
  gap: 2px;
}

.calc-result-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0f3d94;
}

.calc-result strong {
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  color: #0a2b66;
}

.calc-result-note {
  font-size: 0.85rem;
  color: #4a5a79;
}

.calc-footnote {
  margin: 16px 0 0;
  font-size: 0.88rem;
  color: #4a5a79;
  line-height: 1.65;
}

.guide-cta {
  margin-top: 48px;
}

@media (max-width: 640px) {
  .calc-grid {
    grid-template-columns: 1fr;
  }
}
