* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1f2a;
  background-color: #f7f8fb;
  line-height: 1.6;
}

a {
  color: #1b4fd6;
  text-decoration: underline;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6vw;
  background: #ffffff;
  border-bottom: 1px solid #e2e6f0;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.85rem;
  color: #5e6a85;
  padding: 4px 10px;
  border-radius: 16px;
  background: #f1f3f9;
  display: inline-flex;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.nav-links a {
  color: #1b1f2a;
  text-decoration: none;
  font-weight: 600;
}

.main {
  flex: 1;
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #ffffff;
}

.split {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1 1 52%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .media {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.media-box {
  background-color: #dfe7ff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
}

.media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero {
  padding-top: 80px;
}

.hero-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(24, 32, 56, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.button {
  border: none;
  background: #1b4fd6;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 28px;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: #e7ecff;
  color: #1b4fd6;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  flex: 1 1 220px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e5e8f2;
}

.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  background-color: #e6ebff;
}

.price {
  font-weight: 700;
  color: #0f2454;
}

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef1f8;
  color: #4c5873;
  font-size: 0.85rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-dot {
  width: 10px;
  height: 10px;
  background: #1b4fd6;
  border-radius: 50%;
  margin-top: 8px;
}

.form-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e5e8f2;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7dbe8;
  font-size: 1rem;
  background: #fafbff;
}

.footer {
  background: #0e1424;
  color: #d6dbea;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #c8d4ff;
}

.footer .links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  padding: 12px 18px;
  border-radius: 30px;
  border: none;
  background: #111a32;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(12, 15, 30, 0.28);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid #dfe4f2;
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 560px;
  width: calc(100% - 40px);
  box-shadow: 0 12px 30px rgba(16, 20, 42, 0.18);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.two-col {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 260px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
  }
}
