* {
  box-sizing: border-box;
}

:root {
  --ink: #1e1e1e;
  --muted: #5c5c5c;
  --paper: #f6f3ef;
  --accent: #2f4b75;
  --accent-soft: #d6e0f0;
  --line: #e2ddd6;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 12px;
  padding: 4px 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 48px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split.tight {
  padding: 32px 0;
}

.split .copy {
  flex: 1;
}

.split .visual {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
}

.headline {
  font-size: 34px;
  margin: 8px 0 16px;
}

.subline {
  font-size: 18px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 6px;
  font-weight: 600;
  border: none;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.image-box {
  background-color: var(--accent-soft);
  border-radius: 12px;
  overflow: hidden;
  height: 320px;
}

.image-box.tall {
  height: 420px;
}

.image-box.short {
  height: 240px;
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  background: #ffffff;
}

.card .image-box {
  height: 160px;
  margin-bottom: 12px;
}

.price {
  font-weight: 700;
  margin-top: 8px;
}

.highlight {
  background: var(--paper);
  border-radius: 14px;
  padding: 24px;
}

.bg-support {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d0d8e2;
}

.bg-overlay {
  background: rgba(255, 255, 255, 0.9);
  padding: 32px;
  border-radius: 12px;
}

.list {
  padding-left: 18px;
  margin: 12px 0 0;
}

.form-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  background: #ffffff;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-bottom: 12px;
  font-size: 14px;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  max-width: 320px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
