* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1f;
  --muted: #6f6f7a;
  --accent: #2563eb;
  --accent-dark: #1e3a8a;
  --sand: #f7f3ed;
  --storm: #0f172a;
  --mist: #eef2f7;
  --sun: #f4c24d;
  --radius: 22px;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

header {
  padding: 28px 6vw 12px;
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 0 6vw 80px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.pad {
  padding: 36px;
  border-radius: var(--radius);
}

.section.light {
  background: var(--mist);
}

.section.sand {
  background: var(--sand);
}

.section.bg-graph {
  background-image: linear-gradient(rgba(247, 243, 237, 0.92), rgba(247, 243, 237, 0.92)),
    url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section.dark {
  background: var(--storm);
  color: #f8fafc;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw 24px;
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.08), rgba(244, 194, 77, 0.2));
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
}

.hero-title {
  font-size: clamp(2rem, 2vw + 2rem, 3.2rem);
  line-height: 1.1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  color: var(--muted);
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: 2px solid transparent;
  transition: 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn.light {
  background: #ffffff;
  color: var(--storm);
}

.inline-link {
  font-weight: 600;
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.card.dark {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: none;
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 600;
}

.image-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 12% 10% auto auto;
  width: 70%;
  height: 70%;
  background: rgba(244, 194, 77, 0.25);
  border-radius: 24px;
  z-index: -1;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}

.quote {
  font-style: italic;
  font-size: 1rem;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.price-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.2);
  font-size: 1rem;
}

footer {
  padding: 32px 6vw 60px;
  background: var(--storm);
  color: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer a {
  color: #f8fafc;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
  display: none;
  z-index: 50;
  gap: 12px;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(15, 23, 42, 0.92);
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 16px;
  max-width: 220px;
}

.sticky-cta a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}

.page-title {
  font-size: clamp(2rem, 2vw + 1.5rem, 2.8rem);
}

.muted {
  color: var(--muted);
}

@media (min-width: 900px) {
  .nav-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
  }

  .hero-card {
    flex: 1.1;
  }

  .hero-media {
    flex: 0.9;
  }

  .split {
    flex-direction: row;
    align-items: center;
    gap: 36px;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .cards .card {
    flex: 1;
  }

  .price-list {
    flex-direction: row;
  }

  .price-item {
    flex: 1;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
