:root {
  color-scheme: light;
  --ink: #1c1c1c;
  --muted: #575757;
  --brand: #1b4d8f;
  --accent: #f5b53f;
  --surface: #f6f3ef;
  --surface-2: #ffffff;
  --line: #e6e1da;
  --shadow: 0 18px 40px rgba(20, 20, 20, 0.12);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fbfaf8;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 22px 6vw 10px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--brand);
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: var(--surface);
}

.section.dark {
  background: #101827;
  color: #f1f1f1;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content,
.split .media {
  flex: 1 1 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 14px 0;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

p {
  margin: 0 0 16px;
  color: inherit;
}

.lead {
  font-size: 1.08rem;
  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;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #fff;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.btn.accent {
  background: var(--accent);
  color: #1a1a1a;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef1f7;
  font-size: 0.85rem;
}

.media-card {
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.media-card img {
  border-radius: 16px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card strong {
  font-size: 1.02rem;
}

.card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

.timeline-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.timeline-item div:first-child {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #dce6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--brand);
}

.quote {
  background: #fff;
  border-left: 4px solid var(--brand);
  padding: 16px 18px;
  border-radius: 12px;
}

.form-card {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7d7d7;
  font-size: 0.98rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
  background: #fff8e6;
  border: 1px solid #f0d8a7;
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  max-width: 240px;
}

.footer {
  margin-top: auto;
  padding: 50px 6vw;
  background: #0d1422;
  color: #f2f2f2;
}

.footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer a {
  color: #e9e9e9;
  font-size: 0.92rem;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  font-size: 0.85rem;
}

#cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: none;
  z-index: 20;
}

#cookie-banner p {
  margin: 0 0 12px;
  font-size: 0.92rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    max-width: none;
  }
}
