* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  padding: 24px 6vw 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #2a4b8d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-title {
  font-size: 1.2rem;
  font-weight: 700;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  padding-left: 12vw;
}

.nav a {
  font-size: 0.95rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-color: #2a4b8d;
}

.main {
  flex: 1;
}

.section {
  padding: 70px 6vw;
  position: relative;
}

.section.alt {
  background: #ffffff;
}

.section.tint {
  background: #e7ecf5;
}

.section.deep {
  background: #111827;
  color: #f8f8f8;
}

.section .kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 12px;
}

.section.deep .kicker {
  color: #c7d2fe;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.hero p {
  max-width: 520px;
  font-size: 1.1rem;
}

.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  background: #2a4b8d;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn.light {
  background: #f1f5f9;
  color: #1a1a1a;
  border: 1px solid #cbd5f5;
}

.btn.ghost {
  background: transparent;
  border: 1px solid #94a3b8;
  color: inherit;
}

.hero-card {
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.12);
  margin-left: auto;
  max-width: 420px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  display: flex;
  gap: 16px;
  align-items: center;
}

.card img {
  width: 64px;
  height: 64px;
}

.offset-panel {
  background: #2a4b8d;
  color: #fff;
  padding: 28px;
  border-radius: 30px;
  margin-left: -8vw;
}

.offset-panel.light {
  background: #f1f5f9;
  color: #111827;
}

.quote-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  padding: 20px;
  border-left: 4px solid #2a4b8d;
  background: #fff;
}

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
}

.price {
  font-weight: 700;
  font-size: 1.2rem;
  color: #2a4b8d;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: #f1f5f9;
  font-size: 0.85rem;
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  font-size: 1rem;
}

.inline-cta {
  color: #2a4b8d;
  font-weight: 700;
}

.footer {
  padding: 40px 6vw 30px;
  background: #0f172a;
  color: #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #e2e8f0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #f97316;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.3);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.2);
  max-width: 320px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions button.primary {
  background: #2a4b8d;
  color: #fff;
  border: none;
}

.content-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.muted {
  color: #475569;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: #111827;
  color: #f8fafc;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

@media (min-width: 860px) {
  .header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-stack {
    flex-direction: row;
  }

  .price-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-item {
    flex: 1 1 220px;
  }

  .quote-row {
    flex-direction: row;
  }
}
