* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f6f2;
  --ink: #151515;
  --muted: #5a5f66;
  --accent: #2b4a6f;
  --accent-2: #e6a23c;
  --panel: #ffffff;
  --panel-2: #eef2f6;
  --stroke: #d7dadd;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  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;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6%;
  border-bottom: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.9);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand small {
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent-2);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  background: #223a57;
}

.cta-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.cta-link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.section {
  padding: 64px 6%;
}

.section.alt {
  background: var(--panel-2);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.2;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--stroke);
  font-size: 0.85rem;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric {
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--stroke);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--panel);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-2);
  color: #fff;
  font-size: 0.78rem;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-step {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--stroke);
}

.step-index {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.4rem;
}

.sticky-cta {
  align-self: flex-start;
  position: sticky;
  top: 20px;
  background: var(--panel);
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  font-size: 1rem;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  margin-top: auto;
  background: #111;
  color: #fff;
  padding: 40px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  left: 18px;
  background: #111;
  color: #fff;
  padding: 18px;
  border-radius: 18px;
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent-2);
  color: #111;
}

.cookie-reject {
  background: #fff;
  color: #111;
}

@media (min-width: 768px) {
  .split {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .metrics {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .process {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .process-step {
    flex: 1 1 220px;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: row;
    gap: 18px;
  }
}
