:root {
  color-scheme: light;
  --ink: #0f172a;
  --muted: #52607a;
  --accent: #2563eb;
  --accent-dark: #1e40af;
  --soft: #f5f7fb;
  --soft-dark: #e2e8f0;
  --night: #0b1220;
  --night-soft: #1b2540;
  --gold: #f0b429;
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 24px 6vw 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.pill {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--soft-dark);
}

.main {
  flex: 1;
}

.section {
  padding: 70px 6vw;
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  background: var(--night);
  color: #f8fafc;
}

.section.dark p {
  color: #d1d5db;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .column {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.headline {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  margin: 0 0 18px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.gold {
  background: var(--gold);
  color: #1f2a37;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.metric {
  padding: 18px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--soft-dark);
  background: #ffffff;
  min-width: 160px;
}

.metric strong {
  display: block;
  font-size: 1.6rem;
}

.panel {
  padding: 26px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--soft-dark);
}

.panel.dark {
  background: var(--night-soft);
  border: 1px solid #28354f;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--soft-dark);
  background: #ffffff;
}

.service-card strong {
  font-size: 1.2rem;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.quote {
  font-size: 1.05rem;
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  margin: 0;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--soft-dark);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-hint {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  background: #0b1220;
  color: #cbd5f5;
  padding: 40px 6vw;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid var(--soft-dark);
  border-radius: 18px;
  padding: 18px;
  max-width: 320px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .btn {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e7efff;
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

.two-up {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.policy {
  max-width: 860px;
}

@media (min-width: 860px) {
  header {
    padding: 28px 8vw 12px;
  }

  .section {
    padding: 90px 8vw;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 260px;
  }

  .two-up {
    flex-direction: row;
  }

  .two-up > div {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-grid > div {
    flex: 1;
  }
}
