:root {
  --bg: #0f172a;
  --bg-soft: #111c38;
  --panel: #ffffff;
  --panel-alt: #f2f4f8;
  --text: #0f172a;
  --text-soft: #475569;
  --brand: #1f6feb;
  --brand-dark: #0b4fb8;
  --accent: #f59e0b;
  --border: #e2e8f0;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: #f8fafc;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

header {
  background: var(--bg);
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 50;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand svg {
  width: 36px;
  height: 36px;
}

nav {
  position: relative;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: var(--bg);
  padding: 16px;
  border-radius: 12px;
  position: absolute;
  right: 0;
  top: 54px;
  min-width: 220px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.45);
}

.nav-links a {
  color: #ffffff;
  font-weight: 500;
}

.nav-links.show {
  display: flex;
}

.menu-toggle {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero {
  background: var(--bg);
  color: #ffffff;
  padding: 72px 0 56px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand);
  color: #ffffff;
}

.btn-secondary {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--panel-alt);
}

.section-title {
  font-size: 1.9rem;
  margin: 0 0 18px;
}

.lead {
  color: var(--text-soft);
  margin: 0 0 24px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--panel);
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight-panel {
  background: var(--panel);
  padding: 26px;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--panel);
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 1.6rem;
  display: block;
  color: var(--brand-dark);
}

.quote {
  background: var(--bg-soft);
  color: #ffffff;
  padding: 32px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.testimonial {
  background: #ffffff;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 8px 14px;
  background: #e2e8f0;
  border-radius: 999px;
  font-size: 0.9rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  background: #ffffff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 18px 16px;
  color: var(--text-soft);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.cta-banner {
  background: linear-gradient(120deg, #1f6feb, #0ea5e9);
  color: #ffffff;
  padding: 32px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

footer {
  background: #0b1224;
  color: #cbd5f5;
  padding: 36px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: #cbd5f5;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 120;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 24px;
  width: min(560px, 95%);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.toggle-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toggle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px;
  border-radius: 12px;
  background: var(--panel-alt);
}

.toggle-item input {
  width: 18px;
  height: 18px;
}

.service-price {
  font-weight: 700;
  color: var(--brand-dark);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-block {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .nav-links {
    position: static;
    flex-direction: row;
    background: transparent;
    display: flex;
    box-shadow: none;
    padding: 0;
    min-width: auto;
  }

  .menu-toggle {
    display: none;
  }

  .hero-grid,
  .split {
    flex-direction: row;
  }

  .hero-grid > * {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .testimonial {
    flex: 1 1 280px;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-grid > * {
    flex: 1;
  }
}
