/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, #1e4a22 0%, #2d6635 40%, #398141 100%);
  color: #fff;
  padding: 90px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #c8e6c8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 22px;
  color: #fff;
}
.hero h1 em {
  font-style: normal;
  color: #9ed9a0;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  background: #fff;
  color: var(--green);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}
.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  transition: background 0.2s;
}
.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hero-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: background 0.2s;
}
.hero-card:hover {
  background: rgba(255, 255, 255, 0.15);
}
.hero-card-icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.hero-card h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.hero-card p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

/* ─── SECTION SHELL ─── */
section {
  padding: 80px 24px;
}

/* ─── PROBLEM / GUIDE STRIP ─── */
.problem-strip {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 24px;
}
.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.problem-card {
  text-align: center;
  padding: 24px;
}
.problem-icon {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}
.problem-card h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.problem-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── COST TABLE ─── */
.table-section {
  background: var(--white);
}
.cost-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.cost-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 580px;
}
.cost-table thead tr {
  background: var(--green);
  color: #fff;
}
.cost-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.4px;
  white-space: nowrap;
}
.cost-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.cost-table tbody tr:last-child {
  border-bottom: none;
}
.cost-table tbody tr:hover {
  background: var(--green-light);
}
.cost-table td {
  padding: 15px 20px;
  color: var(--text-muted);
  vertical-align: middle;
}
.cost-table td:first-child {
  font-weight: 600;
  color: var(--text);
}
.cost-table .highlight-row {
  background: var(--green-light);
}
.cost-table .highlight-row td {
  color: var(--green-dark);
  font-weight: 700;
}
.cost-table .highlight-row td:first-child {
  color: var(--green);
}
.saving-badge {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-left: 8px;
  vertical-align: middle;
}
.table-note {
  font-size: 12.5px;
  color: var(--text-light);
  margin-top: 14px;
  font-style: italic;
}

/* ─── HOW IT WORKS ─── */
.how-section {
  background: var(--cream);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.how-grid::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--green-mid);
  z-index: 0;
}
.how-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px;
  height: 72px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  margin: 0 auto 20px;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--green-mid);
}
.how-step h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.how-step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── TESTIMONIALS CAROUSEL ─── */
.testi-section {
  background: var(--white);
}
.testi-carousel {
  position: relative;
  overflow: hidden;
}
.testi-track {
  display: flex;
  transition: transform 0.8s ease;
}
.testi-card {
  min-width: 100%;
  padding: 48px 40px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testi-quote {
  font-family: "Playfair Display", serif;
  font-size: clamp(17px, 2vw, 22px);
  color: var(--text);
  line-height: 1.6;
  position: relative;
  padding-left: 32px;
}
.testi-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 64px;
  color: var(--green-mid);
  font-family: "Playfair Display", serif;
  line-height: 1;
}
.testi-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.testi-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}
.testi-role {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}
.testi-badge {
  margin-left: auto;
  background: var(--green-light);
  color: var(--green);
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  white-space: nowrap;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
  border: none;
}
.dot.active {
  background: var(--green);
  width: 22px;
  border-radius: 4px;
}
.carousel-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 20px;
}
.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.carousel-btn:hover {
  border-color: var(--green);
  background: var(--green-light);
  color: var(--green);
}

/* ─── MEDIA CAROUSEL ─── */
.media-section {
  background: var(--cream);
}
.media-track-wrap {
  position: relative;
  overflow: hidden;
}
.media-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
}
.media-card {
  min-width: calc(33.333% - 16px);
  flex: 0 0 calc(33.333% - 16px);
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.media-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.media-card:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}
.media-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  overflow: hidden;
}
.media-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.media-body {
  padding: 20px;
}
.media-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--green);
  margin-bottom: 8px;
}
.media-card h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}
.media-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}
.media-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

/* ─── LEADERSHIP ─── */
.leader-section {
  background: var(--white);
}
.leader-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 16px;
}
.leader-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--green-mid);
  box-shadow: var(--shadow-lg);
}
.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.leader-name {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: var(--text);
  margin-bottom: 4px;
}
.leader-role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.leader-bio {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.leader-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s, transform 0.2s;
}
.leader-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  padding: 72px 24px;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 16px;
  color: #fff;
}
.cta-banner p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  background: #fff;
  color: var(--green);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  transition: background 0.2s;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ─── SUPPORTERS ─── */
.supporters {
  background: var(--white);
  padding: 48px 24px;
  text-align: center;
}
.supporters p {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 24px;
  font-weight: 600;
}
.supporter-logos {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.supporter-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.supporter-logo-link:hover {
  opacity: 1;
}
.supporter-logo-link img {
  height: 48px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
  filter: grayscale(40%);
  transition: filter 0.2s;
}
.supporter-logo-link:hover img {
  filter: grayscale(0%);
}
.supporter-fallback {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 50px;
}

/* ─── WHAT SECTION GRIDS ─── */
.what-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.what-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-cards {
    grid-template-columns: 1fr 1fr;
  }
  .problem-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .how-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .how-grid::before {
    display: none;
  }
  .media-card {
    min-width: calc(50% - 12px);
    flex: 0 0 calc(50% - 12px);
  }
  .what-images {
    grid-template-columns: 1fr 1fr;
  }
  .what-cards {
    grid-template-columns: 1fr;
  }
  .leader-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 520px;
    margin: 16px auto 0;
    text-align: center;
  }
  .leader-photo {
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: 30px;
  }
  .hero-cards {
    grid-template-columns: 1fr;
  }
  .how-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi-card {
    padding: 32px 22px;
  }
  .media-card {
    min-width: 100%;
    flex: 0 0 100%;
  }
  .what-images {
    grid-template-columns: 1fr;
  }
  .what-cards {
    grid-template-columns: 1fr;
  }
  section {
    padding: 56px 16px;
  }
  .section-inner {
    overflow-x: hidden;
  }
  .cost-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
