@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --background: #f8faf7;
  --surface: #ffffff;
  --surface-low: #f2f4f1;
  --surface-mid: #eceeeb;
  --text: #191c1b;
  --muted: #3d4a3d;
  --outline: #bccbb9;
  --primary: #006e2f;
  --vitality: #22c55e;
  --primary-soft: rgba(34, 197, 94, 0.16);
  --danger-soft: #ffdad6;
  --danger-text: #93000a;
  --shadow-soft: 0 4px 20px rgba(16, 24, 40, 0.05);
  --shadow-hover: 0 12px 32px rgba(34, 197, 94, 0.12);
  --container: 1200px;
  font-family: "Quicksand", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--background);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 250, 247, 0.88);
  border-bottom: 1px solid rgba(188, 203, 185, 0.42);
  backdrop-filter: blur(14px);
}

.nav-shell,
.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--primary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--vitality);
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
}

.button.dark {
  background: var(--text);
}

.button.subtle {
  background: var(--surface-mid);
  color: var(--text);
  box-shadow: none;
}

.nav-links .button,
.nav-links .button:hover {
  color: #ffffff;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 76px;
}

.hero::before,
.process::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.24);
  filter: blur(80px);
  pointer-events: none;
}

.hero::before {
  top: 70px;
  left: max(-120px, calc((100vw - var(--container)) / 2 - 160px));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 24px;
  padding: 6px 16px;
  border: 1px solid rgba(188, 203, 185, 0.55);
  border-radius: 999px;
  background: var(--surface-low);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.25rem, 6vw, 4.75rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 span {
  position: relative;
  display: inline-block;
  color: var(--primary);
}

.hero h1 span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.25);
  z-index: -1;
}

.lead {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.14rem;
  font-weight: 500;
}

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

.hero-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.22), rgba(219, 226, 249, 0.28));
  filter: blur(44px);
}

.hero-media img {
  position: relative;
  width: min(500px, 100%);
  filter: drop-shadow(0 26px 46px rgba(16, 24, 40, 0.18));
}

.section {
  padding: 76px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading h2,
.split-copy h2,
.page-card h2,
.contact-card h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: 0;
}

.section-heading p,
.split-copy p,
.page-card p,
.page-card li,
.contact-card p {
  color: var(--muted);
}

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

.feature-card,
.step-card,
.page-card,
.contact-card,
.contact-form {
  border: 1px solid rgba(188, 203, 185, 0.48);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  position: relative;
  min-height: 284px;
  overflow: hidden;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.feature-card.feature-raised {
  transform: translateY(-16px);
}

.feature-card::after {
  content: attr(data-symbol);
  position: absolute;
  top: -20px;
  right: -10px;
  color: rgba(0, 110, 47, 0.08);
  font-size: 5.6rem;
  font-weight: 700;
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 1.28rem;
  font-weight: 700;
}

.feature-card h3,
.step-card h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.28;
}

.feature-card p,
.step-card p {
  margin: 0;
  color: var(--muted);
}

.process {
  position: relative;
  overflow: hidden;
}

.process::before {
  top: 30%;
  left: 50%;
  background: rgba(219, 226, 249, 0.7);
  transform: translateX(-50%);
}

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

.step-card {
  padding: 28px;
  text-align: center;
}

.step-number {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 700;
}

.round-icon {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 18px;
  border: 6px solid var(--background);
  border-top-color: var(--vitality);
  border-radius: 50%;
  background: var(--surface);
  color: var(--primary);
  box-shadow: var(--shadow-soft);
  font-size: 1.7rem;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  overflow: hidden;
  border: 1px solid rgba(188, 203, 185, 0.62);
  border-radius: 32px;
  background: var(--surface-low);
  box-shadow: var(--shadow-soft);
}

.split-copy {
  padding: clamp(32px, 6vw, 80px);
}

.split-copy ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0;
  list-style: none;
}

.split-copy li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 600;
}

.split-copy li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  flex: none;
}

.split-image {
  min-height: 420px;
  background: var(--surface-mid);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero {
  padding: 84px 0 34px;
  text-align: center;
}

.page-hero .lead {
  margin-right: auto;
  margin-left: auto;
}

.page-layout {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 76px;
}

.page-card {
  padding: clamp(28px, 5vw, 48px);
}

.page-card section + section {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid rgba(188, 203, 185, 0.55);
}

.page-card h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.page-card h2::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--vitality);
  box-shadow: 0 0 0 8px var(--primary-soft);
}

.page-card ul {
  padding-left: 22px;
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.rights-grid div {
  min-height: 122px;
  padding: 18px;
  border-radius: 18px;
  background: var(--surface-low);
}

.rights-grid h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
}

.rights-grid p {
  margin: 0;
  font-size: 0.92rem;
}

.contact-layout {
  display: block;
  padding-bottom: 76px;
}

.contact-card,
.contact-form {
  padding: clamp(24px, 4vw, 40px);
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 26px 0 0;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-row .icon-badge {
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 14px;
  flex: none;
}

.contact-row b {
  display: block;
}

.contact-row a,
.page-card a {
  color: var(--primary);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(188, 203, 185, 0.8);
  border-radius: 16px;
  background: var(--background);
  padding: 15px 16px;
  color: var(--text);
  font: inherit;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--vitality);
  border-color: transparent;
}

.wide-image {
  width: min(900px, calc(100% - 48px));
  height: 280px;
  margin: 0 auto 74px;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
}

.wide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  padding: 40px 0;
  background: var(--surface-low);
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: grid;
  gap: 8px;
}

.footer-brand .brand {
  font-size: 1.38rem;
}

.footer-brand img {
  filter: grayscale(1);
  opacity: 0.78;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.not-found {
  min-height: 56vh;
}

@media (max-width: 880px) {
  .nav-shell,
  .container {
    width: min(100% - 32px, var(--container));
  }

  .nav-shell {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-grid,
  .feature-grid,
  .steps,
  .split-panel,
  .contact-layout,
  .rights-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: auto;
  }

  .feature-card.feature-raised {
    transform: none;
  }

  .split-image {
    min-height: 320px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .nav-links .button {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .page-layout,
  .wide-image {
    width: calc(100% - 32px);
  }
}
