* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #0d1a14;
  --mist: #f4f7f4;
  --sage: #dce8df;
  --leaf: #1f6b4f;
  --sand: #f1ebe2;
  --steel: #1d2c2a;
  --accent: #f2b04a;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 6vw 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

nav a {
  font-size: 0.95rem;
  color: var(--steel);
}

.nav-cta {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--leaf);
  color: var(--leaf);
  font-weight: 600;
}

.hero-tag {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.85rem;
  color: var(--steel);
}

.hero-tag span {
  background: var(--mist);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.split-section {
  display: flex;
  flex-direction: column;
  padding: 4rem 6vw;
  gap: 2rem;
}

.split-section.reverse .split-inner {
  flex-direction: column-reverse;
}

.split-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split-content,
.split-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.split-visual {
  justify-content: center;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.16rem;
  color: var(--leaf);
}

h1 {
  font-size: clamp(2.3rem, 3vw, 3.4rem);
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.7rem, 2.2vw, 2.5rem);
  line-height: 1.3;
}

p {
  max-width: 42rem;
  color: #1e2b27;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: none;
  background: var(--leaf);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--leaf);
  color: var(--leaf);
}

.link-cta {
  font-weight: 600;
  color: var(--leaf);
  text-decoration: underline;
}

.bg-mist {
  background: var(--mist);
}

.bg-sand {
  background: var(--sand);
}

.bg-sage {
  background: var(--sage);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-card {
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e2e8e2;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.4rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e2e8e2;
}

.price {
  font-weight: 700;
  color: var(--steel);
}

.sticky-box {
  position: sticky;
  top: 1.5rem;
  padding: 1.5rem;
  border-radius: 18px;
  background: var(--leaf);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sticky-box .btn {
  background: #fff;
  color: var(--leaf);
}

.testimonial {
  padding: 1.6rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e3e5e3;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.6rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e3e5e3;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid #cfd8d1;
  font-size: 1rem;
  font-family: inherit;
}

.form-note {
  font-size: 0.85rem;
  color: #465750;
}

footer {
  padding: 2rem 6vw 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border-top: 1px solid #e6ebe6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.9rem;
}

.footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #e2e8e2;
  border-radius: 18px;
  padding: 1rem 1.5rem;
  width: min(90vw, 520px);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 99;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1;
}

.two-col-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.inline-image {
  border-radius: 20px;
  border: 1px solid #e2e8e2;
  background: #fff;
  padding: 1rem;
}

@media (min-width: 860px) {
  header {
    padding: 2rem 8vw 0;
  }

  .split-section {
    padding: 5rem 8vw;
  }

  .split-inner {
    flex-direction: row;
    gap: 3rem;
  }

  .split-section.reverse .split-inner {
    flex-direction: row-reverse;
  }

  .stats {
    flex-direction: row;
  }

  .stat-card {
    flex: 1;
  }

  .two-col-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .two-col-list li {
    width: 48%;
  }
}
