:root {
  --bg: #f7faf7;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --text: #112014;
  --muted: #56645b;
  --primary: #167c49;
  --primary-deep: #0f4f31;
  --accent: #c9f08f;
  --line: rgba(17, 32, 20, 0.08);
  --shadow: 0 24px 60px rgba(16, 47, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(201, 240, 143, 0.9), transparent 28%),
    radial-gradient(circle at right 20%, rgba(22, 124, 73, 0.18), transparent 22%),
    linear-gradient(180deg, #f4fbef 0%, #f7faf7 46%, #eef5f0 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 2.5rem;
}

.topbar,
.hero-card,
.feature-card,
.cta-section,
.contact-card,
.policy-card,
.footer {
  backdrop-filter: blur(16px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  margin-top: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.brand {
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

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

.nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: 4.5rem 0 3rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 800;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.split-section h2,
.cta-section h2 {
  font-family: "Outfit", sans-serif;
  line-height: 0.98;
  margin: 0;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  max-width: 12ch;
}

.hero-text,
.page-hero p,
.feature-card p,
.check-list p,
.contact-card p,
.policy-card p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 60ch;
  margin: 1.25rem 0 0;
  font-size: 1.05rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  box-shadow: 0 18px 36px rgba(22, 124, 73, 0.22);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.hero-points {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.6rem 0 0;
  list-style: none;
  color: var(--text);
  font-weight: 600;
}

.hero-points li::before {
  content: "•";
  color: var(--primary);
  margin-right: 0.6rem;
}

.hero-card,
.cta-section,
.contact-card,
.policy-card {
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.25rem;
}

.hero-panel {
  padding: 1.25rem;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(160deg, #10251a 0%, #167c49 75%, #61a85a 100%);
}

.panel-label {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.76);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.service-pills span {
  padding: 0.65rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.stats-grid article,
.feature-card {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.75);
}

.stats-grid strong,
.feature-card h3,
.contact-card h2,
.policy-card h2 {
  display: block;
  font-family: "Outfit", sans-serif;
  margin-bottom: 0.5rem;
}

.section,
.page-main {
  padding: 2rem 0;
}

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

.section-heading h2,
.split-section h2,
.cta-section h2,
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

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

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 1rem;
}

.check-list div {
  padding: 1.1rem 1.2rem;
  border-left: 4px solid var(--primary);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 255, 255, 0.62);
}

.check-list strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Outfit", sans-serif;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
}

.page-hero {
  max-width: 760px;
  padding: 2rem 0 1rem;
}

.contact-card,
.policy-card {
  padding: 1.5rem;
}

.policy-card {
  max-width: 900px;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}

.footer p,
.footer a {
  color: var(--muted);
}

.footer div {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 920px) {
  .hero,
  .split-section,
  .cta-section,
  .feature-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 1rem, 100%);
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    gap: 0.8rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero h1 {
    max-width: none;
  }

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