* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1c1e21;
  background: #f6f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  background: #ffffff;
  border-bottom: 1px solid #e2e0db;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f0e7d8;
  color: #4a3e2a;
}

.hero {
  margin-top: 24px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-visual {
  flex: 1;
}

.section {
  margin: 56px 0;
}

.section-heading {
  font-size: 32px;
  margin-bottom: 12px;
}

.subheading {
  font-size: 18px;
  color: #50555a;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #1c1e21;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.alt {
  background: #f0e7d8;
  color: #4a3e2a;
}

.inline-link {
  color: #2a5f8f;
  text-decoration: underline;
}

.image-frame {
  background: #d9e1ea;
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stacked-copy {
  margin-top: 18px;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(28, 30, 33, 0.08);
}

.card-title {
  font-weight: 600;
  font-size: 18px;
}

.price {
  font-weight: 700;
  color: #2a5f8f;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #edeef0;
  font-size: 12px;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
}

.form-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(28, 30, 33, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d5d7db;
  font-size: 14px;
  font-family: inherit;
}

.sticky-cta {
  position: sticky;
  top: 12px;
  align-self: flex-end;
  margin: 0 0 32px auto;
  max-width: 220px;
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(28, 30, 33, 0.1);
}

.sticky-cta p {
  margin: 0 0 10px;
  font-size: 14px;
}

.footer {
  padding: 32px 24px;
  background: #ffffff;
  border-top: 1px solid #e2e0db;
  font-size: 14px;
}

.text-email {
  font-weight: 600;
  color: #1c1e21;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.disclaimer {
  margin-top: 20px;
  color: #5b6168;
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 340px;
  background: #1c1e21;
  color: #ffffff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .button {
  font-size: 13px;
  padding: 8px 12px;
}

.highlight {
  background: #f0e7d8;
  padding: 20px;
  border-radius: 16px;
}

.stacked-block {
  margin-top: 16px;
}

.section-bg-a {
  background: #e9edf4;
  padding: 32px;
  border-radius: 20px;
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    max-width: 100%;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
