* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1b1f23;
  background-color: #f6f5f2;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  gap: 24px;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.6px;
}

.ad-label {
  font-size: 12px;
  color: #6b6f73;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 80px 48px;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(14, 17, 20, 0.7), rgba(14, 17, 20, 0.2));
}

.hero-content {
  position: relative;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background-color: #f4d166;
  color: #1b1f23;
  font-weight: 600;
  width: fit-content;
}

.section {
  padding: 70px 48px;
}

.section.bg-soft {
  background-color: #ffffff;
}

.section.bg-sand {
  background-color: #f0e9dd;
}

.section-title {
  font-size: 28px;
  margin: 0 0 18px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .visual {
  flex: 1 1 320px;
  background-color: #e6e1d6;
  border-radius: 18px;
  overflow: hidden;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 30px rgba(20, 22, 24, 0.08);
}

.card-img {
  background-color: #ded8cb;
  border-radius: 12px;
  overflow: hidden;
}

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: #1b1f23;
  color: #ffffff;
  font-size: 12px;
  width: fit-content;
}

.inline-cta {
  font-weight: 600;
  color: #245b7a;
}

.list {
  margin: 18px 0 0;
  padding-left: 18px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border-radius: 18px;
  background-color: #ffffff;
  border: 1px solid #e6e1d6;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: #1c4b36;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #ffffff;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid #e8e3d7;
}

label {
  font-size: 14px;
  font-weight: 600;
}

select,
input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfc8bc;
  background-color: #fdfcf9;
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: none;
  border-radius: 999px;
  background-color: #1b1f23;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background-color: #2b5d7c;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  z-index: 4;
}

.footer {
  padding: 40px 48px;
  background-color: #14181c;
  color: #f6f5f2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.disclaimer {
  font-size: 12px;
  color: #c7c8c9;
  max-width: 800px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background-color: #ffffff;
  color: #1b1f23;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .btn {
  flex: 1;
}

.content-block {
  max-width: 920px;
}

.wide {
  max-width: 1100px;
}

.center {
  text-align: center;
}

@media (max-width: 760px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 60px 24px;
  }

  .section {
    padding: 60px 24px;
  }

  .footer {
    padding: 32px 24px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
