@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  color: #1c232b;
  background: #f7f7f4;
  line-height: 1.6;
}

a {
  color: #1c232b;
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 12px;
  background: #f7f7f4;
}

.nav-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

.nav-links a {
  padding: 6px 0;
}

.ad-label {
  font-size: 13px;
  color: #6b6f73;
  border-left: 2px solid #c7c9cc;
  padding-left: 12px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 64px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split.compact {
  padding: 40px 0;
}

.split__text {
  flex: 1;
  min-width: 280px;
}

.split__media {
  flex: 1;
  min-width: 280px;
}

.split__media.tall {
  min-height: 360px;
}

.media-box {
  background-color: #dfe4e8;
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
}

.media-box.small {
  min-height: 220px;
}

.media-box.tall {
  min-height: 420px;
}

.headline {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.subhead {
  font-size: 18px;
  color: #3f4a53;
  margin-bottom: 22px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.6px;
  color: #6b6f73;
  margin-bottom: 10px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  background: #1c232b;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-size: 15px;
  cursor: pointer;
}

.btn.light {
  background: #ffffff;
  color: #1c232b;
  border: 1px solid #1c232b;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.section-muted {
  background: #eef1f3;
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1649956739904-9b5e3618c626?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #cdd5da;
  color: #ffffff;
}

.section-bg .subhead,
.section-bg .eyebrow,
.section-bg p {
  color: #f1f1f1;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card h3 {
  font-size: 18px;
}

.price {
  font-weight: 700;
  color: #1c232b;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.badge {
  background: #ffffff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  color: #3f4a53;
}

.form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

select,
input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7c9cc;
  font-size: 14px;
}

.form-note {
  font-size: 13px;
  color: #b54747;
  min-height: 18px;
}

.footer {
  padding: 40px 0 60px;
  background: #1c232b;
  color: #ffffff;
}

.footer a {
  color: #ffffff;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
  margin-top: 12px;
}

.footer-small {
  margin-top: 18px;
  font-size: 12px;
  color: #c9cdd1;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1c232b;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
}

.sticky-cta span {
  color: #ffffff;
  font-size: 13px;
}

.sticky-cta button {
  background: #ffffff;
  color: #1c232b;
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
  width: min(940px, 92%);
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  z-index: 30;
}

.cookie-banner button {
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.cookie-accept {
  background: #1c232b;
  color: #ffffff;
}

.cookie-reject {
  background: #eef1f3;
  color: #1c232b;
}

.table-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.table-list div {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
