* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background: #f5f3ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 8%;
  background: #fff6e7;
  border-bottom: 1px solid #e2d6c7;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.ad-label {
  font-size: 0.9rem;
  padding: 6px 10px;
  background: #f3d7b5;
  border-radius: 999px;
}

.hero {
  padding: 0 8% 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-visual {
  flex: 1 1 320px;
  background: #d9d1c6;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.section {
  padding: 32px 8%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.light {
  background: #fffdf9;
}

.section.dark {
  background: #efe8dc;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block,
.split .image-block {
  flex: 1 1 300px;
}

.image-block {
  background: #d8c8b8;
  border-radius: 20px;
  overflow: hidden;
}

.image-block img {
  width: 100%;
  height: 100%;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #e7dccf;
}

.card-image {
  background: #d2c5b7;
  border-radius: 14px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 180px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  background: #3b4b3f;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: #fff;
  color: #3b4b3f;
  border: 1px solid #3b4b3f;
}

.inline-cta {
  font-weight: 600;
}

.list-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.list-row div {
  flex: 1 1 220px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e1d6c8;
}

.form-wrap {
  background: #fffdf9;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid #e3d7c9;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc3b4;
  font-size: 1rem;
}

.footer {
  padding: 32px 8% 60px;
  background: #1f1f1f;
  color: #f3efe9;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f3efe9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fffdf9;
  border-top: 1px solid #d9cbbd;
  padding: 16px 8%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 9;
}

.banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.notice {
  background: #f2e8dc;
  padding: 12px 16px;
  border-radius: 12px;
}
