:root {
  color-scheme: light;
  --ink: #1c1f24;
  --muted: #5a6570;
  --accent: #1a4f8b;
  --accent-soft: #e8f0fb;
  --surface: #f7f5f2;
  --warm: #fff1e1;
  --line: #d9dde3;
  --shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  padding: 26px 0 18px;
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
}

.ad-label {
  background: var(--warm);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: #7a4a16;
}

.hero {
  padding: 60px 0 40px;
}

.split {
  display: flex;
  gap: 48px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 12px 0 18px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(30px, 4vw, 44px);
}

h2 {
  font-size: clamp(24px, 3vw, 32px);
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
}

.cta-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section {
  padding: 54px 0;
}

.section.soft {
  background: var(--surface);
}

.section.warm {
  background: var(--warm);
}

.image-frame {
  background: #dfe7f2;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame.tall {
  height: 420px;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.card-content h3 {
  margin: 0 0 8px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 12px;
  color: var(--accent);
}

.form-box {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: inherit;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bg-insight {
  background-image: linear-gradient(
      rgba(15, 23, 42, 0.6),
      rgba(15, 23, 42, 0.6)
    ),
    url("https://images.unsplash.com/photo-1506784365847-bbad939e9335?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-insight .btn {
  background: #fff;
  color: #111;
}

.footer {
  margin-top: auto;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: #fff;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 90px;
  z-index: 10;
}

.sticky-cta .btn {
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  z-index: 11;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.legal-grid {
  display: flex;
  gap: 32px;
}

.legal-grid .panel {
  background: var(--surface);
  padding: 18px;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .split,
  .legal-grid {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    margin: 20px auto 0;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
