* {
  box-sizing: border-box;
}

:root {
  --ink: #0f1c2b;
  --muted: #5c6b7a;
  --mist: #eef2f6;
  --ice: #f7f9fb;
  --accent: #2b5c9a;
  --accent-dark: #1f3f6b;
  --sand: #f3f0ea;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--ice);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

header {
  background: #fff;
  border-bottom: 1px solid #e5e9ef;
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--muted);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 64px 0;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-col {
  flex: 1 1 320px;
  min-width: 280px;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: var(--ink);
}

.button.ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1 1 220px;
  min-width: 200px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(15, 28, 43, 0.08);
}

.card img {
  border-radius: 14px;
  width: 100%;
  height: 180px;
}

.card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.media-frame {
  border-radius: 24px;
  overflow: hidden;
  background: #dde6f0;
}

.media-frame img {
  width: 100%;
  height: 360px;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  background: var(--sand);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #e2d7c9;
}

.section-accent {
  background: var(--mist);
}

.section-sand {
  background: var(--sand);
}

.section-background {
  background-image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f8fafc;
}

.section-background .lead,
.section-background p,
.section-background h2,
.section-background h3 {
  color: #f8fafc;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.inline-list li {
  background: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
}

.form-shell {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 28px rgba(15, 28, 43, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d6dde7;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  resize: vertical;
}

.footer {
  background: #0f1c2b;
  color: #cbd5e1;
  padding: 32px 0;
  margin-top: 32px;
}

.footer p,
.footer a {
  color: #cbd5e1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  left: 16px;
  background: #fff;
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 28, 43, 0.2);
  display: none;
  z-index: 20;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.split-image-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-image-stack img {
  width: 100%;
  height: 180px;
  border-radius: 18px;
}

.notice {
  background: #fff3cd;
  color: #6d4c00;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid #ffe49b;
}

.legal-copy {
  max-width: 760px;
}

.layout-hero {
  background: linear-gradient(120deg, #f6f9ff 0%, #e9f0ff 100%);
}

.hero-image {
  height: 420px;
}

.badge {
  padding: 6px 12px;
  background: #fff;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
  border: 1px solid #e1e7f0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-meta {
  margin-top: 16px;
  font-size: 13px;
  color: #9fb0c1;
}
