/* Base */
:root {
  --bg: #0f172a;
  --surface: #111827;
  --card: #0b1220;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --brand: #22d3ee;
  --brand-2: #38bdf8;
  --accent: #a78bfa;
  --border: #1f2937;
  --success: #10b981;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
}

.section-title {
  font-size: 28px;
  margin: 0 0 12px;
}

.section-lead {
  color: var(--muted);
  margin: 0 0 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.12);
  color: var(--brand);
  font-size: 13px;
  letter-spacing: 0.2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #04121d;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(34, 211, 238, 0.2);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.logo-mark {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: none;
  gap: 20px;
  align-items: center;
  font-size: 15px;
}

.nav-links a {
  color: var(--muted);
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--text);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 20px 24px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--muted);
  padding: 6px 0;
}

/* Hero */
.hero {
  padding: 80px 0 64px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.12), rgba(167, 139, 250, 0.1));
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-actions .btn {
  width: 100%;
}

/* Feature blocks */
.feature-list,
.service-list,
.stats,
.steps,
.team-list,
.values,
.policy-list,
.footer-grid,
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
}

.card h3 {
  margin-top: 0;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: var(--muted);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  border-left: 2px solid var(--brand);
  padding-left: 16px;
  color: var(--muted);
}

.testimonial strong {
  color: var(--text);
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  background: var(--surface);
}

.footer-grid a {
  color: var(--muted);
}

.footer-legal {
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions .btn {
  width: 100%;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 30;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal .modal-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(148, 163, 184, 0.08);
}

.toggle-row span {
  color: var(--muted);
  font-size: 14px;
}

.toggle-row input {
  width: 20px;
  height: 20px;
}

/* Responsive */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-actions {
    flex-direction: row;
  }

  .hero-actions .btn {
    width: auto;
  }

  .feature-list,
  .service-list,
  .stats,
  .steps,
  .team-list,
  .values,
  .policy-list,
  .footer-grid,
  .contact-grid,
  .testimonials {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-list .card,
  .service-list .card,
  .stats .card,
  .steps .card,
  .team-list .card,
  .values .card,
  .policy-list .card,
  .testimonials .card,
  .contact-grid .card {
    flex: 1 1 280px;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .cookie-actions .btn {
    width: auto;
  }
}
