* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d1c1a;
  --muted: #5e5a55;
  --accent: #3562ff;
  --accent-dark: #2246c7;
  --sand: #f5f1ea;
  --rose: #f9e6e0;
  --mint: #e7f1ef;
  --sun: #fff4cc;
  --line: #e2dbd1;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fcfbf9;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

header {
  padding: 24px 0 12px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.hero {
  background: var(--sand);
  padding: 40px 0 24px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.button.alt {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.button.light {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.pill {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  font-size: 0.85rem;
  color: var(--muted);
  width: fit-content;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.section {
  padding: 36px 0;
}

.section.rose {
  background: var(--rose);
}

.section.mint {
  background: var(--mint);
}

.section.sun {
  background: var(--sun);
}

.section.pattern {
  background: url("pattern.svg") center / cover no-repeat, var(--sand);
}

.section h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.section p {
  color: var(--muted);
}

.story {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.story strong {
  color: var(--ink);
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.stat span {
  font-size: 1.6rem;
  font-weight: 700;
}

.trust-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.trust-card img {
  width: 64px;
}

.quote {
  font-style: italic;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step span {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.price small {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
  background: #fff;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.inline-cta {
  font-weight: 600;
}

.cta-banner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

footer {
  padding: 24px 0 80px;
  background: #111;
  color: #f6f3ef;
}

footer a {
  color: #f6f3ef;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 20;
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 84px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 15;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.muted {
  color: var(--muted);
}

.legal {
  font-size: 0.9rem;
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlight {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--line);
}

.contact-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

@media (min-width: 780px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav-top {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-copy,
  .hero-media {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .stat-row,
  .trust-grid,
  .card-row,
  .footer-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat,
  .trust-card,
  .card,
  .footer-grid > div {
    flex: 1 1 220px;
  }

  .cta-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    width: 360px;
  }

  .sticky-cta {
    left: auto;
    right: 24px;
    width: 360px;
  }
}
