/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
}

/* ── TOKENS ── */
:root {
  --green:      #2F5D3E;
  --green-dark: #1A3A25;
  --blue-dark:  #1F3555;
  --cream:      #FAF8F3;
  --cream-dark: #F0EBE1;
  --text:       #2C2A26;
  --text-muted: #6B6762;
  --white:      #FFFFFF;
}

/* ── TYPOGRAPHY ── */
h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.15;
  margin: 0 0 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.25;
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--blue-dark);
  line-height: 1.35;
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

/* ── LAYOUT ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

/* ── SECTION HEADER ── */
.section-header,
.section-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-header p,
.section-intro,
.contact-sub {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0.75rem auto 1.5rem;
  font-size: 1.1rem;
  text-align: center;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  line-height: 1;
}

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

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

.btn-secondary:hover {
  background: var(--green);
  color: var(--white);
}

.btn-outline-white,
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white:hover,
.btn-outline-light:hover {
  background: var(--white);
  color: var(--green);
}

/* ── NAVIGATION ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--green);
}

.btn-outline-nav {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-outline-nav:hover {
  background: var(--green);
  color: var(--white);
}


.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  padding: 0 24px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  height: 64px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-name {
  font-weight: 700;
  color: var(--green);
  font-size: 1.1rem;
}

.nav-cta {
  padding: 8px 18px;
  font-size: 0.9rem;
}

/* ── HERO ── */
.hero {
  background: var(--cream);
  padding: 120px 0 80px;
}

.hero-headline {
  margin-bottom: 1rem;
}

.hero-sub {
  max-width: 600px;
  color: var(--text-muted);
  font-size: 1.15rem;
  margin: 0;
}

.hero-ctas,
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ── PROBLEMS ── */
.problems {
  background: var(--white);
}

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

.problem-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 2rem;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.problem-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.problem-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin: 0 0 0.5rem;
}

.problem-desc {
  color: var(--text-muted);
  font-size: 0.975rem;
  margin: 0;
}

.problem-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

/* ── SOLUTION ── */
.solution {
  background: var(--cream);
}

.solution-desc {
  max-width: 640px;
  color: var(--text-muted);
  margin-bottom: 0;
}

.solution-text {
  max-width: 640px;
}

.pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}

.pill {
  background: #E8F2EC;
  color: var(--green);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  background: var(--white);
}

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

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-num {
  width: 48px;
  height: 48px;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-title {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.step-desc {
  color: var(--text-muted);
  font-size: 0.975rem;
  margin: 0;
}

.step-connector {
  display: none;
}

/* ── FOR COOPS ── */
.for-coops {
  background: var(--green);
  color: var(--white);
}

.for-coops h2 {
  color: var(--white);
}

.for-coops p,
.coops-desc {
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
}

.for-coops .hero-ctas {
  margin-top: 2rem;
}

/* ── PRICING ── */
.pricing {
  background: var(--cream);
}

.pricing-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(47, 93, 62, 0.12);
  border-top: 4px solid var(--green);
  text-align: center;
}

.pricing-amount,
.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin: 1rem 0;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.pricing-amount .price {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.pricing-amount .freq,
.pricing-period {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-currency {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
}

.pricing-features,
.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-dark);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1rem;
  display: block;
}

/* ── CONTACT ── */
.contact {
  background: var(--white);
}

.contact-form {
  max-width: 560px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 0.9rem;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  border: 1.5px solid #DDD8CD;
  border-radius: 8px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 93, 62, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}

.footer-email,
.footer-email a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-copy,
.footer-legal {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  section {
    padding: 48px 0;
  }

  h1,
  .hero-headline {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .hero {
    padding: 72px 0 48px;
  }

  .hero-ctas,
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-ctas .btn,
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

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

  .steps-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .step {
    align-items: flex-start;
    text-align: left;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-brand {
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .site-nav {
    padding: 0 12px;
  }

  .nav-cta {
    display: none;
  }
}
