* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1b1a;
  --muted: #5a534d;
  --cream: #f7f2ea;
  --paper: #fffdf8;
  --accent: #b3472b;
  --accent-dark: #7f2c1a;
  --leaf: #2f5f4d;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  font-size: 16px;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 6vw;
  background: rgba(255, 253, 248, 0.9);
  position: relative;
}

.nav .brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.section {
  padding: 4.5rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
}

.section-alt {
  background: var(--cream);
}

.hero {
  min-height: 70vh;
  color: #fff;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.1)),
    url("https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?auto=format&fit=crop&w=1400&q=80")
      center/cover no-repeat;
  justify-content: center;
}

.hero-content {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}

.headline {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.1;
  font-weight: 700;
}

.subhead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn {
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-text {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.story-block {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: #fff;
  padding: 1.6rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card img {
  border-radius: 14px;
}

.tag {
  display: inline-flex;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(47, 95, 77, 0.12);
  color: var(--leaf);
  font-size: 0.75rem;
  font-weight: 600;
}

.quote {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border-left: 4px solid var(--accent);
  background: #fff;
  box-shadow: var(--shadow);
}

.trust-grid {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.trust-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.trust-item span {
  font-size: 1.4rem;
}

.testimonial-row {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.testimonial {
  background: rgba(255, 255, 255, 0.9);
  padding: 1.4rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: #fff;
  padding: 1.6rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.form-shell {
  background: #fff;
  padding: 2rem;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 0.8rem;
  border-radius: 12px;
  border: 1px solid #ded7cf;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

.sticky-cta {
  align-self: flex-start;
  position: sticky;
  bottom: 1.5rem;
  background: rgba(255, 253, 248, 0.92);
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.faq-item {
  padding: 1.4rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.footer {
  padding: 2.5rem 6vw 3.5rem;
  background: #11100f;
  color: #fefcf7;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer a {
  color: #fefcf7;
  opacity: 0.8;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  max-width: 320px;
  background: #fff;
  padding: 1.2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 99;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
}

.cookie-actions button {
  flex: 1;
}

.content-hero {
  background: var(--cream);
  padding: 3.5rem 6vw 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content-hero h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.content-section {
  padding: 3rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: #fff;
  padding: 1.4rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

@media (min-width: 860px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .testimonial-row {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .pricing-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pricing-card {
    flex: 1;
    min-width: 240px;
  }

  .trust-grid {
    flex-direction: row;
  }

  .trust-item {
    flex: 1;
  }

  .info-grid {
    flex-direction: row;
  }

  .info-card {
    flex: 1;
  }
}
