:root {
  --bg: #0b1220;
  --bg-soft: #111a2b;
  --bg-light: #f8fafc;
  --text: #0f172a;
  --text-soft: #475569;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --brand: #1e293b;
  --card: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg-light);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  margin: 0 0 12px;
}

p {
  margin: 0 0 16px;
  color: var(--text-soft);
}

ul {
  margin: 0;
  padding: 0 0 0 18px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: #f1f5f9;
}

.section.dark {
  background: var(--bg);
  color: #e2e8f0;
}

.section.dark p,
.section.dark li {
  color: #cbd5f5;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.row.wrap {
  flex-wrap: wrap;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.card.soft {
  background: #f8fafc;
}

.card.dark {
  background: var(--bg-soft);
  border-color: rgba(226, 232, 240, 0.12);
  color: #e2e8f0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #0b1220;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn.ghost {
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(226, 232, 240, 0.3);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 18px;
  font-weight: 500;
}

.nav-toggle {
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: transform 0.2s ease;
}

.mobile-menu {
  display: none;
  position: absolute;
  inset: 64px 0 auto 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 18px 0 24px;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
  font-weight: 500;
}

.hero {
  padding: 80px 0 60px;
}

.hero .panel {
  background: var(--bg);
  color: #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero .panel h1 {
  color: #f8fafc;
}

.hero .panel p {
  color: #cbd5f5;
}

.hero .highlight {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 20px;
  color: var(--text);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-item svg {
  width: 28px;
  height: 28px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 1.4rem;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card h3 {
  margin-bottom: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comparison .card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #ffffff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 18px 16px;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.footer {
  background: #0b1220;
  color: #cbd5f5;
  padding: 40px 0;
}

.footer .row {
  gap: 20px;
}

.footer a {
  color: #e2e8f0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 8px 12px;
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 500;
}

.banner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 16px;
  display: none;
  z-index: 40;
  box-shadow: var(--shadow);
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.5);
  padding: 16px;
  z-index: 50;
}

.cookie-modal.show {
  display: flex;
}

.cookie-panel {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 24px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow);
}

.cookie-panel label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.note {
  font-size: 0.95rem;
  color: var(--text-soft);
}

@media (min-width: 768px) {
  .row {
    flex-direction: row;
    align-items: stretch;
  }

  .row.center {
    align-items: center;
  }

  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .hero .panel {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero .panel > div {
    flex: 1;
  }

  .service-cards,
  .comparison,
  .testimonials,
  .stats {
    flex-direction: row;
  }

  .service-card,
  .comparison .card,
  .testimonials .quote,
  .stat {
    flex: 1;
  }

  .feature-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-item {
    flex: 1 1 240px;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    bottom: 24px;
    max-width: 360px;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 80px 0;
  }

  .hero {
    padding: 96px 0 72px;
  }
}
