* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #17212e;
  --muted: #4b5a6b;
  --accent: #1d6fe3;
  --accent-dark: #124aa2;
  --accent-soft: #e7f0ff;
  --sand: #f7f4f1;
  --rose: #fff1f3;
  --mint: #ecf8f2;
  --shadow: 0 18px 40px rgba(17, 34, 61, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow: hidden;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  position: relative;
  padding: 48px 6vw 80px;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-copy {
  max-width: 560px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 18px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn.secondary {
  background: #fff;
  color: var(--accent-dark);
}

.btn.ghost {
  border-color: transparent;
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
  align-self: flex-end;
  max-width: 560px;
}

.hero-image img {
  box-shadow: var(--shadow);
}

.floating-tag {
  position: absolute;
  left: -8%;
  bottom: -12%;
  background: #fff;
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 220px;
  font-size: 0.85rem;
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: var(--sand);
}

.section.mint {
  background: var(--mint);
}

.section.rose {
  background: var(--rose);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 18px;
}

.section-lead {
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 620px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
}

.stagger {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stagger .card:nth-child(2) {
  transform: translateX(18px);
}

.stagger .card:nth-child(3) {
  transform: translateX(-12px);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow);
}

.timeline-badge {
  min-width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.trust-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  background: #fff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.stat strong {
  font-size: 1.5rem;
  display: block;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  padding: 24px;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6dbe3;
  font-size: 0.95rem;
}

.sticky-cta {
  align-self: flex-start;
  position: sticky;
  top: 18px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.footer {
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid #e2e6ee;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--muted);
}

.policy-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 40;
}

.cookie-banner p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (min-width: 860px) {
  .hero-wrap {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .cards {
    flex-direction: row;
  }

  .cards .card {
    flex: 1;
  }

  .stagger {
    flex-direction: row;
  }

  .stagger .card {
    flex: 1;
  }

  .timeline {
    flex-direction: row;
  }

  .timeline-item {
    flex: 1;
  }

  .trust-row {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .pricing {
    flex-direction: row;
  }

  .price-card {
    flex: 1;
  }

  .form-wrap {
    flex-direction: row;
    align-items: flex-start;
  }

  form {
    flex: 1;
  }
}
