:root {
  color-scheme: light;
  --ink: #18201b;
  --muted: #637166;
  --paper: #f8f6ef;
  --surface: #ffffff;
  --line: #d9ded4;
  --green: #2f6f4e;
  --green-dark: #194a35;
  --blue: #315b86;
  --blue-soft: #dfeaf4;
  --coral: #c75f4a;
  --gold: #c8983e;
  --shadow: 0 20px 60px rgba(45, 55, 45, 0.12);
  --shadow-soft: 0 14px 36px rgba(36, 48, 38, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(238, 244, 237, 0.72), rgba(248, 246, 239, 0) 460px),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(248, 246, 239, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.top-nav a:hover {
  color: var(--ink);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(32px, 5vw, 64px) clamp(18px, 4vw, 56px) 28px;
  min-height: auto;
}

.hero-copy {
  display: grid;
  max-width: none;
  gap: 18px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4.9vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-text,
.muted,
.lede,
.method-strip p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

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

.text-link {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
}

.hero-proof span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.coverage-panel {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0;
}

.coverage-panel div {
  min-height: 86px;
  padding: 13px;
  background:
    linear-gradient(90deg, rgba(47, 111, 78, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(49, 91, 134, 0.1) 1px, transparent 1px),
    rgba(255, 255, 255, 0.74);
  background-size: 28px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.coverage-dot {
  display: block;
  width: 10px;
  height: 10px;
  margin-bottom: 8px;
  border-radius: 999px;
}

.europe-dot {
  background: var(--green);
}

.asia-dot {
  background: var(--gold);
}

.americas-dot {
  background: var(--blue);
}

.mena-dot {
  background: var(--coral);
}

.coverage-panel strong {
  display: block;
  color: var(--ink);
  font-size: 0.86rem;
}

.coverage-panel small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.45;
}

.decision-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(47, 111, 78, 0.1), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.decision-panel h2 {
  max-width: 460px;
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.decision-panel ol {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.decision-panel li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.decision-panel li span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--green);
  background: #eef4ed;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.decision-panel li p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.decision-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.decision-links a {
  display: grid;
  min-height: 44px;
  align-items: center;
  padding: 0 12px;
  color: var(--green);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 800;
}

.calculator-panel,
.result-summary,
.chart-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.calculator-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 3vw, 30px);
}

.calculator-column {
  display: grid;
  gap: 16px;
}

.calculator-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--gold), var(--coral));
}

.panel-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.compact-heading {
  align-items: center;
  margin-bottom: 16px;
}

.status-pill {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  color: var(--blue);
  background: #eef5fb;
  border: 1px solid #d3dfeb;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.compact-pill {
  min-height: 30px;
  padding: 0 10px;
  font-size: 0.76rem;
  text-transform: capitalize;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}

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

