:root {
  --blue-950: #081a2f;
  --blue-900: #0b2340;
  --blue-800: #123459;
  --blue-700: #194a79;
  --ink: #152033;
  --muted: #5f6d7f;
  --line: #dce4ec;
  --soft: #f4f7fa;
  --white: #ffffff;
  --gold: #b98a34;
  --green: #436b4a;
  --shadow: 0 20px 55px rgba(8, 26, 47, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.55;
  background: var(--white);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 76px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 228, 236, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: var(--blue-900);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0;
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  gap: 1px;
  font-weight: 800;
  color: var(--blue-950);
}

.brand-text small {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.primary-nav a {
  text-decoration: none;
  color: var(--blue-900);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: var(--radius);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  outline: none;
  background: var(--soft);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--blue-900);
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--blue-950);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 26, 47, 0.92) 0%, rgba(8, 26, 47, 0.74) 42%, rgba(8, 26, 47, 0.24) 100%),
    linear-gradient(0deg, rgba(8, 26, 47, 0.78) 0%, rgba(8, 26, 47, 0.02) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 92px 0 54px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 8vw, 94px);
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.hero-lead {
  max-width: 720px;
  margin: 26px 0 0;
  font-size: clamp(18px, 2vw, 23px);
  color: rgba(255, 255, 255, 0.88);
}

.hero-signature {
  max-width: 650px;
  margin-top: 18px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.76);
  border-left: 3px solid var(--gold);
  font-size: 17px;
  font-weight: 700;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  background: var(--gold);
  color: var(--blue-950);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-light {
  background: var(--white);
  color: var(--blue-950);
}

.hero-facts span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 700;
}

.trust-strip {
  background: var(--blue-950);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-inner span {
  padding: 18px 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-inner span:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: var(--soft);
}

.section-deep {
  background: var(--blue-950);
  color: var(--white);
}

.thought-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.thought-section .intro-grid {
  padding: clamp(26px, 4vw, 42px);
  align-items: center;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(8, 26, 47, 0.08);
}

.thought-section .prose {
  font-size: 17px;
}

.intro-grid,
.math-grid,
.comparison-grid,
.faq-grid,
.cta-grid,
.image-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 56px;
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-deep h2,
.cta-section h2 {
  color: var(--white);
}

h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 21px;
  line-height: 1.22;
}

p {
  margin: 0;
}

.prose {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 18px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head-centered {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head p:not(.section-kicker) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
}

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

.entry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.premium-entry {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.entry-card {
  position: relative;
  min-height: 260px;
  padding: 32px;
  display: grid;
  align-content: space-between;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(8, 26, 47, 0.08);
}

.entry-card-featured {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 26, 47, 0.98), rgba(18, 52, 89, 0.96));
  border-color: rgba(8, 26, 47, 0.5);
}

.entry-card-featured h3,
.entry-card-featured .text-link {
  color: var(--white);
}

.entry-card-featured p {
  color: rgba(255, 255, 255, 0.78);
}

.entry-card-featured .number {
  color: var(--gold);
}

.entry-grid p {
  margin: 12px 0 20px;
  color: var(--muted);
}

.text-link {
  color: var(--blue-900);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.benefit-card {
  min-height: 248px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(8, 26, 47, 0.06);
}

.number {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.benefit-card p,
.steps p,
.faq-grid > div:first-child p,
.tab-panel p,
.image-band-grid p {
  margin-top: 12px;
  color: var(--muted);
}

.value-section {
  background: var(--blue-950);
  color: var(--white);
}

.value-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 52px;
  align-items: center;
}

.value-copy h2 {
  color: var(--white);
}

.value-copy p:not(.section-kicker) {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.value-ledger {
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.value-ledger div {
  display: grid;
  grid-template-columns: 48px minmax(160px, 0.55fr) 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.value-ledger div:first-child {
  border-top: 0;
}

.value-ledger span {
  color: var(--gold);
  font-weight: 900;
}

.value-ledger strong {
  color: var(--white);
  font-size: 18px;
  line-height: 1.25;
}

.value-ledger p {
  color: rgba(255, 255, 255, 0.72);
}

.math-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at 85% 15%, rgba(185, 138, 52, 0.14), transparent 32%),
    var(--white);
}

.math-copy {
  position: sticky;
  top: 112px;
}

.math-copy p:not(.section-kicker) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.note {
  font-size: 14px;
  color: var(--muted);
}

.calculator-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.calc-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 24px 0 8px;
  color: var(--blue-950);
  font-weight: 800;
}

.calc-row-top {
  margin-top: 0;
}

.calc-row output {
  color: var(--gold);
  text-align: right;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--blue-800);
}

.calc-result {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.calc-result div {
  min-height: 126px;
  padding: 18px;
  display: grid;
  align-content: space-between;
  background: var(--blue-950);
  color: var(--white);
  border-radius: var(--radius);
}

.calc-result span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.calc-result strong {
  font-size: 24px;
  line-height: 1.1;
}

.comparison-table {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
}

.comparison-table > div {
  display: grid;
  grid-template-columns: 0.62fr 0.82fr 1.1fr;
}

.comparison-table span {
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
}

.comparison-table span:first-child {
  border-left: 0;
  color: var(--white);
  font-weight: 800;
}

.comparison-head span {
  border-top: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 900;
}

.pathway-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pathway-grid article {
  min-height: 310px;
  padding: 28px;
  display: grid;
  align-content: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(8, 26, 47, 0.07);
}

.pathway-grid span {
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue-950);
  border-radius: var(--radius);
  font-weight: 900;
}

