* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d2125;
  background: #f6f7f9;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  padding: 24px 6%;
  border-bottom: 1px solid #e3e6ea;
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.ad-label {
  font-size: 13px;
  color: #3b4252;
  background: #eef1f5;
  padding: 6px 10px;
  border-radius: 16px;
}

.cta-button,
.ghost-button {
  border: none;
  padding: 12px 18px;
  border-radius: 28px;
  font-weight: 600;
  cursor: pointer;
}

.cta-button {
  background: #232833;
  color: #ffffff;
}

.ghost-button {
  background: #ffffff;
  color: #232833;
  border: 1px solid #232833;
}

.main {
  flex: 1;
}

.section {
  padding: 70px 6%;
}

.section.light {
  background: #ffffff;
}

.section.tint {
  background: #f0f3f7;
}

.bg-panel {
  color: #ffffff;
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 60px;
}

.bg-panel-1 {
  background-image: url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1400&q=80");
}

.bg-panel-2 {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
}

.bg-panel-3 {
  background-image: url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80");
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.hero-title {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.lead {
  font-size: 18px;
  color: #3b4252;
}

.img-wrap {
  width: 100%;
  height: 100%;
  background-color: #dfe7ef;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
}

.card-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card-image {
  min-height: 180px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #1d2125;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  background: #edf2ff;
  color: #2b3a67;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 600;
}

.inline-cta {
  color: #1f4fff;
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  margin-top: 32px;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.sticky-cta .cta-button {
  box-shadow: 0 10px 20px rgba(31, 45, 61, 0.25);
}

.form-wrapper {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7dce3;
  font-size: 15px;
  font-family: inherit;
}

.two-col {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 200px;
}

.footer {
  background: #1d2125;
  color: #e7eaee;
  padding: 50px 6%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #c3c9d4;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.notice {
  font-size: 14px;
  color: #3b4252;
}

.quote {
  padding: 18px;
  background: #ffffff;
  border-left: 4px solid #1f4fff;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.08);
}

.section-title {
  font-size: 26px;
  margin-bottom: 12px;
}

.pill-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  background: #f3f5f9;
  padding: 8px 14px;
  border-radius: 18px;
  font-size: 13px;
}

@media (max-width: 820px) {
  .hero-title {
    font-size: 32px;
  }

  .nav-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
