* {
  box-sizing: border-box;
}

:root {
  --green-900: #1b2f24;
  --green-700: #2d4a39;
  --green-500: #3e6a50;
  --leaf: #5a8f6a;
  --sand: #f4efe6;
  --stone: #e7dfd1;
  --ink: #1c1c1c;
  --white: #ffffff;
  --accent: #7ab37c;
  --shadow: 0 12px 30px rgba(27, 47, 36, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  background: var(--green-700);
  color: var(--white);
  border: 2px solid transparent;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--green-900);
}

.btn.secondary {
  background: transparent;
  color: var(--green-700);
  border-color: var(--green-700);
}

.btn.ghost {
  background: transparent;
  color: var(--green-700);
  border: 1px solid var(--stone);
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--stone);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--green-900);
  letter-spacing: 0.2px;
}

.logo span {
  font-size: 1.1rem;
}

.menu-toggle {
  background: var(--green-700);
  color: var(--white);
  border: none;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  font-weight: 600;
}

.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--stone);
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1.5rem 2rem;
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: flex;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-weight: 600;
}

.nav-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

main {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2.5rem 0 4rem;
}

section {
  background: var(--white);
  border-radius: 24px;
  padding: 2.2rem;
  box-shadow: var(--shadow);
}

.hero {
  background: linear-gradient(130deg, #ffffff, #eaf1e8);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  margin: 0;
  color: var(--green-900);
}

.hero p {
  margin: 0;
  font-size: 1.05rem;
}

.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  background: var(--stone);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature-card {
  background: var(--sand);
  border-radius: 18px;
  padding: 1.2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-card img {
  width: 40px;
  height: 40px;
}

.stats-bar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  background: var(--sand);
  border-radius: 18px;
  padding: 1.2rem;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--green-900);
}

.quote-block {
  background: var(--green-900);
  color: var(--white);
  padding: 2rem;
  border-radius: 20px;
}

.quote-block p {
  margin: 0;
  font-size: 1.1rem;
}

.case-grid,
.service-grid,
.team-grid,
.value-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.card {
  background: var(--sand);
  padding: 1.4rem;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.card strong {
  color: var(--green-900);
}

.tag {
  display: inline-flex;
  background: var(--green-700);
  color: var(--white);
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  font-size: 0.85rem;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-column {
  background: var(--sand);
  padding: 1.4rem;
  border-radius: 18px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background: var(--sand);
  border-radius: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 1rem 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-answer {
  display: none;
  padding: 0 1.2rem 1.2rem;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.cta-panel {
  background: linear-gradient(120deg, #fef7ea, #e3efe5);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.site-footer {
  background: var(--green-900);
  color: var(--white);
  padding: 2.5rem 0 3rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 1.2rem;
  border-radius: 16px;
  width: min(920px, 92%);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 80;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 16, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 90;
}

.modal.is-visible {
  display: flex;
}

.modal-content {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  width: min(620px, 92%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--sand);
  padding: 0.8rem 1rem;
  border-radius: 12px;
}

.toggle-button {
  border: none;
  background: var(--green-700);
  color: var(--white);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
}

.toggle-button[aria-pressed="false"] {
  background: var(--stone);
  color: var(--green-900);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.divider {
  width: 100%;
  height: 10px;
  background: url("../assets/divider.svg") no-repeat center;
  background-size: cover;
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .nav-links {
    flex-direction: row;
    gap: 1.4rem;
  }

  .hero-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero-copy {
    flex: 1.1;
  }

  .hero-highlights {
    flex: 0.9;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .feature-grid,
  .service-grid,
  .case-grid,
  .team-grid,
  .value-grid,
  .stats-bar,
  .comparison,
  .steps,
  .contact-grid {
    flex-direction: row;
  }

  .feature-card,
  .card,
  .comparison-column,
  .stat,
  .step,
  .contact-card {
    flex: 1;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
