* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1e2227;
  background-color: #f6f6f2;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: 100%;
  overflow: hidden;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 6vw;
  background-color: #ffffff;
  border-bottom: 1px solid #e2e2dc;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.nav-disclosure {
  font-size: 0.85rem;
  color: #5b5f65;
  max-width: 280px;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-bottom: 40px;
}

.section {
  padding: 44px 6vw;
  background-color: #fdfcf8;
}

.section.alt {
  background-color: #eef1f4;
}

.section.dark {
  background-color: #101417;
  color: #f6f6f2;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1 1 320px;
  min-width: 280px;
}

.split .visual {
  flex: 1 1 320px;
  min-width: 280px;
  background-color: #d8dde2;
  border-radius: 16px;
  overflow: hidden;
}

.hero-title {
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1e2227;
  background-color: #1e2227;
  color: #ffffff;
  font-weight: 600;
}

.btn.secondary {
  background-color: transparent;
  color: inherit;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: #dce7f2;
  font-size: 0.85rem;
  font-weight: 600;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  min-width: 220px;
  padding: 18px;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #e0e0da;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  background-color: #cfd6dc;
  border-radius: 12px;
  overflow: hidden;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
  padding: 18px;
  border-radius: 16px;
  background-color: #ffffff;
  border: 1px solid #e0e0da;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background-color: #ffffff;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid #e0e0da;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd6dc;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 30px 6vw 40px;
  background-color: #0c1013;
  color: #f6f6f2;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}

.footer-box {
  flex: 1 1 220px;
  min-width: 220px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background-color: #ffffff;
  border: 1px solid #d7d7d0;
  border-radius: 16px;
  padding: 16px;
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.centered {
  text-align: center;
}

.notice {
  background-color: #eef1f4;
  border-left: 4px solid #1e2227;
  padding: 12px 16px;
}
