:root {
  --ink: #0f1a24;
  --muted: #5a6b7c;
  --brand: #2357ff;
  --brand-dark: #1737b8;
  --bg: #f5f7fb;
  --panel: #ffffff;
  --accent: #e7eefc;
  --warm: #f3efe8;
  --line: #dbe2ee;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}
a {
  color: var(--brand);
  text-decoration: none;
}
header {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.nav .brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}
.nav .links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.nav .ad-label {
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--accent);
  padding: 6px 10px;
  border-radius: 16px;
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero {
  background: linear-gradient(120deg, rgba(35,87,255,0.08), rgba(243,239,232,0.6));
}
.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  padding: 64px 0;
}
.split.reverse {
  flex-direction: row-reverse;
}
.split .text,
.split .media {
  flex: 1 1 320px;
}
.media-card {
  background: #dbe6f3;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}
.media-card img {
  width: 100%;
  height: 100%;
}
.media-card .tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255,255,255,0.9);
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
}
.section {
  padding: 64px 0;
}
.section.alt {
  background: var(--panel);
}
.section.warm {
  background: var(--warm);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.75rem;
  color: var(--muted);
}
.h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 12px 0 18px;
}
.h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin: 12px 0 12px;
}
.cta-row {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 28px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  gap: 8px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn.secondary {
  background: #fff;
  color: var(--brand);
  border-color: var(--brand);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(35,87,255,0.2);
}
.inline-cta {
  font-weight: 600;
  border-bottom: 2px solid var(--brand);
}
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.card {
  flex: 1 1 260px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card .card-media {
  background: #e4ecf7;
}
.card img {
  width: 100%;
  height: 180px;
}
.card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price {
  font-weight: 700;
  color: var(--brand-dark);
}
.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.badge {
  background: var(--accent);
  color: var(--brand-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
}
.quote {
  background: #ffffff;
  border-left: 4px solid var(--brand);
  padding: 18px 20px;
  border-radius: 12px;
}
.form-wrap {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
}
form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
label {
  font-weight: 600;
}
input, select, textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
}
footer {
  background: #0b1520;
  color: #e6edf7;
  padding: 48px 0;
  margin-top: 64px;
}
footer a {
  color: #b8c7ff;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-col {
  flex: 1 1 220px;
}
.small {
  font-size: 0.85rem;
  color: #c7d2e3;
}
.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  background: var(--brand);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 20;
  box-shadow: 0 12px 24px rgba(15,26,36,0.2);
}
.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  max-width: 320px;
  z-index: 30;
  box-shadow: 0 10px 28px rgba(15,26,36,0.18);
}
.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
.cookie-actions button.secondary {
  background: #fff;
  color: var(--brand);
}
.notice {
  background: #fff6e6;
  border: 1px solid #f0d7ad;
  padding: 16px;
  border-radius: 12px;
}
.bg-sky { background-color: #dfe8f4; }
.bg-ice { background-color: #e8eff7; }
.bg-warm { background-color: #e7e2d8; }
.bg-cloud { background-color: #e1e9f1; }
.bg-mist { background-color: #e4eff5; }
.bg-ink { background-color: #dde7f2; }
.bg-frost { background-color: #e3ebf6; }
.bg-glow { background-color: #dfe8f4; }
.bg-plain { background-color: #e6edf6; }
.bg-graph { background-color: #e7eff8; }
.bg-note { background-color: #e2eaf4; }
.bg-lens { background-color: #e6edf7; }
.bg-slate { background-color: #dde6f2; }
@media (max-width: 820px) {
  .nav {
    justify-content: center;
  }
  .sticky-cta {
    position: static;
    display: inline-flex;
    margin: 16px 0 0;
  }
}
