* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f3ef;
  --ink: #1d1c1a;
  --muted: #5b5b5b;
  --accent: #1946b3;
  --accent-soft: #dfe8ff;
  --warm: #efe3d1;
  --panel: #ffffff;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 6vw 10px;
}

.nav-brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  background: var(--warm);
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
}

.hero {
  padding: 10px 6vw 40px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.split-media {
  border-radius: 24px;
  overflow: hidden;
  background: #c9d3e2;
  min-height: 320px;
}

.eyebrow {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

h1 {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.2;
}

h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.3;
}

p {
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-button {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cta-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
}

.section {
  padding: 48px 6vw;
}

.section.light {
  background: var(--panel);
}

.section.warm {
  background: var(--warm);
}

.section.backdrop {
  background-image: url("https://images.unsplash.com/photo-1496171367470-9ed9a91ea931?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section.backdrop p {
  color: #f1f1f1;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.card {
  background: var(--panel);
  border-radius: 20px;
  overflow: hidden;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
}

.card-image {
  height: 160px;
  background: #d6dbe3;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--ink);
}

.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.split-highlight {
  background: var(--accent-soft);
  padding: 20px;
  border-radius: 18px;
  color: var(--ink);
}

.form-wrap {
  background: var(--panel);
  padding: 26px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c7ccd6;
  font-size: 15px;
}

.footer {
  padding: 30px 6vw 50px;
  background: #111115;
  color: #f6f3ef;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer a {
  color: #f6f3ef;
}

.footer-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #c9c9c9;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
}

.sticky-cta button {
  border-radius: 999px;
  padding: 12px 18px;
  background: #0b0f2a;
  color: #fff;
  border: none;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #dedede;
  color: #222;
}

.simple-image {
  height: 240px;
  border-radius: 18px;
  overflow: hidden;
  background: #d9dee7;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.info-card {
  flex: 1 1 240px;
  background: var(--panel);
  padding: 18px;
  border-radius: 16px;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--panel);
  padding: 24px;
  border-radius: 20px;
}

.legal-image {
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  background: #d9dee7;
}

@media (max-width: 840px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
