* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0f0f14;
  --bg-soft: #181821;
  --bg-card: #222233;
  --accent: #e94b8a;
  --accent-soft: #ff7eb6;
  --text: #f6f2f7;
  --muted: #c2b8c9;
  --dark: #0b0b10;
  --line: rgba(255, 255, 255, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--dark);
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--text);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 20px;
}

.section.alt {
  background: var(--bg-soft);
}

.section.dark {
  background: var(--dark);
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--accent-soft);
}

.hero {
  min-height: 70vh;
  justify-content: center;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.6), rgba(19, 12, 28, 0.85)),
    url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
}

.hero h1 {
  font-size: 36px;
  line-height: 1.1;
  max-width: 680px;
}

.hero p {
  max-width: 560px;
  color: var(--muted);
}

.hero .cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-soft);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.text-cta {
  color: var(--accent-soft);
  border-bottom: 1px solid var(--accent-soft);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split .panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel-image {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.story {
  background: linear-gradient(120deg, rgba(233, 75, 138, 0.12), rgba(6, 6, 12, 0.8));
}

.callout {
  padding: 20px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--line);
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--bg-card);
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--line);
}

.card img {
  border-radius: 14px;
  height: 160px;
  object-fit: cover;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-left: 2px solid var(--accent);
  background: rgba(255, 255, 255, 0.04);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  background: #1b1b26;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-card .price {
  font-size: 24px;
  color: var(--accent-soft);
  font-weight: 600;
}

.service-select {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-option {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-card);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.lead-form label {
  font-size: 14px;
  color: var(--muted);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(6, 6, 12, 0.6);
  color: var(--text);
}

.lead-form button {
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: rgba(14, 14, 20, 0.92);
  border-radius: 999px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 8;
}

.sticky-cta a {
  display: inline-flex;
  gap: 8px;
  padding: 10px 16px;
  background: var(--accent);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--dark);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  padding: 40px 20px;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer a {
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-image {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.compact {
  padding-top: 20px;
  padding-bottom: 20px;
}

.highlight {
  color: var(--accent-soft);
}

@media (min-width: 768px) {
  .top-nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero h1 {
    font-size: 48px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards,
  .metrics,
  .price-grid,
  .service-select {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .metric,
  .price-card,
  .service-option {
    flex: 1 1 220px;
  }

  .timeline-step {
    flex-direction: row;
    justify-content: space-between;
  }

  .lead-form {
    max-width: 520px;
  }

  .cookie-banner {
    max-width: 680px;
  }
}
