* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1f24;
  background: #f7f8fb;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 48px 0;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 4%;
  background: #ffffff;
  border-bottom: 1px solid #e3e7ef;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 15px;
}

.ad-label {
  font-size: 13px;
  color: #4b5563;
  border: 1px solid #d0d7e2;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f2f5fb;
}

.hero {
  padding: 28px 0 56px;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 36px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
}

.image-wrap {
  border-radius: 18px;
  overflow: hidden;
  background: #dbe4f3;
  min-height: 320px;
  box-shadow: 0 18px 40px rgba(24, 34, 52, 0.15);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: #6b7280;
}

.headline {
  font-size: clamp(28px, 3.6vw, 44px);
  margin: 12px 0 18px;
}

.lead {
  font-size: 18px;
  color: #334155;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1f4b99;
  color: #ffffff;
  font-weight: 600;
  border: none;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #e6ecf7;
  color: #1f4b99;
  font-weight: 600;
}

.inline-link {
  color: #1f4b99;
  text-decoration: underline;
}

.section-title {
  font-size: 26px;
  margin-bottom: 12px;
}

.section-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 14px 30px rgba(30, 41, 59, 0.08);
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #f2f5fb;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.card img {
  width: 120px;
  height: 92px;
  border-radius: 12px;
  background: #cfd8eb;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: #0f172a;
  margin-top: 6px;
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.highlight-panel {
  background: linear-gradient(135deg, #eef2ff 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 24px;
}

.form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cbd5f5;
  font-size: 15px;
  background: #f8fafc;
}

.form-note {
  font-size: 13px;
  color: #64748b;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #0f172a;
  color: #ffffff;
  font-weight: 600;
  z-index: 20;
}

.footer {
  background: #0f172a;
  color: #e2e8f0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #cbd5f5;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cookie-button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  background: #1f4b99;
  color: #ffffff;
  font-weight: 600;
}

.cookie-button.secondary {
  background: #e6ecf7;
  color: #1f4b99;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

@media (max-width: 860px) {
  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 12px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
