* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f7fb;
  --ink: #111827;
  --muted: #5f6b7a;
  --accent: #2563eb;
  --accent-dark: #1e40af;
  --soft: #e2e8f0;
  --highlight: #fef3c7;
  --panel: #ffffff;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

header {
  background: var(--panel);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.brand svg {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: none;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--accent-dark);
}

.menu-toggle {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0 1.5rem;
  border-top: 1px solid var(--soft);
}

.mobile-nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.mobile-nav.is-hidden {
  display: none;
}

main {
  padding-bottom: 3rem;
}

section {
  padding: 3.5rem 0;
}

.hero {
  background: linear-gradient(135deg, #dbeafe 0%, #f8fafc 100%);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-card {
  background: var(--panel);
  padding: 1.6rem;
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.feature-stack {
  margin-top: 1.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
}

.button.secondary {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.section-title {
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  margin-bottom: 1rem;
}

.section-intro {
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 680px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.card {
  background: var(--panel);
  padding: 1.4rem;
  border-radius: 1.1rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature {
  display: flex;
  gap: 1rem;
  background: var(--panel);
  padding: 1.2rem;
  border-radius: 1rem;
}

.feature svg {
  width: 38px;
  height: 38px;
  color: var(--accent-dark);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.stat {
  background: #0f172a;
  color: #fff;
  padding: 1.2rem;
  border-radius: 1rem;
}

.stat span {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.quote-panel {
  background: var(--accent-dark);
  color: #fff;
  padding: 2rem;
  border-radius: 1.4rem;
}

.quote-panel p {
  font-size: 1.1rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.timeline-year {
  min-width: 64px;
  font-weight: 700;
  color: var(--accent-dark);
}

.cta {
  background: var(--highlight);
}

.cta .card {
  background: #fff;
  text-align: center;
}

.testimonial {
  background: var(--panel);
  padding: 1.4rem;
  border-radius: 1.1rem;
  border: 1px solid var(--soft);
}

.testimonial p {
  color: var(--muted);
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  background: #fff;
  border: 1px solid var(--soft);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
}

.comparison {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--soft);
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--soft);
}

.comparison-row:last-child {
  border-bottom: none;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: 1rem;
  background: var(--panel);
  border: 1px solid var(--soft);
  overflow: hidden;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.2rem 1rem;
  color: var(--muted);
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

footer {
  background: #0f172a;
  color: #cbd5f5;
  padding: 2.5rem 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: #cbd5f5;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 1.2rem;
  display: none;
  z-index: 40;
}

.cookie-banner p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 50;
}

.cookie-modal .modal-content {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.6rem;
  width: min(540px, 92%);
  box-shadow: var(--shadow);
}

.toggle-group {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 1.2rem 0;
}

.toggle-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border: 1px solid var(--soft);
  border-radius: 0.9rem;
  padding: 0.8rem;
}

.toggle-row button {
  align-self: flex-start;
  border: 1px solid var(--accent);
  background: none;
  color: var(--accent);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
}

.toggle-row button[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .hero-grid,
  .split {
    flex-direction: row;
    align-items: center;
  }

  .cards,
  .stats,
  .footer-grid {
    flex-direction: row;
  }

  .card,
  .stat,
  .testimonial {
    flex: 1;
  }

  .comparison-row {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-banner {
    max-width: 720px;
    margin: 0 auto;
  }

  .cookie-actions {
    flex-direction: row;
    justify-content: flex-end;
  }
}
