* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #0d1b2a;
  --ink-soft: #2b3a4b;
  --muted: #5b6b7a;
  --edge: #d8e1ea;
  --accent: #2154d1;
  --accent-dark: #17348b;
  --sand: #f6f2ec;
  --mist: #eef3f8;
  --pulse: #f8d99b;
  --radius-lg: 28px;
  --radius-md: 16px;
  --shadow-lg: 0 22px 50px rgba(13, 27, 42, 0.18);
  --shadow-md: 0 14px 28px rgba(13, 27, 42, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.split-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0 8px;
}

.split-nav .nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  padding: 70px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--mist);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.hero-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateX(10px);
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero p {
  margin: 0 0 18px;
  color: var(--ink-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: var(--ink);
  color: #fff;
}

.section .section-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-block {
  background: #fff;
  border: 1px solid var(--edge);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.offset-block.shift {
  margin-left: auto;
  background: var(--mist);
  width: min(90%, 560px);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--pulse);
  font-size: 0.85rem;
  font-weight: 600;
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid var(--edge);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--edge);
  box-shadow: var(--shadow-md);
}

.card img {
  border-radius: 12px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: #fff;
  border-radius: 12px;
}

.testimonial {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--edge);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--edge);
  box-shadow: var(--shadow-md);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--edge);
  box-shadow: var(--shadow-lg);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--edge);
  font-size: 1rem;
  font-family: inherit;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.footer {
  padding: 40px 0;
  border-top: 1px solid var(--edge);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  font-size: 0.9rem;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid var(--edge);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow-md);
  display: none;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border-radius: 999px;
  border: 1px solid var(--edge);
  padding: 8px 14px;
  background: #fff;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

.banner-visible {
  display: flex;
  flex-direction: column;
}

.image-band {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-band img {
  border-radius: var(--radius-md);
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.policy-content h1 {
  margin-bottom: 0;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tagline {
  color: var(--muted);
  font-size: 0.95rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 10px 14px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid var(--edge);
  font-size: 0.85rem;
}

@media (min-width: 860px) {
  .hero-row {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1;
  }

  .hero-visual {
    flex: 1;
  }

  .section .section-inner {
    flex-direction: row;
    align-items: flex-start;
  }

  .section .section-inner.reverse {
    flex-direction: row-reverse;
  }

  .offset-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .stat-row {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .timeline {
    flex-direction: row;
  }

  .timeline-item {
    flex: 1;
  }

  .pricing-grid {
    flex-direction: row;
  }

  .price-card {
    flex: 1;
  }

  .image-band {
    flex-direction: row;
  }

  .contact-grid {
    flex-direction: row;
  }
}
