* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2428;
  --muted: #5a6772;
  --brand: #2f6fed;
  --accent: #f0b429;
  --paper: #f7f4f0;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(22, 26, 29, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fcfbf9;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.top-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border-left: 2px solid var(--accent);
  padding-left: 0.75rem;
}

.split-section {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  align-items: center;
  padding: 3.5rem 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.split-media {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.media-frame {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background-color: #e8e3dd;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
}

.hero {
  background: var(--paper);
  border-radius: 32px;
  padding: 2rem;
}

.eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.headline {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.15;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.button {
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button.primary {
  background: var(--brand);
  color: #fff;
}

.button.secondary {
  border-color: var(--brand);
  color: var(--brand);
}

.inline-link {
  color: var(--brand);
  font-weight: 600;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card {
  flex: 1;
  min-width: 240px;
  background: var(--card);
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.card-media {
  border-radius: 14px;
  overflow: hidden;
  background-color: #e6e9ef;
}

.card-media img {
  width: 100%;
  height: 160px;
}

.price {
  font-weight: 700;
  color: var(--brand);
}

.highlight {
  background: #111827;
  color: #f5f5f5;
  border-radius: 28px;
  padding: 2.5rem;
}

.background-split {
  background-image: url("https://images.unsplash.com/photo-1472289065668-ce650ac443d2?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #202833;
  background-blend-mode: multiply;
}

.highlight .inline-link {
  color: #f0b429;
}

.quote {
  border-left: 3px solid var(--brand);
  padding-left: 1rem;
  font-style: italic;
  color: var(--muted);
}

.form-block {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

select,
input,
textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid #c8d0d9;
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: sticky;
  top: 1.5rem;
  background: #fff7e6;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.footer {
  margin-top: auto;
  padding: 2.5rem 0 3.5rem;
  background: #111827;
  color: #f5f5f5;
}

.footer a {
  color: #f5f5f5;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-col {
  flex: 1;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #cbd5f5;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  z-index: 50;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
}

@media (max-width: 960px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }
  .sticky-cta {
    position: static;
  }
}