.calculator-form {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

select,
input {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 7px;
  font: inherit;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

select:focus,
input:focus {
  outline: 3px solid rgba(47, 111, 78, 0.16);
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 8px 18px rgba(47, 111, 78, 0.08);
}

.city-picker {
  position: relative;
  display: block;
}

.city-picker select {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.city-search {
  padding-right: 36px;
  background:
    linear-gradient(90deg, transparent, transparent),
    #fbfaf6;
}

.city-options {
  position: absolute;
  z-index: 20;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  display: none;
  max-height: 284px;
  overflow: auto;
  padding: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.city-options.is-open {
  display: grid;
  gap: 4px;
}

.city-options button {
  display: grid;
  width: 100%;
  gap: 3px;
  min-height: 52px;
  padding: 9px 10px;
  color: var(--ink);
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font: inherit;
}

.city-options button:hover,
.city-options button:focus {
  outline: none;
  background: #eef4ed;
}

.city-options strong {
  font-size: 0.9rem;
}

.city-options span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.quick-tools {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 12px;
  padding: 14px;
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quick-tools > div {
  display: grid;
  gap: 8px;
}

.quick-tools > div > span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.quick-button-row button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  color: var(--green);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 850;
}

.quick-button-row button:hover,
.quick-button-row button:focus {
  outline: none;
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.recommended-row button {
  border-radius: 7px;
}

.quick-button-row small {
  color: inherit;
  opacity: 0.78;
  font-size: 0.72rem;
  font-weight: 900;
}

.calculator-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 2px;
}

.calculate-button {
  border: 0;
  cursor: pointer;
  font: inherit;
  box-shadow: var(--shadow-soft);
}

.calculate-button:hover {
  background: var(--green-dark);
}

.calculation-status {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: var(--green);
  background: #eef4ed;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.calculation-status.is-stale {
  color: var(--coral);
  background: #fff2ed;
  border-color: #ebc8bc;
}

.results-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
  padding: 0 clamp(18px, 4vw, 56px) 56px;
}

.calculator-results {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 18px;
  padding-top: 0;
}

.calculator-results .result-summary,
.calculator-results .chart-wrap {
  box-shadow: var(--shadow-soft);
}

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

.calculator-results .result-hero {
  grid-template-columns: minmax(160px, 0.38fr) minmax(0, 1fr);
}

.result-summary,
.chart-wrap {
  padding: clamp(18px, 3vw, 28px);
}

.result-lead {
  display: grid;
  gap: 6px;
  margin-bottom: 20px;
}

.result-lead h2 {
  margin-bottom: 0;
}

.result-context {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.result-hero {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(47, 111, 78, 0.12), rgba(255, 255, 255, 0.86)),
    #f7f4eb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.result-hero.up {
  background:
    linear-gradient(135deg, rgba(199, 95, 74, 0.12), rgba(255, 255, 255, 0.9)),
    #fff8f4;
}

.result-hero span,
.result-insights span,
.total-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.result-hero strong {
  display: block;
  margin-top: 7px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.result-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

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

.metric-grid article {
  min-height: 112px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 244, 235, 0.9)),
    #f7f4eb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metric-grid span,
.ranking-row small,
.comparison-card small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.metric-grid strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

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

.result-insights article {
  min-height: 124px;
  padding: 16px;
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.result-insights strong {
  display: block;
  margin: 9px 0 8px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.result-insights small {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.result-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.related-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.related-links > span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.related-links div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.related-links a {
  display: grid;
  min-height: 50px;
  align-items: center;
  padding: 9px 11px;
  color: var(--green);
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.related-links a:hover {
  background: #eef4ed;
}

.result-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 18px;
  align-items: center;
  margin-top: 14px;
  padding: 16px;
  background: #eef4ed;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.result-callout span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.result-callout strong {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.result-callout small {
  grid-column: 1 / -1;
  color: var(--muted);
  line-height: 1.5;
}

.up {
  color: var(--coral);
}

.down {
  color: var(--green);
}

.bar-chart {
  display: grid;
  gap: 16px;
  margin-top: 10px;
}

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

.total-card {
  padding: 16px;
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.total-card strong {
  display: block;
  margin: 8px 0 12px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1;
}

.total-track {
  height: 11px;
  overflow: hidden;
  background: #eef1e9;
  border-radius: 999px;
}

.total-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.current-total .total-track i {
  background: var(--blue);
}

.target-total .total-track i {
  background: var(--coral);
}

.category-chart {
  display: grid;
  gap: 12px;
}

.bar-row {
  display: grid;
  gap: 9px;
  padding: 13px;
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.bar-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bar-label span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: capitalize;
}

.bar-label strong {
  font-size: 0.92rem;
}

.bar-label strong small {
  color: inherit;
  font-size: 0.72rem;
}

.bar-stack {
  display: grid;
  gap: 7px;
}

.bar-track {
  position: relative;
  min-height: 21px;
  overflow: hidden;
  background: #eef1e9;
  border-radius: 999px;
}

.bar-track em {
  position: absolute;
  top: 50%;
  right: 9px;
  transform: translateY(-50%);
  color: rgba(24, 32, 27, 0.72);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 800;
}

.bar-line {
  height: 21px;
  min-width: 4px;
  border-radius: 999px;
  transition: width 220ms ease;
}

.bar-line.current {
  background: var(--blue);
}

.bar-line.target {
  background: var(--coral);
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chart-legend i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

.legend-current {
  background: var(--blue);
}

.legend-target {
  background: var(--coral);
}

.content-band,
.method-strip,
.article-layout {
  padding: 62px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

.trust-band {
  background:
    linear-gradient(90deg, rgba(238, 244, 237, 0.84), rgba(255, 255, 255, 0.2)),
    #f7f4eb;
}

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

.trust-grid article {
  min-height: 158px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.trust-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-grid strong {
  display: block;
  margin: 12px 0 8px;
  color: var(--green);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.trust-grid small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.trust-actions {
  margin-top: 20px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

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

.comparison-card {
  display: grid;
  min-height: 150px;
  align-content: space-between;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 244, 235, 0.9)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.comparison-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(47, 111, 78, 0.34);
}

.comparison-card span,
.comparison-card strong {
  font-size: 1.08rem;
  font-weight: 800;
}

.comparison-card strong {
  color: var(--coral);
  font-size: 1.8rem;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 30px;
  align-items: start;
}

.ranking-list {
  display: grid;
  gap: 10px;
}

.ranking-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 56px;
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.ranking-row > span {
  color: var(--gold);
  font-weight: 900;
}

.ranking-row b {
  color: var(--green);
  font-size: 1.2rem;
  text-align: right;
}

.method-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr auto;
  gap: 24px;
  align-items: center;
  background: #eef4ed;
}

.button-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: #fff;
  background: var(--green);
  border-radius: 7px;
  font-weight: 800;
  white-space: nowrap;
}

.button-group,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.secondary-link {
  color: var(--green);
  background: var(--surface);
  border: 1px solid var(--line);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--green);
  font-weight: 800;
}

.article-layout {
  max-width: 880px;
  min-height: calc(100vh - 150px);
}

.seo-layout {
  max-width: 1120px;
}

.article-layout h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.article-layout section {
  margin-top: 34px;
}

.plain-list {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.seo-metrics {
  margin-top: 30px;
}

.seo-metrics small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.table-wrap {
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.data-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: var(--muted);
  background: #f7f4eb;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.data-table a {
  color: var(--green);
  font-weight: 800;
}

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

.link-grid a {
  min-height: 58px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green);
  font-weight: 800;
}

.popular-search-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.search-intent-card {
  display: grid;
  gap: 10px;
  min-height: 178px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.search-intent-card span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.search-intent-card strong {
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.12;
}

.search-intent-card small {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}

.insight-panel {
  padding: clamp(18px, 3vw, 28px);
  background: #eef4ed;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.insight-panel p {
  color: var(--muted);
  line-height: 1.7;
}

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

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  cursor: pointer;
  padding: 16px;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .hero-shell,
  .results-band,
  .split-band,
  .method-strip {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    position: relative;
    top: auto;
  }

  .metric-grid,
  .comparison-grid,
  .trust-grid,
  .result-hero,
  .result-insights,
  .total-compare,
  .related-links div,
  .quick-tools,
  .popular-search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-nav {
    justify-content: flex-start;
  }

  .calculator-grid,
  .metric-grid,
  .comparison-grid,
  .trust-grid,
  .link-grid,
  .result-hero,
  .result-insights,
  .total-compare,
  .related-links div,
  .quick-tools,
  .popular-search-grid {
    grid-template-columns: 1fr;
  }

  .coverage-panel {
    grid-template-columns: 1fr;
  }

  .decision-links {
    grid-template-columns: 1fr;
  }
}
