:root {
  --font-sans: "Segoe UI", "Aptos", "Inter", "Roboto", "Noto Sans", Arial, sans-serif;
  --font-display: "Segoe UI", "Aptos", "Inter", "Roboto", "Noto Sans", Arial, sans-serif;
  --bg: #f3f7fb;
  --surface: #ffffff;
  --surface-soft: #f7fbff;
  --text: #13202e;
  --muted: #455d72;
  --primary: #0f8f9d;
  --primary-strong: #0a6e79;
  --accent: #f49f36;
  --danger: #cf3b55;
  --line: #d6e3ee;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-1: 0 10px 30px rgba(20, 50, 80, 0.08);
  --shadow-2: 0 20px 48px rgba(14, 46, 74, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at 5% 0%, #d8f4f4 0%, transparent 35%),
    radial-gradient(circle at 96% 12%, #fef0da 0%, transparent 30%),
    var(--bg);
}

main {
  min-height: calc(100vh - 170px);
}

.container {
  width: min(1200px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(214, 227, 238, 0.8);
  backdrop-filter: blur(10px);
  background: rgba(246, 250, 255, 0.86);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.3px;
}

.brand-logo {
  width: 34px;
  height: 34px;
  flex: none;
  display: block;
  box-shadow: 0 8px 16px rgba(16, 124, 136, 0.26);
}

.brand-name {
  color: var(--text);
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav .nav-link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.site-nav .nav-link:hover {
  color: var(--text);
}

.nav-icon {
  width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2f7288;
}

.nav-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cta {
  margin-left: 10px;
}

.btn {
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.01);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(145deg, var(--primary), #12a8b7);
  box-shadow: 0 10px 20px rgba(19, 143, 157, 0.24);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: #fff;
}

.btn-full {
  width: 100%;
}

.eyebrow {
  margin: 0 0 10px;
  color: #188996;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 1.1px;
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  margin: 0;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.06;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  line-height: 1.12;
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0;
  line-height: 1.62;
}

.muted {
  color: var(--muted);
}

.card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #fafeff 100%);
  box-shadow: var(--shadow-1);
  padding: 22px;
}

.section {
  margin-top: 26px;
}

.section-head {
  margin-bottom: 16px;
}

.hero,
.calc-hero {
  padding: 38px 0 10px;
}

.page-head {
  padding: 44px 0 16px;
}

.page-head h1 {
  margin-bottom: 10px;
}

.page-head p {
  color: var(--muted);
  max-width: 72ch;
}

.hero-grid,
.calc-hero-grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
  grid-template-columns: 1.15fr 0.85fr;
}

.hero-copy,
.calc-hero-grid > div {
  background: linear-gradient(152deg, #0e2f43 0%, #184d69 100%);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #ecf8ff;
  box-shadow: var(--shadow-2);
}

.hero-copy .eyebrow,
.calc-hero-grid > div .eyebrow {
  color: #81d7df;
}

.hero-copy h1,
.calc-hero-grid > div h1,
.hero-copy p,
.calc-hero-grid > div p {
  color: #ecf8ff;
}

.hero-lead {
  margin-top: 14px;
  max-width: 60ch;
  color: #d7ecf8;
}

.hero-cta {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-pills {
  margin-top: 18px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.trust-pills span {
  background: rgba(148, 220, 228, 0.2);
  border: 1px solid rgba(142, 216, 224, 0.5);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.8rem;
  color: #d6f4f6;
  font-weight: 700;
}

.hero-preview {
  display: grid;
  gap: 12px;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 360px;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-visual {
  overflow: hidden;
  padding: 0;
}

.page-visual img {
  width: 100%;
  height: clamp(220px, 34vw, 420px);
  object-fit: cover;
  display: block;
}

.hero-photo-overlay {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border-radius: 12px;
  background: rgba(12, 36, 54, 0.8);
  border: 1px solid rgba(164, 210, 230, 0.4);
  color: #ebf6ff;
  padding: 10px 12px;
  backdrop-filter: blur(4px);
}

.hero-photo-overlay p {
  font-size: 0.82rem;
  color: #9dd8ea;
}

.hero-photo-overlay strong {
  font-size: 1rem;
  font-family: var(--font-display);
}

.preview-label {
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  font-weight: 800;
}

.preview-kpi {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  background: #fff;
}

.preview-kpi p {
  color: var(--muted);
  font-size: 0.84rem;
}

.preview-kpi strong {
  font-size: 1.06rem;
  font-family: var(--font-display);
}

.preview-tag {
  margin-top: 4px;
  border-radius: 12px;
  background: #dff5f7;
  color: #0d5f69;
  padding: 9px 12px;
  font-size: 0.86rem;
  font-weight: 800;
}

.calc-hero-image {
  display: grid;
  gap: 14px;
  align-content: start;
  overflow: hidden;
}

.calc-hero-image img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 14px;
}

.calc-hero-image p {
  color: var(--muted);
  text-align: center;
}

.hero-result-preview {
  border: 1px solid #c8e0ef;
  border-radius: 14px;
  background: linear-gradient(165deg, #ffffff 0%, #eef9ff 100%);
  padding: 12px;
}

.hero-result-kicker {
  font-size: 0.77rem;
  font-weight: 800;
  color: #2e6f8d;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.hero-result-main {
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 1.42rem;
  line-height: 1.1;
  font-weight: 800;
  color: #0f2d3f;
}

.hero-result-meta {
  margin-top: 8px;
  display: grid;
  gap: 4px;
}

.hero-result-meta span {
  font-size: 0.84rem;
  color: #2e4f65;
  font-weight: 700;
}

.trust-bar {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-bar article {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  box-shadow: var(--shadow-1);
}

.trust-bar strong {
  display: block;
  font-size: 0.9rem;
}

.trust-bar span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
}

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

.benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.how-card,
.benefit-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 16px;
  box-shadow: var(--shadow-1);
}

.how-card p,
.benefit-card p {
  margin-top: 7px;
  color: var(--muted);
}

.step-chip {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dbf5f7;
  color: #0b6e79;
  font-weight: 800;
  margin-bottom: 12px;
}

.calculator-shell {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items: start;
}

.calculator-shell.calculator-shell-pristine {
  grid-template-columns: 1fr;
}

.form-panel {
  display: grid;
  gap: 14px;
}

.subsidy-status {
  border: 1px solid #f1d8b5;
  border-radius: 14px;
  background: #fff8eb;
  padding: 12px 14px;
}

.subsidy-status-wide {
  margin-bottom: 16px;
}

.subsidy-status-label {
  font-size: 0.8rem;
  color: #9e5c10;
  font-weight: 800;
  margin-bottom: 4px;
}

.subsidy-status-title {
  font-weight: 800;
  margin-bottom: 4px;
}

.subsidy-status-text {
  color: #644a2a;
}

.subsidy-status-links {
  margin-top: 7px;
  font-size: 0.87rem;
}

.subsidy-status-links a {
  color: #0d7682;
  text-decoration: none;
}

.subsidy-status-links a:hover {
  text-decoration: underline;
}

.stepper {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background: var(--surface-soft);
}

.stepper-header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stepper-pill {
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--muted);
  background: #fff;
}

.stepper-pill.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(145deg, var(--primary), #14a7b6);
}

.stepper-line {
  margin-top: 9px;
  height: 7px;
  border-radius: 99px;
  background: #e4edf4;
  overflow: hidden;
}

.stepper-line span {
  display: block;
  height: 100%;
  width: 33%;
  border-radius: 99px;
  background: linear-gradient(145deg, var(--primary), #31bec8);
  transition: width 0.25s ease;
}

#calcForm {
  display: grid;
  gap: 14px;
}

.step-block {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: #fff;
}

.step-block h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.field-group {
  border: 0;
  padding: 0;
  margin: 0;
}

.field-group legend,
.field-row label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 700;
}

.required,
.optional {
  margin-left: 6px;
  font-size: 0.75rem;
  font-weight: 800;
}

.required {
  color: #be4a63;
}

.optional {
  color: var(--muted);
}

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

.choice {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  display: grid;
  gap: 8px;
  align-content: start;
  position: relative;
  min-height: 138px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.choice:hover {
  border-color: #9bc8dd;
  transform: translateY(-1px);
}

.choice input {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.choice-indicator {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #b4c6d4;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.choice-size input:checked + .choice-indicator {
  border-color: var(--primary);
  box-shadow: inset 0 0 0 4px var(--primary);
}

.choice-size:has(input:checked) {
  border-color: #48adba;
  background: linear-gradient(180deg, #ffffff 0%, #f2fdff 100%);
  box-shadow: 0 8px 20px rgba(36, 125, 154, 0.12);
}

.choice.is-invalid {
  border-color: var(--danger);
  background: #fff8fa;
}

.choice-media {
  display: grid;
  justify-items: start;
  gap: 4px;
  margin-top: 4px;
}

.choice-media img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.choice-media small {
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.4px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
}

.choice-label {
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 1.58rem;
  line-height: 1.1;
  max-width: 9ch;
}

.field-row {
  margin-bottom: 12px;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  padding: 0.74rem 0.82rem;
  font: inherit;
  font-size: 0.96rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #31a6b2;
  box-shadow: 0 0 0 3px rgba(49, 166, 178, 0.18);
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(207, 59, 85, 0.16);
}

.optional-expand {
  border: 1px dashed #b4c8d8;
  border-radius: 12px;
  padding: 10px 12px;
  background: #f7fbff;
}

.optional-expand summary {
  cursor: pointer;
  font-weight: 700;
  color: #345266;
  list-style: none;
}

.optional-expand summary::-webkit-details-marker {
  display: none;
}

.optional-note {
  margin: 8px 0 10px;
  color: var(--muted);
  font-size: 0.89rem;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox input {
  width: 18px;
  flex: none;
  margin-top: 3px;
}

.checkbox span {
  color: var(--muted);
  font-size: 0.92rem;
}

.field-help {
  margin-top: 5px;
  color: #4f677c;
  font-size: 0.83rem;
}

.field-error-msg {
  margin-top: 6px;
  color: var(--danger);
  font-size: 0.84rem;
  font-weight: 700;
}

.lead-process {
  margin: 10px 0 14px;
  padding-left: 18px;
  color: #3d5568;
  font-size: 0.9rem;
  display: grid;
  gap: 3px;
}

.result-panel {
  position: sticky;
  top: 92px;
  transition: box-shadow 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.result-panel.is-pristine {
  display: none;
}

.result-panel.is-updated {
  border-color: #67b9c8;
  box-shadow:
    0 0 0 3px rgba(32, 156, 170, 0.16),
    0 18px 40px rgba(17, 90, 113, 0.2);
  transform: translateY(-2px);
}

.result-empty h3 {
  margin: 5px 0 8px;
}

.result-empty p {
  color: var(--muted);
}

#resultContent h3 {
  margin: 5px 0 8px;
}

#resultContent > p {
  color: var(--muted);
}

#resultContent {
  display: flex;
  flex-direction: column;
}

.fit-insight {
  margin-top: 10px;
  border: 1px solid #c6deec;
  border-radius: 12px;
  background: linear-gradient(170deg, #f6fcff 0%, #eef8ff 100%);
  padding: 10px 12px;
}

.fit-insight-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.fit-insight-head p {
  margin: 0;
  color: #3f6278;
  font-size: 0.83rem;
  font-weight: 700;
}

.fit-insight-head strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #15384d;
}

.fit-gauge-wrap {
  margin-top: 8px;
  position: relative;
  display: grid;
  place-items: center;
  min-height: 88px;
}

.fit-gauge-svg {
  width: min(100%, 232px);
  height: auto;
  overflow: visible;
}

.fit-gauge-svg path {
  fill: none;
  stroke-linecap: round;
}

#fitGaugeTrack {
  stroke: #d9e7f1;
  stroke-width: 12;
}

#fitGaugeValue {
  stroke: #0f97ad;
  stroke-width: 12;
  stroke-dasharray: 0 1000;
  filter: drop-shadow(0 2px 6px rgba(19, 114, 141, 0.2));
}

.fit-gauge-score {
  position: absolute;
  bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.fit-gauge-score strong {
  font-family: var(--font-display);
  font-size: 1.38rem;
  line-height: 1;
  color: #0f3d56;
}

.fit-gauge-score span {
  font-size: 0.78rem;
  font-weight: 700;
  color: #4a657a;
}

.fit-progress-scale {
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
  color: #597287;
  font-size: 0.73rem;
  font-weight: 700;
}

.fit-progress-scale span {
  padding: 2px 7px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.fit-progress-scale span.is-active {
  color: #0d3f58;
  background: #dff3f8;
  font-weight: 800;
}

.fit-progress-summary {
  margin-top: 8px;
  color: #3c5568;
  font-size: 0.88rem;
}

.payback-badge {
  margin-top: 8px;
  border-radius: 9px;
  padding: 7px 9px;
  font-size: 0.84rem;
  font-weight: 800;
  border: 1px solid #c8dceb;
  background: #fff;
  color: #24485f;
}

.payback-badge.is-good {
  border-color: #9ad5c2;
  background: #ebfaf4;
  color: #1f6a4f;
}

.payback-badge.is-warn {
  border-color: #f1d09a;
  background: #fff7e9;
  color: #8f5f16;
}

.payback-badge.is-bad {
  border-color: #efbcc8;
  background: #fff3f6;
  color: #a0364f;
}

.precision-hint {
  margin-top: 8px;
  border: 1px solid #f0c47f;
  border-radius: 10px;
  padding: 9px 11px;
  background: #fff5e6;
  color: #8e5c17;
  font-size: 0.9rem;
  font-weight: 700;
}

.result-reward {
  margin-top: 14px;
  border: 1px solid #b8d8ea;
  border-radius: 16px;
  background: linear-gradient(170deg, #f8fdff 0%, #edf8ff 100%);
  padding: 13px;
}

.reward-kicker {
  font-size: 0.77rem;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  color: #2f6888;
  font-weight: 800;
}

.reward-main {
  margin-top: 5px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.95rem);
  line-height: 1.05;
  color: #102e41;
  font-weight: 800;
}

.reward-grid {
  margin-top: 11px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.reward-item {
  border: 1px solid #cce0ed;
  border-radius: 12px;
  background: #fff;
  padding: 9px 10px;
}

.reward-label {
  font-size: 0.75rem;
  color: #506a7f;
  font-weight: 700;
}

.reward-value {
  margin-top: 4px;
  font-size: 0.95rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: #162c3b;
}

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

.metrics-support {
  grid-template-columns: 1fr;
}

.metric {
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 12px;
  background: #fff;
}

.metric-icon {
  font-size: 1.05rem;
}

.metric-label {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
}

.metric-value {
  margin-top: 3px;
  font-weight: 800;
  font-family: var(--font-display);
}

.calc-explain {
  margin-top: 14px;
  border: 1px dashed #b5c9d8;
  border-radius: 12px;
  background: #f6fbff;
  padding: 11px 12px;
}

.calc-explain h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.details-list,
.faq details {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 10px 12px;
}

.details-list summary,
.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.details-list ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.faq p {
  margin-top: 8px;
  color: var(--muted);
}

.partner-reco,
.lead-box {
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

#partnerRecoSection {
  order: 40;
}

#leadBox {
  order: 50;
}

#noPartnerBox {
  order: 50;
}

.partner-reco-list {
  display: grid;
  gap: 9px;
}

.partner-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 11px;
}

.partner-card h4 {
  margin-bottom: 4px;
}

.partner-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.partner-rating {
  color: #936218;
  font-size: 0.86rem;
  font-weight: 700;
  margin-top: 6px;
}

.partner-link {
  display: inline-block;
  margin-top: 6px;
  color: #0b7986;
  text-decoration: none;
  font-weight: 700;
}

.partner-link:hover {
  text-decoration: underline;
}

.partner-coverage-warning {
  margin-bottom: 8px;
  color: #9d6615;
  font-size: 0.88rem;
  font-weight: 700;
}

.form-errors,
.form-status {
  min-height: 20px;
  margin-top: 10px;
  font-size: 0.9rem;
}

.form-errors {
  color: var(--danger);
}

.form-status {
  color: var(--muted);
}

.b2b-teaser {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  background: linear-gradient(145deg, #0f415d 0%, #15526d 100%);
  color: #eaf7ff;
  border: 0;
}

.b2b-teaser h2,
.b2b-teaser p,
.b2b-teaser .eyebrow {
  color: #eaf7ff;
}

.b2b-teaser .eyebrow {
  color: #9fdee6;
}

.site-footer {
  margin-top: 36px;
  border-top: 1px solid rgba(132, 174, 201, 0.28);
  background:
    radial-gradient(circle at 15% -15%, rgba(21, 143, 158, 0.28) 0%, transparent 45%),
    radial-gradient(circle at 85% -20%, rgba(244, 159, 54, 0.2) 0%, transparent 44%),
    linear-gradient(180deg, #102736 0%, #0c202f 100%);
  color: #e5f1f8;
  padding: 30px 0 34px;
}

.site-footer .muted {
  color: #bdd0dd;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  border: 1px solid #bdd6e6;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(9, 39, 63, 0.2);
  padding: 12px 14px;
}

.cookie-banner p {
  color: #314b61;
  font-size: 0.9rem;
}

.cookie-actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-actions a {
  color: #166e8b;
  text-decoration: none;
  font-weight: 700;
}

.cookie-actions a:hover {
  text-decoration: underline;
}

.footer-inner p {
  margin: 3px 0;
}

.footer-links {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-links a {
  color: #9fe4ea;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #c7f5f9;
  text-decoration: underline;
}

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

.legal-card h2 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.legal-card p + p {
  margin-top: 6px;
}

.legal-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 4px;
}

.legal-card a {
  color: #166e8b;
  text-decoration: none;
}

.legal-card a:hover {
  text-decoration: underline;
}

.legal-card-wide {
  grid-column: 1 / -1;
}

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

.contact-card h2 {
  margin-bottom: 8px;
}

.contact-card a {
  color: #166e8b;
  text-decoration: none;
  font-weight: 700;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 1120px) {
  .calculator-shell {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-header {
    padding-top: max(env(safe-area-inset-top), 8px);
  }

  .hero-grid,
  .calc-hero-grid,
  .how-grid {
    grid-template-columns: 1fr;
  }

  .legal-grid,
  .contact-grid,
  .contact-cta {
    grid-template-columns: 1fr;
  }

  .result-panel {
    position: static;
  }

  .header-inner {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .site-nav {
    display: flex;
    order: 3;
    width: 100%;
    margin-left: 0;
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px solid rgba(214, 227, 238, 0.8);
    gap: 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .site-nav .nav-link {
    white-space: nowrap;
    font-size: 0.9rem;
  }

  .header-cta {
    margin-left: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding-top: max(env(safe-area-inset-top), 10px);
  }

  .container {
    width: min(1200px, calc(100% - 1.2rem));
  }

  .header-inner {
    min-height: 70px;
    gap: 8px;
  }

  .header-cta {
    margin-left: auto;
    padding: 0.62rem 0.92rem;
    font-size: 0.86rem;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .hero-copy,
  .calc-hero-grid > div,
  .card {
    padding: 16px;
  }

  .radio-grid,
  .field-row.split,
  .metrics,
  .reward-grid,
  .trust-bar,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .calc-hero-image img {
    max-height: 220px;
  }

  .choice {
    min-height: 120px;
  }

  .choice-label {
    font-size: 1.36rem;
  }

  .stepper-header {
    flex-direction: column;
  }

  .b2b-teaser {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 6px;
  }
}
