:root {
  --brand-green: #0A5028;
  --brand-green-dark: #083f20;
  --brand-green-soft: #e6f0ea;
  --brand-green-border: #bfd3c6;

  --cream: #f7f3e8;
  --white: #ffffff;
  --text: #17211d;
  --muted: #66726b;
  --border: #d8ded9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #f7f3e8 0%, #eaf3ee 100%);
}

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

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  height: 64px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: var(--brand-green);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}

.nav-links a.active {
  border-bottom: 2px solid var(--brand-green);
}

.nav-button {
  background: var(--brand-green);
  color: var(--white) !important;
  padding: 11px 16px;
  border-radius: 999px;
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px 56px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: stretch;
}

.hero-content {
  background: var(--brand-green);
  color: var(--white);
  border-radius: 34px;
  padding: 56px;
  box-shadow: 0 24px 60px rgba(10, 80, 40, 0.2);
}

.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
  font-size: 13px;
  color: #d7f0df;
}

.eyebrow.dark {
  color: var(--brand-green);
}

.hero h1 {
  margin: 0;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 0.98;
  max-width: 800px;
}

.hero-text {
  max-width: 640px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.65;
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

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

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

.secondary-button {
  border: 1px solid rgba(255,255,255,0.38);
  color: var(--white);
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--brand-green-border);
  border-radius: 34px;
  padding: 38px;
  box-shadow: 0 20px 52px rgba(10, 80, 40, 0.1);
}

.hero-card h2 {
  color: var(--brand-green);
  margin: 0 0 24px;
  font-size: 30px;
}

.access-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.access-item:last-child {
  border-bottom: 0;
}

.access-item strong {
  color: var(--brand-green);
}

.access-item span {
  color: var(--muted);
  line-height: 1.5;
  font-weight: 700;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section h2 {
  margin: 0;
  color: var(--brand-green);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.section-text {
  color: var(--muted);
  line-height: 1.65;
  font-size: 17px;
}

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

.module-card {
  background: var(--white);
  border: 1px solid var(--brand-green-border);
  border-radius: 24px;
  padding: 24px;
  min-height: 230px;
}

.module-card span {
  color: var(--brand-green);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.module-card h3 {
  margin: 16px 0 10px;
  font-size: 23px;
  color: var(--text);
}

.module-card p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: flex;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--brand-green-border);
  border-radius: 22px;
  padding: 20px;
}

.step strong {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-green);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.step h3 {
  margin: 0 0 6px;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.cta-section {
  max-width: 1180px;
  margin: 36px auto 72px;
  padding: 54px 24px;
  background: var(--brand-green);
  color: var(--white);
  border-radius: 34px;
  text-align: center;
}

.cta-section h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
}

.cta-section p {
  max-width: 720px;
  margin: 18px auto 28px;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  color: var(--muted);
  background: var(--white);
}

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

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

  .nav {
    align-items: flex-start;
    gap: 16px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (max-width: 640px) {
  .hero-content,
  .hero-card,
  .cta-section {
    padding: 28px;
    border-radius: 24px;
  }

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

  .brand-logo {
    height: 48px;
  }

  .nav {
    flex-direction: column;
  }

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