* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2a24;
  background: #f7f2ea;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  background: #f7f2ea;
  border-bottom: 1px solid #e3d7c8;
  z-index: 10;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-mark {
  width: 36px;
  height: 36px;
}

.site-nav {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-toggle {
  background: #2f5b4c;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.nav-list {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(31, 42, 36, 0.1);
  gap: 8px;
  min-width: 200px;
}

.nav-list.open {
  display: flex;
}

.nav-list a {
  padding: 8px 10px;
  border-radius: 6px;
}

.nav-list a:hover,
.nav-list a:focus {
  background: #f0e7dc;
}

.hero {
  padding: 64px 0;
  background: #f7f2ea;
}

.hero.compact {
  padding: 48px 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-text h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.75rem;
  color: #2f5b4c;
  margin-bottom: 12px;
  font-weight: 600;
}

.hero-panel {
  display: flex;
  justify-content: flex-start;
}

.panel-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e3d7c8;
  box-shadow: 0 12px 30px rgba(47, 91, 76, 0.08);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: #2f5b4c;
  color: #fff;
}

.button.secondary {
  background: #fff;
  color: #2f5b4c;
  border-color: #2f5b4c;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(31, 42, 36, 0.12);
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: #f0e7dc;
}

.section.caa,
.section.cta {
  background: #2f5b4c;
  color: #fff;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.icon-list,
.card-row,
.feature-row,
.knowledge,
.case-grid,
.team-grid,
.values-grid,
.process-row,
.comparison,
.stats-inline,
.testimonials,
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.icon-item,
.service-card,
.insight-card,
.knowledge-card,
.case-card,
.team-card,
.value-item,
.feature-card,
.process-card,
.comparison-col,
.benefit-item {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #e3d7c8;
}

.icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e7d9c9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.checklist {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checklist li::before {
  content: "•";
  color: #2f5b4c;
  margin-right: 8px;
}

.insights,
.knowledge {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card .price {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  color: #2f5b4c;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2f5b4c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-item {
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #e3d7c8;
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2f5b4c;
}

.value-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #fff;
  padding: 24px;
  border-left: 4px solid #2f5b4c;
  border-radius: 10px;
  font-style: italic;
}

.testimonial cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  color: #5a6d62;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #e3d7c8;
  border-radius: 10px;
  background: #fff;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 16px;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 16px 16px;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.comparison-col.highlight {
  border-color: #2f5b4c;
  background: #f6efe6;
}

.comparison ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.milestones,
.stats-inline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.milestone span {
  font-weight: 700;
  color: #2f5b4c;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list span {
  background: #ffffff;
  border: 1px solid #e3d7c8;
  padding: 8px 14px;
  border-radius: 999px;
}

.info-block,
.legal {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid #e3d7c8;
}

.legal h2 {
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 18px;
  list-style: disc;
}

.site-footer {
  padding: 48px 0 20px;
  background: #1f2a24;
  color: #f7f2ea;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom {
  margin-top: 24px;
  border-top: 1px solid rgba(247, 242, 234, 0.2);
  padding-top: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border: 1px solid #e3d7c8;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(31, 42, 36, 0.15);
  display: none;
  z-index: 20;
}

.cookie-banner.show {
  display: block;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 42, 36, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 30;
}

.cookie-modal.open {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  max-width: 480px;
  width: 100%;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}

.icon-button {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav-list {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 8px;
    background: none;
    box-shadow: none;
    padding: 0;
    min-width: 0;
  }

  .nav-toggle {
    display: none;
  }

  .hero-content,
  .split {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-text,
  .hero-panel {
    flex: 1;
  }

  .icon-list,
  .card-row,
  .feature-row,
  .knowledge,
  .case-grid,
  .team-grid,
  .values-grid,
  .process-row,
  .comparison,
  .stats-inline,
  .benefit-list,
  .testimonials {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .icon-item,
  .service-card,
  .insight-card,
  .knowledge-card,
  .case-card,
  .team-card,
  .value-item,
  .feature-card,
  .process-card,
  .comparison-col,
  .benefit-item {
    flex: 1 1 220px;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
