* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0f1216;
  --bg-soft: #171c22;
  --bg-light: #f5f2ef;
  --accent: #ff8b4d;
  --accent-2: #6ed6c5;
  --text: #f7f4f0;
  --text-dark: #1b1f24;
  --muted: #aab2bd;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
  color: var(--muted);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-weight: 600;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 60px 0 40px;
  background: linear-gradient(120deg, rgba(15, 18, 22, 0.85), rgba(15, 18, 22, 0.2)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1600&q=80") center/cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #1a1a1a;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent-2);
  color: var(--accent-2);
}

.section {
  padding: 16px 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 720px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
}

.muted {
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: rgba(110, 214, 197, 0.15);
  color: var(--accent-2);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.quote {
  background: var(--bg-soft);
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quote span {
  color: var(--accent);
}

.grid-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--bg-soft);
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card .price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-2);
}

.callout {
  background: var(--accent);
  color: #1b1f24;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  background: rgba(255, 255, 255, 0.06);
  padding: 16px;
  border-radius: 16px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-note {
  background: rgba(255, 139, 77, 0.12);
  padding: 18px;
  border-radius: 16px;
  color: #ffc7a5;
}

.form-wrap {
  background: var(--bg-soft);
  padding: 28px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #0f1216;
  color: var(--text);
}

textarea {
  min-height: 120px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-2);
  color: #0d1014;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 5;
}

.footer {
  padding: 40px 0 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.light-page {
  background: var(--bg-light);
  color: var(--text-dark);
}

.light-page .muted {
  color: #5b6571;
}

.light-page .card,
.light-page .form-wrap,
.light-page .quote,
.light-page .callout {
  background: #ffffff;
  color: var(--text-dark);
}

.light-page input,
.light-page select,
.light-page textarea {
  background: #ffffff;
  color: var(--text-dark);
  border: 1px solid #cfd6dd;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #10141a;
  border-radius: 18px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #1b1f24;
}

.cookie-reject {
  background: transparent;
  border: 1px solid var(--muted);
  color: var(--muted);
}

@media (min-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: row;
    align-items: center;
  }

  .grid-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 18px);
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .timeline-item {
    gap: 24px;
  }

  .pricing {
    flex-direction: row;
  }

  .pricing .grid-cards {
    flex: 2;
  }
}
