* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background: #f7f7f5;
  line-height: 1.5;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.topbar {
  background: #ffffff;
  border-bottom: 1px solid #e1e1de;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
  font-size: 20px;
}

.ad-label {
  font-size: 12px;
  color: #5a5a55;
  background: #f0f0eb;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a:hover {
  text-decoration: underline;
}

.hero {
  padding: 60px 0;
  background: #f1f2ef;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2a3036;
  color: #ffffff;
}

.bg-insight .section-title,
.bg-insight .lede,
.bg-insight p,
.bg-insight a {
  color: #ffffff;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.split .visual {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  background: #d9d9d4;
  min-height: 320px;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: #ffffff;
}

.section-title {
  font-size: 28px;
  margin: 0 0 16px;
}

.lede {
  font-size: 18px;
  color: #3d3d3a;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.pill {
  background: #f0efe9;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e6e6e1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card .card-image {
  height: 160px;
  background: #d0d1cc;
}

.card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: #0f5132;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1b4f72;
  color: #ffffff;
  border: none;
  font-size: 14px;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: #1b4f72;
  border: 1px solid #1b4f72;
}

.btn:hover,
.btn:focus {
  opacity: 0.85;
}

.form-card {
  background: #ffffff;
  border: 1px solid #e6e6e1;
  border-radius: 24px;
  padding: 28px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-size: 14px;
  color: #3b3b36;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d6d6d0;
  font-size: 14px;
}

.inline-link {
  color: #1b4f72;
  text-decoration: underline;
}

.footer {
  background: #1f1f1d;
  color: #f4f4f1;
  padding: 36px 0;
  margin-top: auto;
}

.footer .footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  font-size: 14px;
}

.footer a:hover {
  text-decoration: underline;
}

.legal-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #1b4f72;
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.sticky-cta:hover {
  opacity: 0.85;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #deded8;
  padding: 16px;
  display: none;
  z-index: 12;
}

.cookie-banner .cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.badge {
  background: #e7efe9;
  color: #1f5430;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
}

.note {
  font-size: 14px;
  color: #4b4b46;
}

.simple-image {
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  background: #d7d8d3;
}

.legal-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 15px;
  color: #30302b;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
