:root {
  --green: #16a34a;
  --green-dark: #12803d;
  --green-soft: #eefaf2;
  --ink: #1f2937;
  --muted: #5f6b76;
  --line: #e5ece7;
  --white: #ffffff;
  --panel: #0f1720;
  --radius-xl: 32px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 32, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Poppins", sans-serif;
  line-height: 1.7;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Merriweather", serif;
  line-height: 1.25;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(22, 163, 74, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  transition: box-shadow 160ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(15, 23, 32, 0.08);
}

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

.header-row {
  padding: 18px 0;
}

.brand img {
  width: auto;
  height: 48px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a {
  transition: color 160ms ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

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

.button-primary {
  background: var(--green);
  color: var(--white);
}

.button-primary:hover {
  background: var(--green-dark);
}

.button-secondary {
  border: 1px solid rgba(22, 163, 74, 0.22);
  color: var(--green-dark);
  background: var(--white);
}

.button-secondary:hover {
  background: #f7fcf8;
}

.hero {
  padding: 76px 0 88px;
  background:
    radial-gradient(
      circle at top left,
      rgba(22, 163, 74, 0.12),
      transparent 36%
    ),
    linear-gradient(180deg, #f4fbf6 0%, #ffffff 62%);
}

.hero-grid,
.about-grid {
  display: grid;
  gap: 40px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: start;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.1);
  color: var(--green-dark);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #b5f3ca;
}

.eyebrow-light {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
}

.hero-copy h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 5vw, 4.3rem);
}

.lead,
.section-heading p,
.info-card p,
.step-card p,
.feature-card p,
.about-panel p,
.contact-band p,
.note-box {
  color: var(--muted);
}

.lead {
  max-width: 680px;
  font-size: 1.08rem;
}

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

.stat-grid,
.card-grid,
.step-grid,
.feature-grid,
.contact-card-grid {
  display: grid;
  gap: 20px;
}

.stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.stat-card,
.info-card,
.step-card,
.feature-card,
.contact-card {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.stat-card {
  padding: 22px 20px;
  border-radius: var(--radius-md);
}

.stat-card strong {
  display: block;
  font-size: 1.25rem;
}

.stat-card span,
.contact-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel {
  padding: 24px;
  border: 1px solid rgba(22, 163, 74, 0.1);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 0 26px 60px rgba(22, 163, 74, 0.14);
}

.hero-panel-brand {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #14984a 0%, #0fb46d 100%);
  color: rgba(255, 255, 255, 0.9);
}

.hero-panel-brand img,
.footer-brand img {
  width: auto;
  height: 56px;
}

.hero-panel-brand p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-panel-brand ul,
.dot-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero-panel-brand li,
.dot-list li {
  position: relative;
  padding-left: 18px;
}

.hero-panel-brand li + li,
.dot-list li + li {
  margin-top: 12px;
}

.hero-panel-brand li::before,
.dot-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.contact-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.contact-card {
  padding: 22px;
  border-radius: var(--radius-md);
}

.contact-card a {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  transition: color 160ms ease;
}

.contact-card a:hover {
  color: var(--green-dark);
}

.note-box {
  margin-top: 22px;
  padding: 22px;
  border: 1px dashed rgba(22, 163, 74, 0.22);
  border-radius: var(--radius-md);
  background: var(--green-soft);
}

.section {
  padding: 84px 0;
}

.section-soft {
  background: #f7faf8;
}

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

.split-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.split-heading > * {
  flex: 1;
}

.section-heading h2,
.about-panel h2,
.contact-band h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.card-grid,
.step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.step-card,
.feature-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.card-mark,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  border-radius: 999px;
  font-weight: 700;
}

.card-mark {
  background: rgba(22, 163, 74, 0.1);
  color: var(--green-dark);
}

.step-number {
  background: var(--green);
  color: var(--white);
}

.info-card h3,
.step-card h3,
.feature-card h3 {
  margin: 22px 0 12px;
  font-size: 1.55rem;
}

.about-grid {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.about-panel {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--panel);
  color: rgba(255, 255, 255, 0.88);
}

.about-panel p {
  color: rgba(225, 232, 239, 0.8);
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 34px;
  padding: 38px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #167c43 0%, #0fa15f 100%);
  color: var(--white);
}

.contact-band p {
  color: rgba(255, 255, 255, 0.84);
}

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

.contact-band-item {
  padding: 22px 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.14);
  transition: background-color 160ms ease;
}

.contact-band-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.contact-band-item span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.contact-band-item strong {
  font-size: 1.08rem;
}

.site-footer {
  padding: 40px 0;
  background: #0d141c;
  color: #d4dbe3;
}

.footer-brand {
  max-width: 430px;
}

.footer-brand p,
.footer-meta p,
.footer-meta a {
  color: #98a3ad;
}

.footer-brand p {
  margin-top: 16px;
}

.footer-meta {
  display: grid;
  gap: 8px;
  text-align: right;
  font-size: 0.95rem;
}

.footer-meta a {
  transition: color 160ms ease;
}

.footer-meta a:hover {
  color: var(--white);
}

@media (max-width: 980px) {
  .header-row,
  .footer-row,
  .split-heading,
  .hero-grid,
  .about-grid,
  .contact-band {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .card-grid,
  .step-grid,
  .feature-grid,
  .stat-grid,
  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .wrapper {
    width: min(100% - 24px, 1120px);
  }

  .site-nav {
    gap: 16px;
    font-size: 0.92rem;
  }

  .hero,
  .section {
    padding: 68px 0;
  }

  .hero-panel,
  .contact-band,
  .about-panel,
  .info-card,
  .step-card,
  .feature-card {
    padding: 24px;
  }

  .brand img {
    height: 42px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
  }
}
