:root {
  color-scheme: light;
  --bg: #f9f6f0;
  --text: #243126;
  --muted: #516652;
  --accent: #2f6b3f;
  --accent-light: #8cc68d;
  --warm: #f2e2c6;
  --dark: #1c2a21;
  --surface: #ffffff;
  --shadow: 0 24px 60px rgba(35, 52, 35, 0.12);
  --radius: 24px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow: hidden;
}

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 20px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px 0 60px;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-copy {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 40px;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--warm);
  transform: rotate(8deg);
  z-index: -1;
}

.hero-visual {
  border-radius: 30px;
  overflow: hidden;
  transform: translateX(-6px);
  box-shadow: var(--shadow);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #e7f3e8;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
}

.headline {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.1;
  margin: 12px 0;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 20px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border: none;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.section {
  padding: 56px 0;
}

.offset-block {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}

.offset-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.offset-card.shift {
  transform: translateX(18px);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric {
  background: #f0f6ef;
  padding: 20px;
  border-radius: 20px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--surface);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card img {
  border-radius: 18px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: #f7faf4;
  border-radius: 18px;
}

.timeline-step span {
  font-weight: 700;
  color: var(--accent);
}

.testimonial {
  background: var(--dark);
  color: #f7f8f4;
  padding: 26px;
  border-radius: 22px;
}

.section-highlight {
  background: var(--warm);
  border-radius: 32px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.section-highlight img {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 200px;
  opacity: 0.6;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 6;
  box-shadow: 0 18px 36px rgba(27, 65, 36, 0.25);
}

.footer {
  padding: 36px 0 60px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: var(--surface);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

.form-card {
  background: #f6faf1;
  border-radius: 24px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card label {
  font-size: 14px;
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfdccd;
  background: #fff;
  font-family: inherit;
}

.form-card button {
  align-self: flex-start;
  margin-top: 8px;
}

.contact-panel {
  background: var(--surface);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #1c2a21;
  color: #f3f7f2;
  padding: 18px 20px;
  border-radius: 18px;
  max-width: 320px;
  z-index: 10;
  display: none;
}

.cookie-banner p {
  margin: 0 0 12px;
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #7ac77b;
  color: #1a2a1e;
}

.cookie-reject {
  background: transparent;
  color: #f3f7f2;
  border: 1px solid #7ac77b;
}

@media (min-width: 860px) {
  .hero-layout {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-copy {
    flex: 1.1;
  }

  .hero-visual {
    flex: 1;
    transform: translateX(18px);
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row,
  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .service-card {
    flex: 1 1 260px;
  }

  .metrics {
    flex-direction: row;
  }

  .timeline {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .timeline-step {
    flex: 1 1 260px;
  }
}
