* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background: #f4f6f9;
  line-height: 1.6;
}

a {
  color: #1e5b8a;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #0f2434;
  color: #f7f9fc;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.12);
  padding: 10px 12px;
  border-radius: 10px;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar nav a {
  color: #f7f9fc;
  font-size: 14px;
}

.sidebar-cta {
  margin-top: auto;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 54px 64px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.section.narrow {
  padding: 44px 64px;
}

.section.alt {
  background: #eef2f6;
}

.section.dark {
  background: #0f1d28;
  color: #f7f9fc;
}

.section.split {
  flex-direction: row;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.section.stack {
  flex-direction: column;
  align-items: flex-start;
}

.hero {
  align-items: stretch;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-image {
  flex: 1;
  min-width: 280px;
}

.hero-image .image-frame {
  border-radius: 20px;
  overflow: hidden;
  background: #d8e0ea;
}

.tagline {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6a7a8b;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 20px;
}

.button {
  background: #1e5b8a;
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
}

.button.secondary {
  background: #f7f9fc;
  color: #1e5b8a;
  border: 1px solid #1e5b8a;
}

.inline-cta {
  font-weight: 600;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 24px rgba(15, 36, 52, 0.08);
}

.card .image-frame {
  border-radius: 12px;
  overflow: hidden;
  background: #dae3ee;
}

.card .price {
  font-weight: 700;
  font-size: 18px;
  color: #163b59;
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  background: #e8f0f8;
  border-radius: 999px;
  font-size: 12px;
  color: #1e5b8a;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list li {
  padding-left: 16px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1e5b8a;
}

.form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(15, 36, 52, 0.08);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7d0da;
  font-size: 14px;
  font-family: inherit;
}

.note {
  font-size: 13px;
  color: #566677;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.metrics {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.metric {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  flex: 1 1 180px;
  box-shadow: 0 8px 18px rgba(15, 36, 52, 0.07);
}

.metric strong {
  display: block;
  font-size: 22px;
  margin-bottom: 6px;
  color: #1e5b8a;
}

.overlap {
  margin-top: -32px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(15, 36, 52, 0.12);
}

.footer {
  padding: 34px 64px;
  background: #0f2434;
  color: #f7f9fc;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #f7f9fc;
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 32px rgba(15, 36, 52, 0.2);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.image-frame {
  background: #d9e2ec;
}

.frame-rounded {
  border-radius: 18px;
  overflow: hidden;
}

.frame-light {
  background: #dbe4ee;
}

.frame-dark {
  background: #2a3947;
}

.two-column {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1 1 260px;
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: column;
  }

  .section {
    padding: 40px 24px;
  }

  .footer {
    padding: 28px 24px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
