* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Noto Sans", Arial, sans-serif;
  color: #18202a;
  background: #f7f8fb;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  background: #0d1b2a;
  color: #f5f7fb;
}

.topbar .nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  font-size: 20px;
  letter-spacing: 0.6px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
}

.ad-label {
  font-size: 13px;
  color: #cbd4e1;
  max-width: 260px;
}

.hero {
  background: #f0f3f9;
  padding: 64px 0;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
}

.split .media {
  flex: 1;
}

.image-frame {
  background: #dfe7f2;
  border-radius: 18px;
  overflow: hidden;
}

.hero-title {
  font-size: clamp(30px, 4vw, 46px);
  margin: 0 0 18px;
}

.subhead {
  font-size: 18px;
  color: #3b4758;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #2d5fff;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #fff;
  color: #1d2d44;
  border: 1px solid #ccd6e4;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: #ffffff;
}

.section.accent {
  background: #0f172a;
  color: #e6edf7;
}

.section.accent .btn {
  background: #f4c74d;
  color: #1b1b1b;
}

.section-title {
  font-size: 28px;
  margin: 0 0 18px;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 280px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.card .card-body {
  padding: 18px;
}

.price {
  font-weight: 700;
  color: #1d4ed8;
  margin-top: 8px;
}

.inline-link {
  color: #2d5fff;
  font-weight: 600;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
}

.form-panel {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  color: #1d2d44;
}

select,
input {
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 15px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #1d4ed8;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 30;
}

.testimonial {
  background: #f1f5f9;
  padding: 16px 18px;
  border-left: 4px solid #2d5fff;
  border-radius: 12px;
}

.footer {
  background: #0d1b2a;
  color: #dbe3ef;
  padding: 32px 0;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.footer small {
  display: block;
  max-width: 780px;
  color: #c3cedf;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  color: #1d2d44;
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
  max-width: 320px;
  z-index: 40;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.bg-focus {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-focus .section-title,
.bg-focus p {
  color: #f8fafc;
}

.bg-focus .btn.secondary {
  background: rgba(255, 255, 255, 0.9);
}

.hero-image img {
  height: 380px;
}

.bg-cta {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
