* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f8f4ef;
  --bg-dark: #1e1a17;
  --accent: #b1845d;
  --accent-dark: #6d4a2f;
  --text: #1c1a18;
  --muted: #6b5f55;
  --card: #ffffff;
  --border: rgba(28, 26, 24, 0.12);
}

body {
  font-family: "Helvetica Neue", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  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: 48px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw 0;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav__menu a {
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.nav__menu a:hover {
  border-color: var(--accent);
  color: var(--text);
}

.section {
  padding: 0 6vw;
}

.section--hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 6vw 0;
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--card);
  padding: 32px;
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(31, 24, 18, 0.12);
}

.hero-card h1 {
  font-size: 2.4rem;
  line-height: 1.2;
}

.hero-card p {
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-dark);
}

.btn--ghost {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.hero-image {
  min-height: 260px;
  border-radius: 30px;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)),
    url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
}

.section--story,
.section--insight,
.section--trust,
.section--pricing,
.section--form,
.section--faq {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split__text h2,
.section h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-dark);
  font-size: 0.8rem;
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-step {
  background: var(--card);
  border-radius: 22px;
  padding: 20px;
  border: 1px solid var(--border);
}

.story-step h3 {
  margin-bottom: 8px;
}

.callout {
  background: var(--bg-dark);
  color: #fef6ef;
  padding: 28px;
  border-radius: 24px;
}

.callout strong {
  color: #f7d7b7;
}

.inline-cta {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--accent-dark);
  font-weight: 600;
  margin-top: 12px;
}

.trust-grid,
.benefit-grid,
.pricing-grid,
.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(177, 132, 93, 0.12);
  color: var(--accent-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.pricing-grid .card {
  border: 1px solid rgba(177, 132, 93, 0.3);
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.urgency {
  background: #efe2d6;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap {
  background: var(--card);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(24, 16, 10, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer {
  background: var(--bg-dark);
  color: #f6f1ec;
  padding: 36px 6vw 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
  color: #d9c9ba;
}

.cta-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(30, 20, 10, 0.25);
  z-index: 50;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 80px;
  background: #ffffff;
  border-radius: 20px;
  padding: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 30px rgba(22, 16, 12, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.is-hidden {
  display: none;
}

.page-hero {
  background: url("https://images.unsplash.com/photo-1489987707025-afc232f7ea0f?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  padding: 64px 6vw;
  border-radius: 0 0 40px 40px;
  color: #d19d9d;
}

.page-hero h1 {
  font-size: 2.4rem;
}

.page-hero p {
  max-width: 560px;
  margin-top: 12px;
  color: #d19d9d;
}

.content-blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--card);
  padding: 22px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.thanks-detail {
  background: #efe2d6;
  padding: 12px 16px;
  border-radius: 12px;
}

.section--faq details {
  background: var(--card);
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--border);
}

@media (min-width: 900px) {
  .section--hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card,
  .hero-image {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .trust-grid,
  .benefit-grid,
  .pricing-grid,
  .testimonial-grid {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .story-grid {
    flex-direction: row;
  }

  .form-row.inline {
    flex-direction: row;
    gap: 16px;
  }
}
