:root {
  color-scheme: light;
  --bg: #f6f7fb;
  --panel: #ffffff;
  --ink: #152033;
  --muted: #5f6b7a;
  --line: #dce3ec;
  --brand: #0f8a5f;
  --brand-2: #e1a500;
  --danger: #b42318;
  --soft: #eaf7f1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: #087047;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
}

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

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-size: 14px;
}

.hero {
  display: grid;
  min-height: 560px;
  align-items: center;
  padding: clamp(52px, 8vw, 96px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(9, 46, 34, 0.88), rgba(12, 83, 60, 0.72)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: #fff;
}

.hero-inner {
  max-width: 920px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #f6d778;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(42px, 7vw, 82px);
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
}

h3 {
  font-size: 22px;
}

.hero p {
  max-width: 720px;
  margin: 0 0 28px;
  color: #edf7f1;
  font-size: clamp(17px, 2vw, 21px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button.primary {
  background: #f5c542;
  color: #152033;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 52px clamp(18px, 4vw, 32px);
}

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

.card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--panel);
}

.card p,
.section p,
li {
  color: var(--muted);
}

.section {
  border-top: 1px solid var(--line);
}

.notice {
  border-left: 4px solid var(--brand-2);
  background: #fff8df;
  padding: 18px 20px;
}

.warning {
  border-left-color: var(--danger);
  background: #fff1f0;
}

.facts {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

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

.facts th {
  width: 34%;
  background: #f2f5f8;
}

.steps {
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.steps li {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

.footer {
  padding: 32px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  max-width: 1120px;
  margin: 0 auto;
  justify-content: space-between;
  gap: 20px;
}

.page-hero {
  padding: 64px clamp(18px, 4vw, 56px);
  background: var(--soft);
}

.page-hero > div {
  max-width: 980px;
  margin: 0 auto;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

@media (max-width: 820px) {
  .topbar,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .hero {
    min-height: 520px;
  }
}
