* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1b16;
  --soft-ink: #4a3f35;
  --accent: #c46d3b;
  --accent-dark: #8f4a24;
  --fog: #f4f0ea;
  --cream: #fff9f2;
  --line: #e4d7c8;
  --shadow: 0 20px 50px rgba(31, 27, 22, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 8vw;
  background: var(--cream);
  position: relative;
  z-index: 5;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft-ink);
}

.menu-toggle {
  border: 1px solid var(--line);
  background: transparent;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
}

.nav-panel {
  display: none;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  right: 8vw;
  top: 70px;
  background: white;
  border: 1px solid var(--line);
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.nav-panel a {
  font-size: 0.95rem;
  color: var(--soft-ink);
}

.nav-panel.is-open {
  display: flex;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 8vw 60px;
  background: linear-gradient(140deg, #fff7ec 0%, #f6ede1 100%);
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.1;
}

.hero p {
  max-width: 520px;
  color: var(--soft-ink);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.scroll-sections {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 0 8vw 80px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.section.alt {
  background: var(--fog);
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
}

.section p {
  color: var(--soft-ink);
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px dashed var(--line);
  padding-top: 18px;
}

.stat {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: var(--ink);
}

.inline-cta {
  font-weight: 600;
  color: var(--accent-dark);
  border-bottom: 1px solid var(--accent-dark);
  display: inline-flex;
  align-self: flex-start;
  padding-bottom: 2px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: white;
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 16px;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-list li {
  list-style: none;
  padding-left: 24px;
  position: relative;
}

.benefit-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 20;
}

.footer {
  margin-top: auto;
  padding: 30px 8vw 50px;
  background: #19130d;
  color: #f9efe4;
}

.footer a {
  color: #f5d9bf;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.9rem;
}

.policy-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 8vw 80px;
}

.contact-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 22px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .hero-media {
    max-width: 46%;
  }

  .split-row {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
  }

  .split-row.reverse {
    flex-direction: row-reverse;
  }

  .stats {
    max-width: 45%;
  }

  .pricing-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-card {
    flex: 1 1 220px;
  }

  .two-column {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }

  .policy-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-card {
    flex: 1 1 300px;
  }
}
