* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #17202a;
  background: #f7f8fa;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: #0b5db7;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #0b5db7;
  outline-offset: 2px;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6%;
  background: #ffffff;
  border-bottom: 1px solid #e1e5ea;
}

.nav-left,
.nav-center,
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  padding: 6px 10px;
  background: #f0f4ff;
  border-radius: 16px;
  font-size: 12px;
}

.main {
  flex: 1;
}

.split-section {
  display: flex;
  padding: 60px 6%;
  gap: 48px;
  align-items: center;
  background: #ffffff;
}

.split-section.alt {
  flex-direction: row-reverse;
  background: #f2f5f9;
}

.split-section.tint {
  background: #eef5ff;
}

.split-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-media {
  flex: 1;
}

.image-frame {
  background: #dfe7f3;
  border-radius: 20px;
  overflow: hidden;
  padding: 10px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
}

.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #566573;
}

.headline {
  font-size: 36px;
  margin: 0;
  line-height: 1.2;
}

.lead {
  font-size: 18px;
  color: #34495e;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #0b5db7;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: #0b5db7;
  border: 1px solid #0b5db7;
}

.btn.linklike {
  background: transparent;
  color: #0b5db7;
  border: none;
  padding: 0;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
}

.card img {
  width: 120px;
  height: 120px;
  border-radius: 14px;
  background-color: #dfe7f3;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price {
  font-weight: 700;
  color: #0b5db7;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e9f3ff;
  color: #0b5db7;
  font-size: 13px;
}

.form-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.1);
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-box label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-box input,
.form-box select,
.form-box textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d0d6de;
  font-size: 15px;
}

.footer {
  background: #0f172a;
  color: #ffffff;
  padding: 40px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #a7c7ff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.disclaimer {
  font-size: 13px;
  color: #cbd5f5;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.2);
  padding: 12px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 20;
}

.sticky-cta button {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #8a94a6;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.2);
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 30;
  max-width: 340px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.policy-hero {
  background: #f2f5f9;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 960px) {
  .split-section,
  .split-section.alt {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
