:root {
  color-scheme: light;
  --ink: #14211f;
  --muted: #5d6a66;
  --line: #d8dfdc;
  --paper: #fbfcfb;
  --panel: #ffffff;
  --soft: #eef4f1;
  --deep: #12332c;
  --accent: #0f766e;
  --warn: #8a5a00;
  --danger: #8f1f1f;
  --shadow: 0 18px 50px rgba(18, 51, 44, 0.1);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}
a { color: inherit; }
.site-header, .site-footer, .public-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
}
.brand {
  font-weight: 850;
  font-size: 1.08rem;
  color: var(--deep);
  text-decoration: none;
}
.nav, .footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}
.nav a, .footer-links a { text-decoration: none; }
.nav a:hover, .footer-links a:hover { color: var(--deep); }
.button, .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 7px;
  font-weight: 780;
  text-decoration: none;
  border: 1px solid transparent;
}
.button { background: var(--deep); color: #fff; }
.button-secondary { border-color: var(--line); background: #fff; color: var(--deep); }
.hero {
  min-height: 520px;
  display: grid;
  align-content: center;
  gap: 24px;
  padding: 34px 0 54px;
}
.hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--deep);
  font-size: clamp(2.25rem, 6vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: 0;
}
.hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
}
.eyebrow {
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-actions, .inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}
.trust-strip span {
  min-height: 86px;
  display: grid;
  align-content: center;
  padding: 18px;
  background: var(--panel);
  font-weight: 780;
  color: var(--deep);
}
.section {
  padding: 68px 0;
  border-top: 1px solid var(--line);
}
.section h2 {
  margin: 0 0 16px;
  color: var(--deep);
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1.08;
}
.section > p, .section-intro {
  max-width: 780px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.05rem;
}
.grid { display: grid; gap: 18px; }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--deep);
  font-size: 1.05rem;
}
.card p, .card li { color: var(--muted); }
.card ul { padding-left: 18px; margin: 12px 0 0; }
.price {
  margin: 10px 0;
  font-size: 1.8rem;
  font-weight: 850;
  color: var(--deep);
}
.warning { border-left: 4px solid var(--warn); background: #fff8e8; }
.danger { border-left: 4px solid var(--danger); background: #fff4f4; }
.site-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 34px 0 46px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
@media (max-width: 860px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .nav { width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .hero { min-height: 440px; padding-top: 18px; }
  .trust-strip, .grid.three, .grid.two { grid-template-columns: 1fr; }
  .trust-strip span { min-height: auto; }
}
