:root {
  color-scheme: light;
  --bg: #f7f6f2;
  --ink: #1c1f1b;
  --muted: #5d665c;
  --accent: #1c6b4d;
  --accent-2: #0f3a2d;
  --soft: #e7ede4;
  --sand: #f0ece3;
  --sun: #f3d27b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: var(--accent);
  text-decoration: none;
}

header {
  background: #ffffff;
  border-bottom: 1px solid var(--soft);
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 6vw;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(140deg, #1c6b4d, #5fb082);
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--ink);
}

main {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding: 0 6vw 5rem;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem 0;
}

.section.sand {
  background: var(--sand);
  border-radius: 28px;
  padding: 3rem;
}

.section.soft {
  background: var(--soft);
  border-radius: 28px;
  padding: 3rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split > div {
  flex: 1;
}

.hero {
  padding-top: 2.5rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.kicker {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn-ghost {
  background: #ffffff;
  border: 1px solid var(--soft);
  color: var(--ink);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: #fff;
  padding: 1.8rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 12px 30px rgba(16, 38, 28, 0.08);
}

.card img {
  border-radius: 14px;
  height: 180px;
  object-fit: cover;
}

.price-tag {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-2);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.timeline-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--sun);
  margin-top: 0.4rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat {
  background: #fff;
  padding: 1.2rem 1.6rem;
  border-radius: 16px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sticky-cta {
  position: sticky;
  top: 1.5rem;
  align-self: flex-start;
  background: #fff;
  padding: 1.6rem;
  border-radius: 18px;
  border: 1px solid var(--soft);
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: #fff;
  padding: 2.2rem;
  border-radius: 24px;
}

.service-choice {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.service-choice button {
  text-align: left;
  border-radius: 14px;
  border: 1px solid var(--soft);
  background: #fff;
  padding: 1rem;
  cursor: pointer;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 0.7rem;
  border-radius: 12px;
  border: 1px solid #cdd6cc;
  font-family: inherit;
}

footer {
  padding: 3rem 6vw;
  background: #111a15;
  color: #f4f3ef;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

footer a {
  color: #f4f3ef;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  max-width: 320px;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--soft);
  display: none;
  gap: 0.8rem;
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.legal-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 920px;
  margin: 0 auto;
  padding: 3rem 6vw;
}

.legal-wrap h1 {
  margin-bottom: 0;
}

.contact-card {
  background: #fff;
  padding: 2rem;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .service-row {
    flex-direction: row;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }
}
