:root {
  --ink: #1f2428;
  --muted: #5b6670;
  --accent: #3c8f6a;
  --accent-dark: #2f6f53;
  --sand: #f6f2ec;
  --mist: #eef3f2;
  --sun: #f7e6b5;
  --rose: #f0d9d1;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 40px 6vw 80px;
}

header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px 6vw 0;
}

.brand-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--ink);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: var(--mist);
  padding: 40px;
  border-radius: 26px;
}

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

.split .pane {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split .pane .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  color: var(--muted);
}

.split .pane h1,
.split .pane h2 {
  margin: 0;
  line-height: 1.15;
}

.split .pane p {
  margin: 0;
  color: var(--muted);
}

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

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: var(--white);
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent-dark);
  color: var(--accent-dark);
}

.btn.ghost {
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--muted);
}

.section-label span {
  width: 28px;
  height: 1px;
  background: var(--muted);
}

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

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

.card h3 {
  margin: 0;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.banner {
  background: var(--sun);
  border-radius: 22px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.banner strong {
  font-size: 1.1rem;
}

.inline-media {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial {
  background: var(--white);
  border-left: 4px solid var(--accent);
  padding: 18px 20px;
  border-radius: 14px;
  color: var(--muted);
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  background: var(--sand);
  border-radius: 16px;
}

.price-row strong {
  font-size: 1.05rem;
}

.form-shell {
  background: var(--mist);
  border-radius: 22px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-shell form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 1rem;
}

footer {
  padding: 40px 6vw 60px;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer a {
  color: var(--sun);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  align-self: flex-start;
  background: var(--rose);
  padding: 16px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

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

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 10;
}

.cookie-banner.visible {
  display: flex;
}

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

.hero-visual {
  position: relative;
}

.hero-visual .overlay-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.92);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
}

@media (min-width: 900px) {
  header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

  .card-grid {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .inline-media {
    flex-direction: row;
  }

  .price-list {
    flex-direction: row;
  }

  .price-row {
    flex: 1;
  }

  .form-shell {
    flex-direction: row;
  }

  .form-shell form,
  .form-shell .form-copy {
    flex: 1;
  }
}


.bg-sand {
  background: var(--sand);
}

.bg-rose {
  background: var(--rose);
}

.bg-mist {
  background: var(--mist);
}
