* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c2430;
  --muted: #5b6572;
  --accent: #2e6bd8;
  --accent-dark: #244fa3;
  --soft: #f4f6fb;
  --warm: #f8f3ee;
  --highlight: #f0f6ff;
  --border: #d6dde8;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 8vw 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 1.2rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav a {
  color: var(--muted);
}

.nav a:hover {
  color: var(--accent);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 48px 8vw;
  align-items: center;
}

.split.reverse {
  background: var(--soft);
}

.split.accent {
  background: var(--highlight);
}

.split.warm {
  background: var(--warm);
}

.split .content,
.split .visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  color: var(--muted);
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.3rem;
}

p {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(25, 36, 60, 0.08);
}

.card img {
  border-radius: 14px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.metric {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  color: var(--muted);
}

.metric strong {
  color: var(--ink);
}

.testimonial {
  padding: 18px;
  border-left: 4px solid var(--accent);
  background: #fff;
  border-radius: 12px;
  color: var(--muted);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
}

.service-row span {
  color: var(--muted);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
}

.form-wrap label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: inherit;
}

.footer {
  padding: 32px 8vw 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #101623;
  color: #d9e1f0;
  margin-top: auto;
}

.footer a {
  color: #d9e1f0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  box-shadow: 0 16px 30px rgba(33, 59, 107, 0.25);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  width: min(360px, 85vw);
  box-shadow: 0 18px 40px rgba(22, 32, 50, 0.15);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

@media (min-width: 900px) {
  .topbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .split .content,
  .split .visual {
    width: 50%;
  }

  .cards {
    flex-direction: row;
  }

  .service-grid {
    flex-direction: row;
  }

  .service-row {
    width: 50%;
  }

  .metrics {
    flex-direction: row;
  }

  .metric {
    flex-direction: column;
    width: 33%;
    border-bottom: none;
    border-right: 1px solid var(--border);
    padding-right: 14px;
  }

  .metric:last-child {
    border-right: none;
  }
}
