:root {
  color-scheme: light;
  --ink: #172323;
  --muted: #5b6968;
  --line: #d9e3df;
  --paper: #ffffff;
  --soft: #f6f2ea;
  --mint: #ddeee8;
  --teal: #1f766a;
  --teal-dark: #10483f;
  --gold: #c9953f;
  --shadow: 0 18px 45px rgba(23, 35, 35, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.58;
}

a {
  color: inherit;
}

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

figure {
  margin: 0;
}

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

h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: 46px;
  line-height: 1.12;
}

h2 {
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1.22;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.3;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.nav {
  width: min(1180px, calc(100vw - 32px));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 98px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 11px 18px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta,
.button.primary {
  color: #fff;
  background: var(--teal);
}

.button.secondary {
  border-color: var(--teal);
  color: var(--teal-dark);
  background: #fff;
}

.button.gold {
  color: #fff;
  background: var(--gold);
}

.hero {
  background: linear-gradient(180deg, var(--soft), #fff 76%);
}

.hero-inner {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 70px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 46px;
  align-items: center;
}

.page-hero .hero-inner {
  padding-top: 62px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

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

.hero-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.trust-band {
  background: var(--teal-dark);
  color: #fff;
}

.trust-grid {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.trust-item {
  min-height: 94px;
  padding: 18px;
  background: var(--teal-dark);
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 20px;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.section {
  padding: 70px 0;
}

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

.section.tint {
  background: var(--mint);
}

.section-inner {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 32px;
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: 44px;
  align-items: start;
}

.panel,
.mini,
.faq-item,
.related-link {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.panel {
  padding: 24px;
}

.source-panel {
  background: #fbfdfc;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 24px;
}

.check-list li:last-child {
  margin-bottom: 0;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

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

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 24px;
  align-items: start;
}

.source-article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #fff;
}

.source-article p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 17px;
}

.source-article p:last-child {
  margin-bottom: 0;
}

.mini {
  min-height: 176px;
  padding: 22px;
}

.mini p,
.panel p,
.faq-item p {
  color: var(--muted);
}

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

.related-link {
  min-height: 96px;
  padding: 18px;
  text-decoration: none;
}

.related-link span {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.related-link small {
  color: var(--muted);
}

.quote-band {
  color: #fff;
  background: var(--teal-dark);
}

.quote-inner {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 58px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.quote-inner p {
  max-width: 740px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.faq-item {
  padding: 22px;
}

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

.footer-inner {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 22px;
}

.footer a {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
    padding: 14px 0;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-inner,
  .split,
  .article-layout {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 26px;
  }

  .trust-grid,
  .mini-grid,
  .related-grid,
  .faq {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 620px) {
  .nav-links {
    gap: 14px;
    font-size: 13px;
  }

  .nav-cta {
    padding-inline: 14px;
  }

  .hero-inner {
    padding: 46px 0 38px;
  }

  h1 {
    font-size: 28px;
  }

  .lead {
    font-size: 16px;
  }

  .trust-grid,
  .mini-grid,
  .related-grid,
  .faq {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 0;
  }
}
