* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1f;
  --muted: #5a5f6a;
  --accent: #2b5bff;
  --accent-dark: #1a3cc4;
  --sand: #f5f1ea;
  --deep: #0f1117;
  --sage: #d9e4db;
  --rose: #f3d9d5;
  --line: #e3e6ee;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nav {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.hero {
  padding: 48px 0 24px;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--sand);
  padding: 28px;
  border-radius: 24px;
}

.hero-image {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 240px;
}

.hero-image img {
  height: 100%;
  object-fit: cover;
}

.badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: var(--deep);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.3;
}

p {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.section {
  padding: 48px 0;
}

.section.deep {
  background: var(--deep);
  color: #fff;
}

.section.deep p {
  color: #d7d9df;
}

.section.sage {
  background: var(--sage);
}

.section.rose {
  background: var(--rose);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.panel {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
}

.panel.deep {
  background: #171a24;
  border-color: #2c3140;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.stat strong {
  font-size: 1.6rem;
  display: block;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: #fff;
  border-radius: 12px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.highlight {
  color: var(--accent);
  font-weight: 600;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd4df;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.sticky-cta .btn {
  box-shadow: 0 12px 30px rgba(27, 38, 76, 0.25);
}

.footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  width: min(560px, 92%);
  display: none;
  z-index: 30;
  box-shadow: 0 18px 40px rgba(15, 17, 23, 0.2);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.page-hero {
  padding: 40px 0 24px;
  background: var(--sand);
}

.page-hero p {
  max-width: 640px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notice {
  font-size: 0.95rem;
  color: var(--muted);
}

@media (min-width: 880px) {
  .nav-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-wrap {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1.1;
  }

  .hero-image {
    flex: 1;
    min-height: 420px;
  }

  .split,
  .split.reverse {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .stats,
  .cards {
    flex-direction: row;
  }

  .stat,
  .card {
    flex: 1;
  }

  .timeline {
    flex-direction: row;
  }

  .timeline-item {
    flex: 1;
  }
}
