*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #0f141a;
  --bg-soft: #151c24;
  --bg-panel: #1b2530;
  --text: #e7edf5;
  --muted: #b7c3d6;
  --accent: #d9a441;
  --accent-2: #7db6b1;
  --border: #2b3948;
  --shadow: 0 10px 30px rgba(6, 12, 18, 0.35);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1120px;
  --gap: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--accent);
  color: #0c1116;
  padding: 8px 14px;
  border-radius: 6px;
  z-index: 1000;
}

.skip-link:focus {
  left: 20px;
}

header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(15, 20, 26, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0c1116;
  font-size: 14px;
  font-weight: 700;
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: fixed;
  top: 64px;
  right: 16px;
  background: var(--bg-panel);
  padding: 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  min-width: 200px;
}

.nav-links.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-links a {
  color: var(--text);
  padding: 6px 0;
}

.nav-links a:hover {
  color: var(--accent);
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--bg-soft);
}

.section-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 12px;
  color: var(--accent-2);
  margin-bottom: 8px;
}

.hero {
  padding: 96px 0 72px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: 34px;
  line-height: 1.15;
  margin: 0;
}

.hero p {
  color: var(--muted);
  max-width: 620px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #0c1116;
}

.btn.secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn.ghost {
  background: transparent;
  color: var(--accent-2);
}

.feature-grid,
.card-grid,
.stats-grid,
.testimonial-grid,
.faq-grid,
.comparison-grid {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3,
.card h4 {
  margin: 0;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(217, 164, 65, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-badge svg {
  width: 24px;
  height: 24px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
}

.list li span {
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  flex-shrink: 0;
}

.stats-grid .card {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}

.quote {
  font-size: 18px;
  color: var(--muted);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 1px solid var(--border);
  padding-left: 20px;
}

.timeline-item h4 {
  margin-bottom: 6px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(125, 182, 177, 0.15);
  color: var(--accent-2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: var(--bg-panel);
  color: var(--text);
  border: none;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
}

.faq-panel {
  padding: 0 18px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-panel {
  display: block;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-panel);
}

.highlight {
  background: linear-gradient(120deg, rgba(217, 164, 65, 0.16), rgba(125, 182, 177, 0.12));
  border-radius: var(--radius);
  padding: 28px;
}

footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 300;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(9, 12, 16, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 320;
}

.modal.is-hidden {
  display: none;
}

.modal-content {
  background: var(--bg-panel);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.toggle-pill[aria-pressed="true"] {
  background: rgba(217, 164, 65, 0.2);
  border-color: rgba(217, 164, 65, 0.4);
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.section-title h2 {
  margin: 0;
  font-size: 26px;
}

.muted {
  color: var(--muted);
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
}

@media (min-width: 720px) {
  .hero h1 {
    font-size: 46px;
  }

  .feature-grid,
  .card-grid,
  .stats-grid,
  .testimonial-grid,
  .faq-grid,
  .comparison-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .comparison-row {
    flex: 1 1 calc(50% - var(--gap));
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    flex-direction: row;
    background: transparent;
    border: none;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    padding: 0;
    gap: 18px;
  }

  .nav-links a {
    padding: 0;
  }

  .card,
  .comparison-row {
    flex: 1 1 calc(33.333% - var(--gap));
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
  }
}
