* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #101915;
  background: #f6f7f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 6vw 12px;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #4c5c55;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #4a7b63;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 6vw 70px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(74, 123, 99, 0.15);
  right: -80px;
  top: 40px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}

.hero-copy h1 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
}

.hero-copy p {
  font-size: 18px;
  color: #2c3a33;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1a2b24;
  background: #1a2b24;
  color: #f6f7f2;
  font-weight: 600;
  font-size: 14px;
  gap: 8px;
}

.btn.outline {
  background: transparent;
  color: #1a2b24;
}

.hero-visual {
  align-self: flex-end;
  max-width: 520px;
  background: #e2ebe4;
  border-radius: 24px;
  padding: 18px;
  position: relative;
}

.hero-visual img {
  border-radius: 18px;
}

.hero-tag {
  position: absolute;
  bottom: -14px;
  left: 16px;
  background: #f6f7f2;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.muted {
  background: #eef2ec;
}

.section.dark {
  background: #1a2b24;
  color: #f6f7f2;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 580px;
}

.section-header h2 {
  font-size: clamp(24px, 3vw, 36px);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  padding: 18px;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.stat strong {
  font-size: 24px;
}

.offset-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  margin-left: 6vw;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 18px;
}

.timeline-step {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #4a7b63;
  color: #f6f7f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testimonial {
  padding: 18px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.service-card .price {
  font-weight: 700;
  font-size: 18px;
  color: #2c3a33;
}

.tools {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tool-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
}

.tool-card img {
  width: 64px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 13px;
  color: #44524b;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9d3ca;
  font-size: 14px;
  background: #f9faf7;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
}

.footer {
  padding: 32px 6vw 40px;
  background: #101915;
  color: #d3dcd5;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #d3dcd5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #4a7b63;
  color: #f6f7f2;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  color: #1a2b24;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #1a2b24;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}

.cookie-actions button.primary {
  background: #1a2b24;
  color: #f6f7f2;
}

.page-inner {
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.page-hero {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight-box {
  background: #e9efe9;
  border-radius: 16px;
  padding: 20px;
}

@media (min-width: 880px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .stats {
    flex-direction: row;
  }

  .services {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 16px);
  }

  .tools {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .tool-card {
    flex: 1 1 calc(33% - 16px);
  }

  .two-col {
    flex-direction: row;
  }
}
