:root {
  --ink: #1c2430;
  --muted: #5a6472;
  --brand: #2f6e7d;
  --brand-soft: #e6f1f3;
  --accent: #d67c46;
  --cream: #f7f4ef;
  --stone: #e3e7ec;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--cream);
}

.section.soft {
  background: var(--brand-soft);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--stone);
  color: var(--muted);
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--brand);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.btn.ghost {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--stone);
}

.site-header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--stone);
  z-index: 10;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.2px;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  position: absolute;
  top: 72px;
  right: 4%;
  left: 4%;
  border: 1px solid var(--stone);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.nav-links a {
  font-weight: 600;
  color: var(--ink);
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--stone);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
}

body.nav-open .nav-links {
  display: flex;
}

.hero {
  padding-top: 72px;
}

.hero .hero-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin: 0;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-card {
  background: var(--brand-soft);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.icon-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.icon-card {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--stone);
}

.icon-card svg {
  width: 34px;
  height: 34px;
  color: var(--brand);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card {
  border-left: 4px solid var(--brand);
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--stone);
}

.stat span {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
}

.quote {
  font-size: 1.1rem;
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  padding: 18px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--stone);
}

.compare {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compare .card {
  background: var(--cream);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid var(--stone);
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  background: transparent;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-answer {
  padding: 0 18px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question span {
  transform: rotate(45deg);
}

.footer {
  background: var(--ink);
  color: var(--white);
  padding: 36px 0;
}

.footer a {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  background: var(--ink);
  color: var(--white);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
  padding: 24px;
}

.cookie-modal.open {
  display: flex;
}

.cookie-panel {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  width: min(520px, 92%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--stone);
}

.cookie-toggle button {
  border: 1px solid var(--stone);
  background: var(--cream);
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.company-info {
  background: var(--brand-soft);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 860px) {
  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .menu-toggle {
    display: none;
  }

  .hero .hero-grid {
    flex-direction: row;
    align-items: center;
  }

  .icon-row {
    flex-direction: row;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 280px;
  }

  .stat-row {
    flex-direction: row;
  }

  .timeline {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .timeline-item {
    flex: 1 1 240px;
  }

  .compare {
    flex-direction: row;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
