/* Base */
:root {
  --bg: #0f1216;
  --surface: #171b22;
  --surface-2: #1f2631;
  --text: #f2f3f5;
  --muted: #b9c0cc;
  --brand: #8b5cf6;
  --brand-2: #22d3ee;
  --accent: #f59e0b;
  --danger: #ef4444;
  --success: #22c55e;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  padding: 0 20px;
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section.tight {
  padding: 40px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  background: rgba(139, 92, 246, 0.12);
  color: var(--brand-2);
  padding: 6px 12px;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(242, 243, 245, 0.2);
}

.btn.ghost {
  background: transparent;
  color: var(--muted);
}

.btn:focus-visible {
  outline: 2px solid var(--brand-2);
  outline-offset: 2px;
}

.btn:hover {
  transform: translateY(-1px);
}

header {
  position: sticky;
  top: 0;
  background: rgba(15, 18, 22, 0.9);
  backdrop-filter: blur(12px);
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.logo svg {
  width: 30px;
  height: 30px;
}

.nav-links {
  display: none;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--surface);
  transform: translateY(-120%);
  transition: transform 0.2s ease;
  padding: 24px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 15;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a {
  color: var(--text);
  font-weight: 600;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.card.highlight {
  border: 1px solid rgba(139, 92, 246, 0.3);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(34, 211, 238, 0.08));
}

.pill {
  padding: 6px 10px;
  font-size: 0.8rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent);
  width: fit-content;
}

.service-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-2);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 20px;
}

.list li {
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat {
  background: var(--surface-2);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat strong {
  font-size: 1.2rem;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--surface);
  padding: 18px;
  border-radius: var(--radius);
}

.testimonial span {
  color: var(--muted);
  font-size: 0.9rem;
}

.cta {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(34, 211, 238, 0.12));
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-banner .actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 18, 22, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 40;
}

.cookie-modal.visible {
  display: flex;
}

.cookie-modal .modal-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-option {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
}

.cookie-option button {
  align-self: flex-start;
}

.contact-card {
  background: var(--surface);
  padding: 20px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notice {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (min-width: 820px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle,
  .mobile-menu {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1;
  }

  .split {
    flex-direction: row;
  }

  .split > * {
    flex: 1;
  }

  .grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .grid .card {
    flex: 1 1 calc(33% - 20px);
    min-width: 240px;
  }

  .footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    bottom: 24px;
    max-width: 420px;
  }

  .cookie-banner .actions {
    flex-direction: row;
  }
}
