:root {
  --green: #174f3a;
  --green-dark: #103c2c;
  --green-soft: #eaf4ef;
  --leaf: #88bd6f;
  --text: #17221d;
  --muted: #617068;
  --border: #dce7e1;
  --background: #f7faf8;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(16, 60, 44, 0.10);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.65;
}

a {
  color: var(--green);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 250, 248, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: var(--green-dark);
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand span {
  color: var(--leaf);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav-links a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--green);
}

.hero {
  padding: 96px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 52px;
}

.eyebrow {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.18;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 760px;
  margin: 20px 0;
  font-size: clamp(42px, 7vw, 72px);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 46px);
}

h3 {
  margin-top: 0;
  font-size: 21px;
}

.hero p,
.lead {
  color: var(--muted);
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 13px;
  background: var(--green);
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
}

.button.secondary {
  background: var(--white);
  color: var(--green);
  border: 1px solid var(--border);
}

.hero-card,
.card,
.legal-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 34px;
}

.hero-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}

.hero-card li:last-child {
  border-bottom: 0;
}

.check {
  display: inline-grid;
  width: 25px;
  height: 25px;
  margin-right: 10px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 900;
}

.section {
  padding: 74px 0;
}

.section.alt {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

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

.card {
  padding: 26px;
  box-shadow: none;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.notice {
  padding: 24px;
  border-left: 5px solid var(--leaf);
  border-radius: 14px;
  background: var(--green-soft);
}

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

.page-hero h1 {
  font-size: clamp(38px, 6vw, 60px);
}

.legal-panel {
  margin-bottom: 70px;
  padding: clamp(25px, 5vw, 55px);
  box-shadow: none;
}

.legal-panel h2 {
  margin-top: 42px;
  font-size: 26px;
}

.legal-panel h2:first-child {
  margin-top: 0;
}

.legal-panel li {
  margin-bottom: 8px;
}

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

.contact-box {
  margin: 28px 0;
  padding: 24px;
  border-radius: 16px;
  background: var(--green-soft);
}

.site-footer {
  padding: 38px 0;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

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

@media (max-width: 820px) {
  .hero-grid,
  .grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 62px;
  }

  .nav,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }
}
