:root {
  --primary-green: #1fa35b;
  --deep-green: #147a42;
  --fresh-green: #6dcc8b;
  --lime-accent: #a7db66;
  --soft-mint: #eaf8ef;
  --white: #ffffff;
  --background-gray: #f5f8f6;
  --dark-text: #163020;
  --muted-text: #5b6e62;
  --border: #d8e8dd;
  --accent-gold: #f0c75e;
  --card-shadow: 0 20px 40px rgba(20, 122, 66, 0.12);
  --hero-overlay: linear-gradient(
    130deg,
    rgba(22, 48, 32, 0.95),
    rgba(20, 122, 66, 0.86) 55%,
    rgba(109, 204, 139, 0.8)
  );
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--dark-text);
  background-color: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  font-family: "Plus Jakarta Sans", "Poppins", sans-serif;
  line-height: 1.2;
}

p {
  margin: 0 0 1rem;
  color: var(--muted-text);
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3.5rem 0;
}

.section-title {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  color: var(--dark-text);
}

.section-eyebrow {
  color: var(--deep-green);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  transition: all 0.25s ease;
  font-family: inherit;
}

.btn-primary {
  background: var(--primary-green);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(31, 163, 91, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--deep-green);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  border-color: var(--border);
  color: var(--deep-green);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--deep-green);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.top-nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.brand-logo img {
  width: 192px;
  height: auto;
}

.nav-list {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.nav-link {
  font-weight: 600;
  color: var(--dark-text);
  padding: 0.45rem 0.65rem;
  border-radius: 0.4rem;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: var(--deep-green);
  background: var(--soft-mint);
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.4rem;
}

.menu-btn span {
  width: 1.5rem;
  height: 2px;
  background: var(--dark-text);
  border-radius: 999px;
  transition: all 0.3s ease;
}

.hero {
  color: var(--white);
  background: var(--hero-overlay),
    url("https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  align-items: center;
  min-height: 680px;
  padding: 3.25rem 0;
}

.hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 55ch;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1rem;
  margin-top: 1.5rem;
  max-width: 510px;
}

.quote-card {
  border-radius: 1.1rem;
  background: var(--white);
  color: var(--dark-text);
  padding: 1.4rem;
  box-shadow: var(--card-shadow);
}

.quote-card h3 {
  margin-bottom: 0.4rem;
}

.grid-form {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-form .full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--dark-text);
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  padding: 0.72rem 0.85rem;
  font: inherit;
  color: var(--dark-text);
  background: var(--white);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.menu-btn:focus-visible,
.btn:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(31, 163, 91, 0.33);
  outline-offset: 2px;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-row input {
  width: auto;
  margin-top: 0.35rem;
}

.form-error {
  color: #bb1f33;
  font-size: 0.82rem;
  min-height: 1.1rem;
}

.form-success {
  margin-top: 0.8rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.6rem;
  background: var(--soft-mint);
  border: 1px solid var(--fresh-green);
  color: var(--deep-green);
  display: none;
}

.form-success.show {
  display: block;
}

.highlights-bar {
  background: var(--soft-mint);
  border-block: 1px solid var(--border);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.highlight-dot {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: var(--primary-green);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: 0 14px 24px rgba(22, 48, 32, 0.05);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(20, 122, 66, 0.15);
}

.icon-pill {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 0.6rem;
  background: var(--soft-mint);
  color: var(--deep-green);
  margin-bottom: 0.8rem;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: center;
}

.image-card {
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: var(--card-shadow);
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.about-overview-row {
  align-items: stretch;
}

.about-overview-image {
  height: 100%;
}

.about-overview-image img {
  min-height: 0;
}

.list-check li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--deep-green);
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-step {
  padding: 1rem;
  border-radius: 1rem;
  background: var(--soft-mint);
  border: 1px solid var(--border);
}

.step-number {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--primary-green);
  color: var(--white);
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.stats {
  background: linear-gradient(140deg, #1fa35b, #147a42);
  color: var(--white);
}

.stats .section-title,
.stats p {
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0.9rem;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.09);
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
}

.testimonial-meta {
  margin-top: 0.9rem;
  font-weight: 600;
  color: var(--deep-green);
}

.faq-wrap {
  max-width: 860px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--white);
}

.faq-trigger {
  width: 100%;
  border: 0;
  text-align: left;
  font: inherit;
  font-weight: 700;
  color: var(--dark-text);
  background: var(--white);
  padding: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-panel p {
  padding: 0 1rem 1rem;
}

.faq-item.open .faq-panel {
  max-height: 230px;
}

.faq-item.open .faq-trigger .sign {
  transform: rotate(45deg);
}

.cta {
  background: var(--soft-mint);
}

.cta-box {
  background: linear-gradient(140deg, var(--deep-green), #1f8f50);
  color: var(--white);
  border-radius: 1.2rem;
  padding: clamp(1.4rem, 4vw, 2.6rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-box h2,
.cta-box p {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.inner-hero {
  padding: 4.8rem 0;
  color: var(--white);
  background: linear-gradient(110deg, rgba(22, 48, 32, 0.9), rgba(20, 122, 66, 0.78)),
    url("https://images.unsplash.com/photo-1511919884226-fd3cad34687c?auto=format&fit=crop&w=1500&q=80")
      center/cover no-repeat;
}

.breadcrumbs {
  display: flex;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.support-note {
  padding: 1rem;
  border-left: 4px solid var(--primary-green);
  background: var(--soft-mint);
  border-radius: 0.65rem;
}

.policy-layout h2 {
  margin-top: 2rem;
}

.site-footer {
  background: #10261a;
  color: rgba(255, 255, 255, 0.9);
  padding: 4rem 0 1.3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.footer-title {
  color: var(--white);
  margin-bottom: 0.85rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--lime-accent);
}

.social-row {
  display: flex;
  gap: 0.65rem;
}

.social-chip {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 1rem;
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.52s ease, transform 0.52s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .nav-shell {
    position: fixed;
    inset: 78px 0 auto 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0.8rem 4%;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
  }

  .nav-shell.open {
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-btn {
    display: inline-flex;
  }

  .header-actions .btn {
    display: none;
  }

  .hero-wrap,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .process-grid,
  .testimonial-grid,
  .stats-grid,
  .highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .section {
    padding: 3.9rem 0;
  }

  .grid-form,
  .cards-grid,
  .process-grid,
  .testimonial-grid,
  .stats-grid,
  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .hero-wrap {
    min-height: 1px;
    padding: 2rem 0 2.5rem;
  }

  .top-nav {
    min-height: 70px;
  }

  .brand-logo img {
    width: 160px;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}
