* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1a1a1a;
  background-color: #f7f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background-color: #f1ece6;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 15px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #1a1a1a;
  color: #f7f4f1;
}

.hero {
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background-image: url("https://images.unsplash.com/photo-1518611012118-696072aa579a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.hero-content {
  background: rgba(241, 236, 230, 0.92);
  padding: 36px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1a1a1a;
  background-color: #1a1a1a;
  color: #f7f4f1;
  font-size: 14px;
  cursor: pointer;
}

.btn.secondary {
  background-color: transparent;
  color: #1a1a1a;
}

.btn.light {
  background-color: #f7f4f1;
  color: #1a1a1a;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.section {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section.narrow {
  max-width: 840px;
  margin: 0 auto;
}

.section-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-card {
  flex: 1 1 260px;
  padding: 24px;
  border-radius: 20px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-frame {
  flex: 1 1 320px;
  border-radius: 22px;
  overflow: hidden;
  background-color: #ddd3c7;
  min-height: 260px;
}

.split-highlight {
  background-color: #1a1a1a;
  color: #f7f4f1;
  padding: 40px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  flex: 1 1 220px;
  background-color: #f1ece6;
  padding: 20px;
  border-radius: 18px;
}

.testimonials {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.testimonial {
  flex: 1 1 260px;
  padding: 20px;
  border-left: 3px solid #1a1a1a;
  background-color: #ffffff;
}

.pricing-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 260px;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.price-card .content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 20px;
  font-weight: 700;
}

.form-section {
  background-color: #f1ece6;
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

select,
input {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c8bfb4;
  font-size: 15px;
}

.form-status {
  font-size: 14px;
  color: #6d1f1f;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background-color: #1a1a1a;
  color: #f7f4f1;
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.sticky-cta button {
  border: none;
  background-color: #f7f4f1;
  color: #1a1a1a;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
}

.footer {
  background-color: #1a1a1a;
  color: #f7f4f1;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #d6cfc5;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid #1a1a1a;
  cursor: pointer;
  background-color: #1a1a1a;
  color: #f7f4f1;
}

.cookie-actions button.secondary {
  background-color: transparent;
  color: #1a1a1a;
}

.subtle {
  font-size: 14px;
  color: #55504a;
}

.page-header {
  padding: 40px 24px 0;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.content-wrap {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 24px 80px;
}

.info-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.info-card {
  flex: 1 1 260px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.image-band {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.image-band .image-frame {
  min-height: 200px;
}
