* {
  box-sizing: border-box;
}

:root {
  --ink: #0b1220;
  --muted: #52607a;
  --accent: #2f5cff;
  --accent-dark: #1e3db6;
  --soft: #f2f5fb;
  --warm: #fff4e8;
  --cool: #eef7ff;
  --card: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background-color: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 6%;
  border-bottom: 1px solid #e4e8f0;
  background-color: #ffffff;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  background-color: var(--warm);
  color: #704515;
  border-radius: 999px;
  font-size: 0.8rem;
}

.hero {
  padding: 60px 6% 40px;
  background-color: var(--soft);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
}

.section {
  padding: 60px 6%;
}

.section.alt {
  background-color: var(--soft);
}

.section.warm {
  background-color: var(--warm);
}

.section.cool {
  background-color: var(--cool);
}

.section-title {
  margin: 0 0 14px;
  font-size: 2rem;
}

.muted {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background-color: var(--accent);
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--accent-dark);
}

.btn.outline {
  background-color: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.image-frame {
  background-color: #dce6f6;
  border-radius: 16px;
  overflow: hidden;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.stat {
  flex: 1 1 180px;
  background-color: #ffffff;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #e2e7f1;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background-color: var(--card);
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #e2e7f1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 160px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.form-wrap {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e2e7f1;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #cbd4e6;
  font-size: 1rem;
}

.inline-link {
  color: var(--accent-dark);
  text-decoration: underline;
}

.bg-immersive {
  background-color: #1b2a44;
  background-image: url("https://images.unsplash.com/photo-1483058712412-4245e9b90334?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.overlay {
  background-color: rgba(8, 14, 28, 0.72);
  padding: 60px 6%;
}

.footer {
  padding: 40px 6%;
  background-color: #0f172a;
  color: #d7ddea;
}

.footer a {
  color: #d7ddea;
  text-decoration: underline;
}

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border: 1px solid #d4def2;
  border-radius: 999px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.sticky-cta a {
  color: var(--accent-dark);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 90px;
  background-color: #ffffff;
  border: 1px solid #d4def2;
  border-radius: 14px;
  padding: 16px;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #b5c0d6;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 220px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #e2e7f1;
  background-color: #ffffff;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background-color: #ffffff;
  border: 1px solid #e2e7f1;
  font-size: 0.85rem;
}

.cta-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 720px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
    justify-content: center;
  }

  .cookie-banner {
    bottom: 120px;
  }
}
