* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1e1e1e;
  background-color: #f7f4ef;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: #1e1e1e;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus {
  outline: 2px solid #1e1e1e;
  outline-offset: 2px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 24px 6vw 8px;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 14px;
  background-color: #fff0da;
  padding: 8px 12px;
  border-radius: 20px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
}

.nav a:hover,
.nav a:active {
  text-decoration: underline;
}

.hero {
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background-color: #efe6db;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1506368249639-73a05d6f6488?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 640px;
  z-index: 1;
}

.hero h1 {
  font-size: 44px;
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 18px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 28px;
  border: 1px solid #1e1e1e;
  background-color: #1e1e1e;
  color: #f7f4ef;
  cursor: pointer;
  font-size: 15px;
}

.btn.secondary {
  background-color: transparent;
  color: #1e1e1e;
}

.btn:hover,
.btn:active {
  transform: translateY(-1px);
}

.section {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background-color: #ffffff;
}

.section.texture {
  background-color: #f5eee5;
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row.reverse {
  flex-direction: column-reverse;
}

.media-frame {
  background-color: #e6ded4;
  padding: 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #e1d6c7;
}

.card h3 {
  margin: 0;
}

.inline-cta {
  color: #1e1e1e;
  text-decoration: underline;
}

.inline-cta:hover,
.inline-cta:active {
  opacity: 0.7;
}

.trust-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 16px;
  background-color: #f3efe9;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  background-color: #fefbf6;
  border-radius: 14px;
  border: 1px solid #e6ded4;
}

.form-wrap {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #e6ded4;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-fields input,
.form-fields select,
.form-fields textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d8cfc3;
  font-size: 15px;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.muted {
  color: #5f5b56;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #1e1e1e;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.sticky-cta button {
  background: none;
  border: none;
  color: #f7f4ef;
  font-size: 14px;
  cursor: pointer;
}

.sticky-cta button:hover,
.sticky-cta button:active {
  opacity: 0.8;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 48px;
  background-color: #f1e8dc;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #d8cfc3;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 4;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hidden {
  display: none;
}

@media (min-width: 900px) {
  .split-row {
    flex-direction: row;
    align-items: center;
  }

  .split-row.reverse {
    flex-direction: row-reverse;
  }

  .split {
    flex-direction: row;
    gap: 40px;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .pricing {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-item {
    flex: 1 1 240px;
  }

  .hero {
    flex-direction: row;
    justify-content: space-between;
  }

  .hero-content {
    max-width: 520px;
  }
}
