:root {
  --green: #0f6b3a;
  --green-dark: #084726;
  --green-soft: #e9f6ef;
  --gold: #d8a21b;
  --ink: #173325;
  --muted: #5f7468;
  --line: #dce8e1;
  --bg: #f7faf8;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(8, 71, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(15, 107, 58, 0.22);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  background:
    radial-gradient(circle at 15% 10%, rgba(216, 162, 27, 0.18), transparent 28%),
    linear-gradient(135deg, #f8fff9 0%, #e5f5ec 48%, #f9fbf8 100%);
  border-bottom: 1px solid var(--line);
}

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

.hero-inner {
  padding: 88px 0 64px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
}

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

h1 {
  font-size: clamp(40px, 7vw, 72px);
  color: var(--green-dark);
}

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

h3 {
  font-size: 22px;
}

p {
  margin: 0 0 18px;
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  border: 1px solid var(--green);
  box-shadow: 0 12px 28px rgba(15, 107, 58, 0.2);
}

.button.secondary {
  color: var(--green-dark);
  background: var(--white);
  box-shadow: none;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

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

.stat {
  padding: 18px;
  border-radius: 20px;
  background: var(--green-soft);
}

.stat strong {
  display: block;
  color: var(--green-dark);
  font-size: 24px;
}

.section {
  padding: 64px 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.card,
.legal-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(8, 71, 38, 0.07);
}

.card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 900;
  margin-bottom: 14px;
}

.legal-page {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 72px;
}

.legal-page h1 {
  font-size: clamp(34px, 6vw, 56px);
}

.legal-box {
  margin-top: 24px;
}

.legal-box h2 {
  margin-top: 34px;
  font-size: 26px;
}

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

.legal-box ul {
  padding-left: 22px;
}

.notice {
  padding: 18px 20px;
  border-radius: 18px;
  background: #fff8e5;
  border: 1px solid #f0d88a;
  color: #5f4611;
}

.contact-strip {
  background: var(--green-dark);
  color: var(--white);
}

.contact-strip .section {
  padding: 44px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-strip p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-strip a {
  color: var(--white);
}

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

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

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

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

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 56px 0 46px;
  }

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

  .contact-strip .section {
    align-items: flex-start;
    flex-direction: column;
  }
}
