* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  --ink: #1a1b1f;
  --muted: #5b606a;
  --lavender: #8b79ff;
  --lavender-dark: #5c4bd9;
  --sand: #f7f3ee;
  --mist: #f0f4f9;
  --leaf: #2f7d6a;
  --accent: #ff8c61;
  --line: #e2e6ee;
}

body {
  background: #ffffff;
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand span {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-weight: 600;
}

.nav-links a {
  color: var(--ink);
  padding: 6px 0;
}

.nav-links a:hover {
  color: var(--lavender-dark);
}

.sidebar-cta {
  margin-top: auto;
  padding: 12px 16px;
  background: var(--lavender);
  color: #ffffff;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
}

.main {
  flex: 1;
  padding: 28px 48px 120px;
}

.section {
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.section:last-child {
  border-bottom: none;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.1;
}

.hero-copy {
  max-width: 620px;
  color: var(--muted);
}

.hero-media {
  display: flex;
  gap: 18px;
  align-items: center;
}

.hero-media img {
  border-radius: 18px;
  width: 56%;
}

.hero-card {
  background: var(--mist);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 44%;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.primary-btn {
  background: var(--lavender);
  color: #ffffff;
}

.secondary-btn {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 280px;
}

.media-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(18, 20, 32, 0.08);
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.metric {
  flex: 1 1 160px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.metric strong {
  font-size: 1.5rem;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1 1 220px;
  padding: 18px;
  border-radius: 16px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.timeline-step {
  background: var(--lavender);
  color: #ffffff;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 600;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.pricing-row h3 {
  flex: 1 1 200px;
}

.pricing-row span {
  font-weight: 700;
  color: var(--lavender-dark);
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--mist);
  padding: 22px;
  border-radius: 16px;
}

.form-shell label {
  font-weight: 600;
}

.form-shell select,
.form-shell input,
.form-shell textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.inline-cta {
  color: var(--lavender-dark);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(35, 15, 15, 0.18);
}

.footer {
  padding-top: 36px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(20, 22, 30, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.policy-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.highlight {
  background: var(--sand);
  padding: 16px;
  border-radius: 14px;
}

.dual-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  background: #ffffff;
  border-left: 4px solid var(--lavender);
  padding: 16px;
  border-radius: 12px;
  font-style: italic;
}

.image-band {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.image-band img {
  border-radius: 14px;
  width: 100%;
  max-width: 220px;
}

.notice {
  background: var(--mist);
  border-radius: 12px;
  padding: 18px;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .sidebar-cta {
    margin-top: 0;
  }

  .main {
    padding: 24px 22px 120px;
  }

  .hero-media {
    flex-direction: column;
  }

  .hero-media img,
  .hero-card {
    width: 100%;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
