* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f6f7fb;
  --ink: #1b1f2a;
  --muted: #5e6b7a;
  --accent: #2d5bff;
  --accent-dark: #1c3fc7;
  --sand: #eef1f6;
  --night: #121723;
  --line: #d8dde6;
  --soft: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.site-header {
  padding: 24px 6vw;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: #edf1ff;
  padding: 6px 10px;
  border-radius: 999px;
}

.split-section {
  display: flex;
  gap: 36px;
  align-items: center;
  padding: 70px 8vw;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
  min-width: 260px;
}

.split-media {
  flex: 1;
  min-width: 260px;
  display: flex;
  justify-content: center;
}

.section-alt {
  background: var(--sand);
}

.section-dark {
  background: var(--night);
  color: #f5f7ff;
}

.section-dark a {
  color: #cdd7ff;
}

.headline {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0 0 12px;
}

.subheadline {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 20px;
}

.section-dark .subheadline {
  color: #c7cde5;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-spaced {
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(45, 91, 255, 0.08);
  transform: translateY(-2px);
}

.image-frame {
  background: #dfe6ee;
  padding: 10px;
  border-radius: 22px;
}

.image-frame-dark {
  background: #1a2233;
}

.image-frame img {
  border-radius: 16px;
  width: 100%;
  height: auto;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-price {
  font-weight: 700;
  color: var(--accent);
}

.inline-testimonial {
  font-style: italic;
  color: var(--muted);
  margin-top: 14px;
}

.form-card {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-field input,
.form-field select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.footer {
  padding: 40px 8vw;
  background: var(--soft);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
}

.sticky-cta a {
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(17, 29, 70, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.sticky-cta a:hover {
  background: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #1a2233;
  color: #fff;
}

.bg-insight .subheadline {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 900px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
