*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #0f1115;
  --panel: #161a22;
  --accent: #7dd3fc;
  --accent-strong: #38bdf8;
  --muted: #a4b0be;
  --text: #f4f7fb;
  --highlight: #233046;
  --success: #8ce99a;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  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;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent-strong);
  color: #0c1118;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn.ghost {
  background: transparent;
  border-color: var(--highlight);
  color: var(--text);
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--panel);
}

.section.highlight {
  background: linear-gradient(135deg, #1c2534, #101723);
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

.lead {
  color: var(--muted);
  max-width: 720px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 17, 21, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #1f2632;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 12px;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.site-nav {
  display: none;
  gap: 18px;
  align-items: center;
}

.site-nav a {
  color: var(--muted);
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--text);
}

.menu-toggle {
  background: transparent;
  color: var(--text);
  border: 1px solid #2b3444;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-top: 1px solid #1f2632;
  background: #0f141d;
}

.mobile-nav a {
  color: var(--muted);
}

.mobile-nav a:hover {
  color: var(--text);
}

.mobile-nav.is-open {
  display: flex;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--panel);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #1f2632;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stat-grid,
.service-grid,
.feature-grid,
.testimonial-grid,
.values-grid,
.insight-grid,
.case-grid,
.comparison-grid,
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--panel);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #1f2632;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 14px;
  background: #151b25;
  border: 1px solid #243047;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--accent);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #1d2736;
  color: var(--muted);
  font-size: 0.85rem;
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
}

.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #1d2736;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-item {
  background: #101621;
  border: 1px solid #222c3f;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step span {
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-strong);
  color: #091019;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid #233046;
  background: #111826;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--text);
  padding: 16px;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 16px 16px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.address-block {
  background: var(--panel);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #1f2632;
}

.footer {
  padding: 40px 0;
  border-top: 1px solid #1f2632;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 92%);
  background: #121925;
  border-radius: 16px;
  border: 1px solid #233046;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 18, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-panel {
  width: min(640px, 92%);
  background: #0f141d;
  border-radius: 18px;
  border: 1px solid #233046;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #121a26;
  border-radius: 12px;
  padding: 12px;
}

.cookie-option input {
  accent-color: var(--accent-strong);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 760px) {
  .site-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1;
  }

  .stat-grid,
  .service-grid,
  .feature-grid,
  .testimonial-grid,
  .values-grid,
  .insight-grid,
  .case-grid,
  .comparison-grid,
  .team-grid,
  .contact-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat,
  .card,
  .comparison-item,
  .address-block {
    flex: 1 1 calc(50% - 16px);
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .stat,
  .card,
  .comparison-item,
  .address-block {
    flex: 1 1 calc(33.333% - 16px);
  }
}