.pathway-grid p {
  margin-top: 14px;
  color: var(--muted);
}

.questionnaire {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.58fr);
  gap: 24px;
  align-items: start;
}

.question-list {
  display: grid;
  gap: 16px;
}

.question-card {
  margin: 0;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.question-card legend {
  padding: 0;
  margin-bottom: 14px;
  color: var(--blue-950);
  font-size: 20px;
  font-weight: 900;
}

.question-card label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 36px;
  padding: 8px 0;
  color: var(--muted);
  cursor: pointer;
}

.question-card input {
  margin-top: 4px;
  accent-color: var(--blue-800);
}

.result-panel {
  position: sticky;
  top: 112px;
  padding: 28px;
  background: var(--blue-950);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.result-label {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.result-panel h3 {
  margin-top: 12px;
  color: var(--white);
  font-size: 28px;
}

.result-panel p:not(.result-label) {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 24px;
}

.result-tags span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.type-tabs {
  display: grid;
  gap: 18px;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tab-list button {
  min-height: 44px;
  padding: 10px 14px;
  color: var(--blue-950);
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.tab-list button[aria-selected="true"] {
  background: var(--blue-950);
  color: var(--white);
  border-color: var(--blue-950);
}

.tab-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: stretch;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(8, 26, 47, 0.07);
}

.tab-panel[hidden] {
  display: none;
}

.tab-panel img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
}

.image-band-grid {
  align-items: center;
}

.image-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.image-frame img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.mini-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.mini-list span {
  padding: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue-950);
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.steps article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.steps span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  border-radius: var(--radius);
  background: var(--blue-950);
  color: var(--white);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  padding: 18px 20px;
  color: var(--blue-950);
  font-weight: 900;
  cursor: pointer;
}

details p {
  padding: 0 20px 20px;
  color: var(--muted);
}

summary:focus-visible {
  outline: 3px solid rgba(185, 138, 52, 0.42);
  outline-offset: 2px;
}

.cta-section {
  background: var(--blue-950);
  color: var(--white);
}

.cta-grid {
  align-items: center;
}

.cta-grid p:not(.section-kicker) {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.contact-methods {
  display: grid;
  gap: 4px;
  margin-top: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.contact-methods p {
  margin: 0 !important;
  font-size: 16px !important;
}

.contact-methods a {
  color: var(--white);
}

.note-light {
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 14px !important;
}

.contact-form {
  padding: 24px;
  display: grid;
  gap: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: var(--radius);
}

.contact-form textarea {
  resize: vertical;
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.hp-field input {
  width: 1px;
  min-height: 1px;
  padding: 0;
}

.privacy-check {
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 10px !important;
  font-weight: 700 !important;
  font-size: 14px;
  line-height: 1.45;
}

.privacy-check input {
  width: auto;
  min-height: 0;
  margin-top: 3px;
  accent-color: var(--gold);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(185, 138, 52, 0.42);
}

.form-note {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 13px !important;
}

.site-footer {
  padding: 42px 0;
  background: #061324;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: 36px;
}

.brand-footer .brand-mark {
  background: var(--white);
  color: var(--blue-950);
}

.brand-footer .brand-text span {
  color: var(--white);
}

.footer-grid p {
  margin-top: 14px;
}

.footer-grid nav {
  display: grid;
  gap: 8px;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-grid h2 {
  color: var(--white);
  font-size: 20px;
}

@media (max-width: 980px) {
  .site-header {
    padding: 10px 16px;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .primary-nav.open {
    display: grid;
  }

  .primary-nav a {
    padding: 12px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 26, 47, 0.94) 0%, rgba(8, 26, 47, 0.78) 58%, rgba(8, 26, 47, 0.48) 100%),
      linear-gradient(0deg, rgba(8, 26, 47, 0.78) 0%, rgba(8, 26, 47, 0.04) 48%);
  }

  .trust-inner,
  .entry-grid,
  .benefit-grid,
  .pathway-grid,
  .steps,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-grid,
  .math-grid,
  .comparison-grid,
  .faq-grid,
  .cta-grid,
  .image-band-grid,
  .value-layout,
  .questionnaire,
  .tab-panel {
    grid-template-columns: 1fr;
  }

  .math-copy,
  .result-panel {
    position: static;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand-text span {
    font-size: 14px;
  }

  .brand-text small {
    font-size: 11px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    padding: 72px 0 34px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 44px;
    line-height: 1;
  }

  .hero-lead {
    max-width: 100%;
    font-size: 17px;
  }

  .hero-actions,
  .hero-facts {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .trust-inner,
  .entry-grid,
  .benefit-grid,
  .pathway-grid,
  .steps,
  .calc-result,
  .mini-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-inner span,
  .trust-inner span:last-child {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .benefit-card {
    min-height: auto;
  }

  .entry-card,
  .pathway-grid article {
    min-height: auto;
  }

  .value-ledger div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .comparison-table {
    display: grid;
    gap: 0;
    border: 0;
  }

  .comparison-table > div {
    grid-template-columns: 1fr;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .comparison-head {
    display: none !important;
  }

  .comparison-table span,
  .comparison-table span:first-child {
    border-left: 0;
  }

  .tab-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .tab-panel {
    padding: 18px;
  }

  .tab-panel img,
  .image-frame img {
    height: 260px;
  }

  .question-card,
  .result-panel,
  .calculator-card,
  .contact-form {
    padding: 20px;
  }

  .calc-row {
    display: grid;
    gap: 2px;
  }

  .calc-row output {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
