* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0f1a17;
  --bg-light: #162522;
  --surface: #1e2f2a;
  --accent: #f3b04a;
  --accent-dark: #cf8b23;
  --text: #f6f2ea;
  --muted: #c9c2b4;
  --border: #2b3f38;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: #0b1311;
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--bg-light);
}

.section.highlight {
  background: var(--surface);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.subtitle {
  color: var(--muted);
  max-width: 720px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #1b1408;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.header {
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand svg {
  width: 28px;
  height: 28px;
}

.nav-links {
  display: none;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 0;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--text);
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 8px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  inset: 72px 16px auto 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  color: var(--muted);
}

.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--text);
}

.hero {
  padding: 72px 0 56px;
  background: radial-gradient(circle at top, #1f322b, #0b1311 60%);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-card {
  background: var(--surface);
  padding: 26px;
  border-radius: 20px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-row svg {
  width: 36px;
  height: 36px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat {
  background: #14221e;
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat span {
  font-size: 1.4rem;
  font-weight: 700;
}

.testimonial {
  background: #141f1c;
  border-left: 4px solid var(--accent);
  padding: 18px;
  border-radius: 12px;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  padding: 18px;
  border-radius: 12px;
  background: #131f1c;
  border: 1px solid var(--border);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #121b18;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  background: transparent;
  border: none;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 16px 14px;
  color: var(--muted);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-tag {
  background: #172620;
  color: var(--accent);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  align-self: flex-start;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #121f1b;
}

.footer {
  background: #0a1110;
  border-top: 1px solid var(--border);
  padding: 32px 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  background: #0f1916;
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 14px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 70;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(6, 9, 8, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 80;
}

.modal.active {
  display: flex;
}

.modal-card {
  background: #111b18;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 24px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pill {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #0f1916;
}

.badge {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .hero-inner,
  .split {
    flex-direction: row;
    align-items: center;
  }

  .hero-inner > * {
    flex: 1;
  }

  .card-grid,
  .stats,
  .service-list,
  .comparison {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat,
  .comparison-row {
    flex: 1 1 240px;
  }

  .process-steps {
    flex-direction: row;
  }

  .step {
    flex: 1 1 220px;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
