:root {
  --accent: #2d6a4f;
  --accent-hover: #40916c;
  --background: #f9f9f9;
  --header-bg: #ffffff;
  --text-dark: #1b4332;
  --text-light: #6c757d;
  --border-light: #e0e0e0;
  --font-primary: 'Inter', 'Segoe UI', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --radius: 12px;
}

/* HERO */

.hero-section {
  width: 100%;
  min-height: calc(100vh - 200px);
  margin-top: 80px;
  background-color: #f0fdf4;
  background-image: url("data:image/svg+xml,%3Csvg width='160' height='80' viewBox='0 0 160 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%232d6a4f' fill-opacity='0.04' d='M0 40 Q20 0 40 40 T80 40 T120 40 T160 40 V80 H0 Z'/%3E%3C/svg%3E");
  background-repeat: repeat;
  padding: clamp(40px, 6vw, 70px) clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  /* min-height: clamp(520px, calc(100vh - 200px), 780px); */
}

.hero-layout {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 42px;
  align-items: center;
}

.hero-content {
  width: 100%;
  max-width: 620px;
  position: relative;
  z-index: 1;
}

/* Highlight the keyword in the headline */

.hero-content h1 span {
  color: var(--accent);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(45, 106, 79, 0.1);
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  margin-bottom: 20px;
  color: var(--text-dark);
  font-family: var(--font-heading);
}

.hero-text {
  font-size: 18px;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--text-light);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-buttons a {
  text-decoration: none;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 13px 22px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-secondary:hover {
  background-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.hero-trust {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--text-light);
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-side {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.hero-card {
  background-color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(45, 106, 79, 0.12);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.hero-card .material-symbols-outlined {
  display: inline-block;
  font-size: 34px;
  color: var(--accent);
  margin-bottom: 12px;
}

.hero-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-family: var(--font-heading);
}

.hero-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
}

/* TRUST STRIP */

.trust-strip {
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 26px 20px;
}

.trust-item {
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.trust-item span {
  font-size: 14px;
  color: var(--text-light);
}

/* CATEGORY SECTION */

.index-category {
  padding: 85px 0;
  background: #fff;
}

.index-category h2 {
  text-align: center;
  font-size: 34px;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-subtext {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
  font-size: 17px;
  color: var(--text-light);
}

.category-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(200px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.category-link {
  display: block;
  text-decoration: none;
}

.index-category-box {
  height: 100%;
  background-color: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(45,106,79,0.15);
  padding: 28px 24px;
  text-align: left;
  box-shadow:
    0 6px 18px rgba(0,0,0,0.04),
    0 1px 3px rgba(0,0,0,0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.index-category-box:hover {
  transform: translateY(-8px);
  box-shadow:
    0 14px 40px rgba(0,0,0,0.08),
    0 3px 8px rgba(0,0,0,0.06);
  border-color: var(--accent);
}

.index-category-box .material-symbols-outlined {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 14px;
  background: rgba(45,106,79,0.08);
  padding: 10px;
  border-radius: 8px;
}

.index-category-box h3 {
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-family: var(--font-heading);
}

.index-category-box p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-light);
}

/* WHY US */

.why-us {
  background-color: var(--background);
  padding: 85px 0;
  text-align: center;
}

.why-us h2 {
  font-size: 34px;
  margin-bottom: 10px;
  color: var(--accent);
  font-family: var(--font-heading);
}

.why-us .why-subtext {
  font-size: 18px;
  color: var(--text-light);
  max-width: 900px;
  margin: 0 auto 48px;
}

.why-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(200px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.why-feature {
  width: 100%;
  background-color: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.why-feature .material-symbols-outlined {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 12px;
}

.why-feature h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-family: var(--font-heading);
}

.why-feature p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
}

/* FOUNDER QUOTE */

.founder-quote {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
  padding: 80px 0;
}

.founder-quote-card {
  max-width: 850px;
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid rgba(45, 106, 79, 0.12);
  border-radius: 20px;
  padding: 42px 32px;
  text-align: center;
  box-shadow: 0 10px 32px rgba(0,0,0,0.05);
}

.quote-mark {
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.quote-text {
  font-size: 24px;
  line-height: 1.6;
  color: var(--text-dark);
  max-width: 760px;
  margin: 0 auto 16px;
}

.quote-author {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
}

/* FINAL CTA */

.final-cta {
  background-color: var(--accent);
  padding: 80px 0;
}

.final-cta-inner {
  text-align: center;
  max-width: 850px;
}

.final-cta h2 {
  color: #fff;
  font-size: 34px;
  margin-bottom: 14px;
}

.final-cta p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.final-cta-btn {
  display: inline-block;
  background-color: #fff;
  color: var(--accent);
  padding: 13px 24px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s ease;
}

.final-cta-btn:hover {
  background-color: #f1f1f1;
  color: var(--accent-hover);
  transform: translateY(-2px);
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .hero-section {
    min-height: auto;
    padding: 40px 24px 40px;
  }

  .hero-layout {
    gap: 28px;
  }

  .hero-content h1 {
    font-size: clamp(34px, 4vw, 50px);
    margin-bottom: 16px;
  }

  .hero-text {
    font-size: 17px;
    margin-bottom: 22px;
  }

  .hero-trust {
    margin-top: 18px;
  }

  .hero-side {
    gap: 18px;
  }

  .category-grid {
    grid-template-columns: repeat(3, minmax(200px, 1fr));
  }
}

@media (max-width: 1100px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    align-items: center;
    text-align: center;
  }

  .hero-trust span {
    justify-content: center;
  }

  .hero-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 28px 0 42px;
    min-height: auto;
    align-items: flex-start;
  }

  .hero-layout {
    gap: 24px;
  }

  .hero-content h1 {
    font-size: clamp(32px, 8vw, 42px);
    line-height: 1.12;
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-trust span {
    justify-content: center;
  }

  .hero-side {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 22px 18px;
  }

  .trust-strip-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .index-category,
  .why-us,
  .founder-quote,
  .final-cta {
    padding: 60px 0;
  }

  .index-category h2,
  .why-us h2,
  .final-cta h2 {
    font-size: 28px;
  }

  .section-subtext,
  .why-us .why-subtext,
  .final-cta p {
    font-size: 16px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .index-category-box {
    text-align: center;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 340px;
  }

  .why-feature {
    width: 100%;
    padding: 24px 18px;
  }

  .why-feature .material-symbols-outlined {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .why-feature h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .why-feature p {
    font-size: 15px;
    line-height: 1.6;
  }

  .founder-quote-card {
    padding: 32px 20px;
  }

  .quote-text {
    font-size: 20px;
  }
}