* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #0f1114;
  --surface: #151a20;
  --panel: #1d232b;
  --accent: #78f3b6;
  --accent-2: #ffd166;
  --text: #f6f7f9;
  --muted: #b7c0cc;
  --dark: #0b0d10;
  --border: #2c3440;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.side-nav {
  background: var(--dark);
  padding: 24px;
  border-bottom: 1px solid var(--border);
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav-links {
  list-style: none;
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--text);
}

main {
  flex: 1;
  padding: 28px 20px 80px;
}

.section {
  padding: 42px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section:last-of-type {
  border-bottom: none;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent-2);
  margin-bottom: 12px;
}

.headline {
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.subhead {
  color: var(--muted);
  max-width: 650px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.panel {
  background: var(--panel);
  padding: 22px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(120, 243, 182, 0.12);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--surface);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card strong {
  font-size: 1.05rem;
}

.price {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #0b0d10;
}

.btn.ghost {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn.secondary {
  background: var(--panel);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.stat {
  background: rgba(255, 255, 255, 0.06);
  padding: 16px;
  border-radius: 16px;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  font-style: italic;
  color: #e1e6ee;
}

.form-wrap {
  background: rgba(255, 255, 255, 0.04);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

select,
input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: sticky;
  bottom: 18px;
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.sticky-cta a {
  background: var(--accent-2);
  color: #151515;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
}

.footer {
  padding: 32px 0 12px;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 16px;
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

@media (min-width: 960px) {
  .layout {
    flex-direction: row;
  }

  .side-nav {
    width: 240px;
    border-bottom: none;
    border-right: 1px solid var(--border);
    min-height: 100vh;
  }

  .nav-links {
    flex-direction: column;
  }

  main {
    padding: 40px 48px 100px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1;
    min-width: 220px;
  }

  .stats {
    flex-direction: row;
  }

  .image-stack {
    flex-direction: row;
  }
}
