* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2933;
  --muted: #52606d;
  --accent: #1f6feb;
  --accent-dark: #0f4fa8;
  --paper: #f5f7fa;
  --warm: #fff7ed;
  --line: #d9e2ec;
  --soft: #f0f4f8;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

header {
  padding: 24px 6%;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft);
}

.section {
  padding: 70px 6%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section.alt {
  background: var(--paper);
}

.section.warm {
  background: var(--warm);
}

.split {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split .visual {
  flex: 1 1 320px;
}

.image-box {
  background: #e3e8ef;
  border-radius: 18px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-title {
  font-size: 40px;
  line-height: 1.2;
}

.tagline {
  color: var(--muted);
  font-size: 18px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button:active {
  transform: translateY(1px);
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  font-size: 20px;
  color: var(--accent-dark);
}

.inline-link {
  font-weight: 600;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  padding: 16px;
  border-left: 4px solid var(--accent);
  background: #ffffff;
}

.form-box {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field input,
.field select,
.field textarea {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 16px;
}

.pill-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

.footer {
  padding: 32px 6%;
  background: #0f172a;
  color: #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #93c5fd;
}

.legal-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.disclaimer {
  font-size: 13px;
  color: #cbd5f5;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.sticky-cta a {
  background: #111827;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  max-width: 360px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  z-index: 20;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.centered {
  text-align: center;
}

.note {
  font-size: 14px;
  color: var(--muted);
}

.bg-press {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #0f172a;
  color: #ffffff;
  border-radius: 18px;
  padding: 32px;
}

.bg-press .content {
  background: rgba(15, 23, 42, 0.7);
  padding: 20px;
  border-radius: 14px;
}

.bg-desk {
  background-image: url("https://images.unsplash.com/photo-1473186578172-c141e6798cf4?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #f8fafc;
  border-radius: 18px;
  padding: 32px;
}

.bg-desk .content {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 14px;
}

.bg-planning {
  background-image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #f1f5f9;
  border-radius: 18px;
  padding: 32px;
}

.bg-planning .content {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 14px;
}

.bg-report {
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #eef2f6;
  border-radius: 18px;
  padding: 32px;
}

.bg-report .content {
  background: rgba(255, 255, 255, 0.92);
  padding: 20px;
  border-radius: 14px;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 10px;
  gap: 12px;
  flex-wrap: wrap;
}

.table-row strong {
  font-weight: 600;
}

@media (max-width: 820px) {
  .hero-title {
    font-size: 32px;
  }

  .sticky-cta {
    position: static;
    margin: 0 6% 32px;
  }
}
