* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1f2a21;
  background: #f7f5f0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: #e7ede2;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand-title {
  font-weight: 700;
  font-size: 18px;
  margin: 0;
}

.brand-subtitle {
  margin: 6px 0 0;
  font-size: 14px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 600;
}

.nav a {
  padding: 8px 0;
}

.sidebar-cta {
  margin-top: 12px;
}

.sidebar-note {
  font-size: 14px;
  color: #3b4b3f;
}

.content {
  flex: 1;
  padding: 24px 32px 80px;
}

.section {
  padding: 40px 32px;
  margin-bottom: 24px;
  background: #ffffff;
  border-radius: 24px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.section.muted {
  background: #eef2ec;
}

.hero {
  align-items: center;
}

.hero .hero-copy {
  flex: 1 1 320px;
}

.hero .hero-visual {
  flex: 1 1 280px;
}

.hero h1 {
  font-size: 36px;
  margin: 12px 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  margin: 0;
  color: #516156;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  background: #dfe8da;
  cursor: pointer;
}

.button.primary {
  background: #1f5c3f;
  color: #ffffff;
}

.button.secondary {
  background: #264738;
  color: #ffffff;
}

.button.outline {
  background: transparent;
  border-color: #1f5c3f;
  color: #1f5c3f;
}

.link-cta {
  font-weight: 600;
  text-decoration: underline;
}

.split > div {
  flex: 1 1 280px;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 280px;
}

.layered {
  align-items: center;
}

.layered-card {
  flex: 1 1 260px;
  background: #f4f1eb;
  padding: 24px;
  border-radius: 20px;
}

.layered-visual {
  flex: 1 1 320px;
  position: relative;
}

.stat {
  position: absolute;
  right: 16px;
  bottom: -20px;
  background: #1f5c3f;
  color: #ffffff;
  padding: 16px 18px;
  border-radius: 16px;
  max-width: 200px;
}

.stat-number {
  font-size: 28px;
  margin: 0 0 6px;
  font-weight: 700;
}

.list {
  padding-left: 18px;
  margin: 0;
}

.services .section-header {
  flex: 1 1 100%;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 220px;
  background: #f9f8f4;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 20px;
  font-weight: 700;
}

.process {
  justify-content: space-between;
}

.process-copy {
  flex: 1 1 220px;
}

.process-steps {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-title {
  font-weight: 700;
  margin-bottom: 4px;
}

.showcase-text {
  flex: 1 1 220px;
}

.showcase-cards {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.impact-card {
  background: #f4f1eb;
  padding: 18px;
  border-radius: 16px;
}

.testimonials {
  background: #1f5c3f;
  color: #ffffff;
  justify-content: space-between;
}

.testimonial {
  flex: 1 1 240px;
  font-style: italic;
}

.toolkit-copy {
  flex: 1 1 220px;
}

.toolkit-items {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tool {
  background: #eef2ec;
  padding: 16px;
  border-radius: 14px;
}

.consultation {
  background: #f2efe8;
}

.consultation-form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #c6d2c6;
  font-family: inherit;
  font-size: 15px;
}

.closing {
  align-items: center;
  justify-content: space-between;
}

.closing-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer {
  padding: 24px 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #2f3c33;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 3;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  display: none;
  z-index: 4;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.policy {
  line-height: 1.6;
}

.highlight {
  font-weight: 700;
}

@media (max-width: 900px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .content {
    padding: 20px;
  }

  .section {
    padding: 28px 20px;
  }

  .sticky-cta {
    position: static;
    margin: 16px 20px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}
