* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #141414;
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  padding: 1rem 0 4rem;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: #8b7f73;
}

.primary-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 0;
}

.nav-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.2rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #141414;
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #5c4638;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem 0 1rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.1;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.hero-visual img {
  border-radius: 1.2rem;
  box-shadow: 0 25px 45px rgba(20, 20, 20, 0.2);
}

.hero-badge {
  background: #141414;
  color: #f7f5f2;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-size: 0.8rem;
  align-self: flex-start;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.4rem;
  box-shadow: 0 12px 25px rgba(20, 20, 20, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.stat-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: #efe9e2;
  border-radius: 0.9rem;
}

.stat-item span {
  font-size: 1.6rem;
  font-weight: 600;
}

.pull-quote {
  font-style: italic;
  background: #fff;
  border-left: 4px solid #5c4638;
  padding: 1.2rem;
  border-radius: 0.6rem;
}

.inline-cta {
  font-weight: 600;
  color: #141414;
  border-bottom: 2px solid #141414;
}

.gallery-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-row img {
  border-radius: 0.8rem;
}

.trust-bar {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: #141414;
  color: #f7f5f2;
  padding: 1.6rem;
  border-radius: 1.1rem;
}

.testimonial {
  padding: 1.2rem;
  border-radius: 0.9rem;
  background: #efe9e2;
}

.testimonial strong {
  display: block;
  margin-top: 0.6rem;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.benefit-list li {
  list-style: none;
  padding: 0.8rem 1rem;
  border-radius: 0.8rem;
  background: #fff;
  box-shadow: 0 8px 20px rgba(20, 20, 20, 0.08);
}

.pricing-reveal {
  background: #fff;
  padding: 2rem 1.6rem;
  border-radius: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.pricing-card {
  border: 1px solid #e3dad1;
  border-radius: 0.9rem;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: #fdfcfa;
}

.pricing-card strong {
  font-size: 1.1rem;
}

.price-tag {
  font-size: 1.3rem;
  font-weight: 700;
  color: #5c4638;
}

.cta-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: none;
  background: #141414;
  color: #f7f5f2;
  font-weight: 600;
  cursor: pointer;
}

.cta-button.light {
  background: transparent;
  color: #141414;
  border: 1px solid #141414;
}

.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.sticky-cta {
  position: sticky;
  top: 1rem;
  background: #5c4638;
  color: #fff;
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-panel {
  background: #fff;
  border-radius: 1rem;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 15px 35px rgba(20, 20, 20, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 0.7rem;
  border-radius: 0.7rem;
  border: 1px solid #d8cfc7;
  font-size: 1rem;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-disclaimer {
  font-size: 0.85rem;
  color: #6e6257;
}

.footer {
  background: #141414;
  color: #f7f5f2;
  padding: 2.5rem 0;
  margin-top: 3rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer strong {
  display: block;
  margin-bottom: 0.8rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  background: #fff;
  padding: 1.2rem;
  border-radius: 1rem;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 50;
  gap: 1rem;
  flex-direction: column;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.page-hero {
  background: #efe9e2;
  padding: 2.5rem 0;
  border-radius: 1.2rem;
}

.simple-grid {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.legal-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.95rem;
}

.thanks-panel {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 18px 35px rgba(20, 20, 20, 0.12);
}

@media (min-width: 768px) {
  .primary-nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .nav-row {
    flex-direction: row;
    align-items: center;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content,
  .hero-visual {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .info-grid {
    flex-direction: row;
  }

  .gallery-row {
    flex-direction: row;
  }

  .stats {
    flex-direction: row;
  }

  .benefit-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .benefit-list li {
    flex: 1 1 45%;
  }

  .pricing-reveal {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pricing-card {
    flex: 1 1 30%;
  }

  .cta-stack {
    flex-direction: row;
    align-items: center;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .simple-grid {
    flex-direction: row;
  }

  .contact-card {
    flex: 1;
  }
}
