* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-900: #1e3d2b;
  --green-700: #225b3a;
  --green-500: #3d8c5c;
  --green-300: #7bc77a;
  --green-100: #e8f5ee;
  --sand-100: #f6f4ef;
  --text-dark: #1f2a22;
  --text-light: #ffffff;
  --shadow: 0 18px 40px rgba(21, 37, 27, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--text-dark);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: var(--sand-100);
}

.hero {
  padding: 4rem 0 3rem;
  background: var(--green-100);
}

.hero.compact {
  padding: 3rem 0;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-graphic {
  width: 100%;
  max-width: 360px;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(34, 91, 58, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--green-900);
}

.menu-toggle {
  border: 1px solid var(--green-500);
  background: transparent;
  color: var(--green-500);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
}

.nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(320px, 80%);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow);
  z-index: 60;
}

.nav.is-open {
  transform: translateX(0);
}

.nav a {
  font-weight: 600;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(25, 33, 28, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 40;
}

.nav-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--green-500);
  color: var(--text-light);
}

.button.ghost {
  border-color: var(--green-500);
  color: var(--green-500);
  background: transparent;
}

.text-button {
  background: none;
  border: none;
  color: var(--green-500);
  font-weight: 600;
  text-align: left;
  padding: 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.highlight-panel {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
}

.clean-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 1.4rem;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 72px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-card {
  background: var(--green-100);
  padding: 1.5rem;
  border-radius: 1.2rem;
}

.stat-card h3 {
  font-size: 2rem;
  color: var(--green-700);
  margin-bottom: 0.5rem;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.process-step span {
  font-weight: 700;
  color: var(--green-500);
}

.case-grid,
.service-grid,
.team-grid,
.insight-cards,
.value-list,
.direction-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.case-card,
.service-card,
.insight-card,
.value-item,
.team-card,
.cookie-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
}

.service-card .price {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--green-700);
}

.section-head {
  margin-bottom: 1.5rem;
}

.insights {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.text-link {
  color: var(--green-500);
  font-weight: 600;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial {
  background: var(--green-100);
  padding: 1.5rem;
  border-radius: 1.2rem;
}

.values {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(34, 91, 58, 0.2);
  border-radius: 1rem;
  overflow: hidden;
  background: #ffffff;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  background: #ffffff;
  border: none;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.2rem;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.cta {
  background: var(--green-700);
  color: var(--text-light);
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cta .button.primary {
  background: #ffffff;
  color: var(--green-700);
}

.site-footer {
  background: var(--green-900);
  color: var(--text-light);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-grid a {
  color: var(--text-light);
  opacity: 0.85;
  margin-top: 0.4rem;
  display: block;
}

.footer-bottom {
  margin-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

.milestones {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.milestone {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1rem;
  align-items: center;
}

.milestone span {
  font-weight: 700;
  color: var(--green-700);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  background: #ffffff;
  padding: 1.2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.pill-list span {
  background: var(--green-100);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
}

.quote-panel {
  background: var(--green-500);
  color: var(--text-light);
  padding: 2rem;
  border-radius: 1.4rem;
  box-shadow: var(--shadow);
}

.team-card {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--green-300);
  color: var(--green-900);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.comparison-row {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  background: #ffffff;
  padding: 0.8rem 1rem;
  border-radius: 0.9rem;
  box-shadow: var(--shadow);
}

.comparison-title {
  flex: 1.4;
  font-weight: 600;
}

.comparison-col {
  flex: 1;
  text-align: center;
  font-weight: 600;
}

.info-block {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(980px, 92%);
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 100;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 26, 22, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 110;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  width: min(540px, 100%);
  border-radius: 1.2rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.icon-button {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cookie-option {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.legal h2 {
  margin: 1.6rem 0 0.6rem;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav {
    position: static;
    height: auto;
    width: auto;
    flex-direction: row;
    padding: 0;
    transform: none;
    box-shadow: none;
    background: transparent;
  }

  .nav-overlay {
    display: none;
  }

  .hero-inner,
  .split,
  .values,
  .insights,
  .cta-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-text,
  .hero-graphic {
    flex: 1;
  }

  .stats,
  .case-grid,
  .service-grid,
  .team-grid,
  .insight-cards,
  .value-list,
  .direction-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat-card,
  .case-card,
  .service-card,
  .team-card,
  .insight-card,
  .value-item,
  .cookie-card,
  .direction-grid > div {
    flex: 1;
    min-width: 220px;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
