*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background: #f7f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #1a4b8f;
  text-decoration: none;
}

a:hover {
  color: #10315e;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background: #ffffff;
  border-bottom: 1px solid #e4ded6;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

.hero {
  padding: 60px 6vw 40px;
  background: #fef8f2;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split--reverse {
  flex-direction: column-reverse;
}

.split__content {
  flex: 1;
}

.split__media {
  flex: 1;
  position: relative;
}

.split__media img {
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.section {
  padding: 52px 6vw;
  background: #ffffff;
  border-top: 1px solid #efe7dd;
}

.section--tint {
  background: #f4efe9;
}

.section--accent {
  background: #fff2e8;
}

.section h2 {
  font-size: 30px;
  margin: 0 0 16px;
}

.section p {
  margin: 0 0 14px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: #6a5c4e;
  margin-bottom: 10px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  background: #1a4b8f;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: 0;
  cursor: pointer;
}

.btn--ghost {
  background: transparent;
  color: #1a4b8f;
  border: 1px solid #1a4b8f;
}

.btn--warm {
  background: #d4552c;
}

.inline-cta {
  font-weight: 600;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  background: #efe7dd;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #eadfce;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: #1a4b8f;
}

.badge {
  background: #1a4b8f;
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  display: inline-block;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #e8dccd;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap label {
  font-size: 14px;
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d7c6b5;
  font-size: 15px;
  width: 100%;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-hint {
  font-size: 13px;
  color: #6a5c4e;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw;
  background: #161616;
  color: #f4efe9;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f4efe9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1a4b8f;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 12px 28px rgba(26, 75, 143, 0.3);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 320px;
  background: #ffffff;
  border: 1px solid #e0d1c0;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.cookie-hidden {
  display: none;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-clean li {
  padding: 10px 0;
  border-bottom: 1px dashed #d6c7b8;
}

.note {
  background: #ffffff;
  border-left: 4px solid #d4552c;
  padding: 16px;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  border-radius: 12px;
  background: #fff6ef;
  border: 1px solid #f0d9c8;
}

.table-row span {
  font-size: 14px;
}

.table-row strong {
  font-size: 16px;
}

.muted {
  color: #6a5c4e;
}

@media (min-width: 900px) {
  .split,
  .split--reverse,
  .two-col {
    flex-direction: row;
    align-items: center;
  }

  .split--reverse {
    flex-direction: row-reverse;
  }

  .card-stack {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .table-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
