/* Base */
:root {
  --bg: #0f1b1f;
  --bg-soft: #17272d;
  --card: #1d3138;
  --accent: #f4b740;
  --accent-dark: #d9961e;
  --text: #f5f7f8;
  --muted: #c7d2d8;
  --line: #2b424b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 48px 0;
}

.section.alt {
  background: var(--bg-soft);
}

.section.light {
  background: #f5f7f8;
  color: #0f1b1f;
}

.section.light a {
  color: #0f1b1f;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 8px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

/* Header and navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 27, 31, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}

.brand-mark {
  width: 28px;
  height: 28px;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
}

.menu-toggle span {
  font-size: 14px;
}

.nav-links {
  position: absolute;
  left: 0;
  right: 0;
  top: 62px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  display: none;
}

.nav-links.open {
  display: block;
}

.nav-links ul {
  list-style: none;
  margin: 0;
  padding: 12px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-links a {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--bg-soft);
}

@media (min-width: 880px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: block;
    border: none;
    background: transparent;
  }

  .nav-links ul {
    flex-direction: row;
    padding: 0;
    gap: 18px;
  }

  .nav-links a {
    background: transparent;
    padding: 0;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #141414;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn.dark {
  background: #0f1b1f;
  color: #f5f7f8;
}

/* Hero */
.hero {
  padding: 60px 0;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-visual .icon-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (min-width: 900px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content,
  .hero-visual {
    flex: 1;
  }
}

/* Cards and feature blocks */
.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-item img {
  width: 42px;
  height: 42px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  padding: 16px;
  border-radius: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.stat strong {
  font-size: 26px;
  display: block;
}

.quote-block {
  padding: 28px;
  border-radius: 20px;
  background: #1e3a44;
  border: 1px solid var(--line);
}

.quote-block p {
  font-size: 18px;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.logo-pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
}

/* Comparison */
.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison .compare-col {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: var(--bg-soft);
  color: var(--text);
  padding: 14px 16px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.faq-answer {
  display: none;
  padding: 14px 16px;
  background: var(--bg);
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

/* Footer */
footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: #0b1417;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
}

/* Cookie banner and modal */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #0b1417;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 200;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 220;
}

.cookie-modal.open {
  display: flex;
}

.cookie-panel {
  background: #0f1b1f;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.toggle-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  min-width: 86px;
}

.toggle-state.active {
  background: var(--accent);
  color: #151515;
  border-color: var(--accent-dark);
}

/* Utility */
.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--muted);
}

@media (min-width: 860px) {
  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 280px;
  }

  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 200px;
  }

  .feature-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-item {
    flex: 1 1 260px;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison .compare-col {
    flex: 1 1 260px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
