* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1f2a;
  --muted: #5b6473;
  --accent: #2e5bff;
  --accent-soft: #e7edff;
  --surface: #f6f7fb;
  --surface-strong: #eef0f6;
  --line: #d9dee8;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

header {
  padding: 28px 6vw 10px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--surface);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 40px 6vw 80px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
  padding: 60px 6vw;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 14px;
}

h1, h2, h3 {
  line-height: 1.2;
}

h1 {
  font-size: 2.7rem;
  margin-bottom: 16px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

p {
  margin-bottom: 16px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: var(--accent-soft);
  color: var(--accent);
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--surface);
  padding: 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--ink);
}

.image-frame {
  background: #dfe6f2;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.inline-image {
  border-radius: 14px;
  overflow: hidden;
  background: #dde4f2;
}

.section-muted {
  background: var(--surface);
}

.section-strong {
  background: var(--surface-strong);
}

.bg-network {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-network p,
.bg-network .eyebrow {
  color: #f0f2f8;
}

.bg-network .card {
  background: rgba(255, 255, 255, 0.9);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.tag {
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.form button {
  align-self: flex-start;
}

.footer {
  padding: 40px 6vw 60px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-columns > div {
  flex: 1 1 220px;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.disclaimer {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.two-column-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.two-column-list > div {
  flex: 1 1 220px;
}

.meta-box {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}

.reference-list a {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 800px) {
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
