* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f3ef;
  --ink: #171717;
  --muted: #5b5b5b;
  --accent: #1d5d57;
  --accent-soft: #e5f2ef;
  --peach: #f7d9c9;
  --sand: #fff7f1;
  --plum: #322c39;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

.hero {
  padding: 48px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: 8vw;
  top: 40px;
  width: 120px;
  height: 120px;
  background: var(--peach);
  border-radius: 32px;
  z-index: 0;
  transform: rotate(12deg);
}

.hero-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: 1.1;
  font-weight: 600;
}

.hero-subtitle {
  font-size: 1.1rem;
  max-width: 520px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-link {
  color: var(--accent);
  font-weight: 600;
}

.hero-media {
  display: flex;
  justify-content: flex-end;
}

.hero-media img {
  box-shadow: var(--shadow);
  transform: translateX(-10vw);
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-alt {
  background: var(--sand);
}

.section-offset {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section-offset::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 30px;
  width: 140px;
  height: 140px;
  background: var(--accent-soft);
  border-radius: 28px;
  z-index: 0;
}

.section-title {
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.two-col.reverse {
  flex-direction: column-reverse;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.story-card {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  background: var(--plum);
  color: #fff;
  padding: 16px 20px;
  border-radius: 18px;
}

.testimonial {
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.benefit-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--accent-soft);
  padding: 16px;
  border-radius: 18px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-card {
  background: #fff;
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-card strong {
  font-size: 1.6rem;
}

.form-wrap {
  background: #fff;
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d4d4d4;
  font-size: 1rem;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid #e0e0e0;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--plum);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 50;
}

.footer {
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero {
  padding: 60px 6vw 30px;
}

.page-hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 12px;
}

.page-section {
  padding: 30px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.policy {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
}

@media (min-width: 860px) {
  .nav-links {
    flex-direction: row;
    gap: 20px;
    text-align: left;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-main {
    max-width: 50%;
  }

  .hero-media img {
    transform: translateX(-4vw);
    max-width: 520px;
  }

  .two-col {
    flex-direction: row;
    align-items: center;
  }

  .two-col.reverse {
    flex-direction: row-reverse;
  }

  .story-grid {
    flex-direction: row;
  }

  .story-card {
    flex: 1;
  }

  .stat-row {
    flex-direction: row;
  }

  .testimonial {
    max-width: 360px;
  }

  .pricing {
    flex-direction: row;
  }

  .price-card {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .footer-links {
    flex-direction: row;
    gap: 18px;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 420px;
  }
}
