* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0f1016;
  --bg-soft: #171a24;
  --bg-light: #f4f3f0;
  --text: #f7f5f2;
  --text-dark: #101015;
  --muted: #c8c4bd;
  --accent: #5fe1b2;
  --accent-2: #f7b267;
  --border: rgba(255, 255, 255, 0.12);
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 8%;
  border-bottom: 1px solid var(--border);
  background: rgba(15, 16, 22, 0.7);
  backdrop-filter: blur(6px);
}

.brand {
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--text);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 90px 8% 70px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  opacity: 0.25;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 740px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.1;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-dark);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 70px 8%;
  border-top: 1px solid var(--border);
}

.section.light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section.light .muted {
  color: #555055;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row.reverse {
  flex-direction: column-reverse;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  border: 1px solid var(--border);
}

.section.light .card {
  background: white;
  border-color: rgba(16, 16, 21, 0.12);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(95, 225, 178, 0.15);
  color: var(--accent);
  font-size: 0.85rem;
  width: fit-content;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.05rem;
}

.image-strip {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-strip img {
  border-radius: 18px;
}

.highlight {
  background: rgba(247, 178, 103, 0.2);
  color: var(--text-dark);
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 600;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.section.light .stat {
  background: rgba(16, 16, 21, 0.06);
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
}

.section.light .form-shell {
  background: white;
  border-color: rgba(16, 16, 21, 0.12);
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(15, 16, 22, 0.65);
  color: var(--text);
  font-size: 0.95rem;
}

.section.light input,
.section.light select,
.section.light textarea {
  background: #f7f6f3;
  color: var(--text-dark);
  border-color: rgba(16, 16, 21, 0.2);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
}

.section.light .price-item {
  background: #ffffff;
  border-color: rgba(16, 16, 21, 0.1);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.section.light .price {
  color: #0a5c3f;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
  background: rgba(247, 178, 103, 0.18);
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid rgba(247, 178, 103, 0.35);
  max-width: 240px;
}

.inline-cta {
  color: var(--accent-2);
  font-weight: 600;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 40px 8%;
  border-top: 1px solid var(--border);
  background: #0c0d12;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  max-width: 340px;
  background: #11141c;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.accept {
  background: var(--accent);
  color: var(--text-dark);
}

.reject {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.light-block {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

@media (min-width: 880px) {
  .split-row,
  .split-row.reverse {
    flex-direction: row;
    align-items: center;
  }

  .split-row.reverse {
    flex-direction: row-reverse;
  }

  .card-grid {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .image-strip {
    flex-direction: row;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .two-col {
    flex-direction: row;
  }

  .two-col > div {
    flex: 1;
  }

  .pricing-list {
    flex-direction: row;
  }

  .price-item {
    flex: 1;
  }
}
