:root {
  color-scheme: light;
  --bg: #f7f6f2;
  --text: #1f2428;
  --muted: #5f6a72;
  --brand: #1f6f78;
  --brand-dark: #13464d;
  --accent: #f3b54a;
  --light: #ffffff;
  --border: #dde3e7;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--brand);
}

img {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand);
  color: var(--light);
  padding: 0.75rem 1rem;
  z-index: 10;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 5;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
}

.brand-mark {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.brand-tagline {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-toggle {
  background: var(--brand);
  color: var(--light);
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--light);
  position: absolute;
  top: 64px;
  right: 4%;
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.site-nav a {
  font-weight: 600;
}

.site-nav a.active {
  color: var(--brand);
}

.site-nav.is-open {
  display: flex;
}

.hero {
  padding: 3rem 0 2.5rem;
  background: var(--light);
}

.hero.compact {
  padding: 2.5rem 0;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-content h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-card {
  background: var(--bg);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.icon-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
}

.section {
  padding: 3rem 0;
}

.section.alt {
  background: var(--light);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.card-row,
.feature-row,
.value-grid,
.case-grid,
.team-list,
.comparison {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.card,
.feature,
.value-card,
.case-card,
.team-card,
.comparison-card {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card .price {
  font-weight: 700;
  color: var(--brand-dark);
}

.comparison-card.highlight {
  border-color: var(--brand);
  background: #e4f0f2;
}

.comparison-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.check-list li::before {
  content: "✓";
  color: var(--brand);
  margin-right: 0.5rem;
}

.checklist-panel,
.highlight-panel,
.info-panel {
  background: #eaf0f1;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stats.wide {
  gap: 1.5rem;
}

.stat {
  background: var(--light);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.stat-label {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.step {
  background: var(--light);
  border-radius: 14px;
  padding: 1.25rem;
  border: 1px solid var(--border);
}

.step-number {
  font-weight: 700;
  color: var(--brand);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-item {
  background: var(--light);
  padding: 1.2rem;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.quote-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

blockquote {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--brand-dark);
}

.quote-author {
  color: var(--muted);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--light);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.25rem 1rem;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: var(--brand);
  color: var(--light);
  font-weight: 600;
  border: none;
}

.button.ghost {
  background: transparent;
  border: 1px solid var(--brand);
  color: var(--brand);
}

.link-button {
  background: none;
  border: none;
  color: var(--brand-dark);
  font-weight: 600;
  cursor: pointer;
}

.site-footer {
  background: #11181b;
  color: #e8edf0;
  padding: 2.5rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-bottom {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
}

.footer-bottom .link-button {
  color: #e8edf0;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  width: min(960px, 92%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 30;
}

.cookie-modal-content {
  background: var(--light);
  border-radius: 16px;
  padding: 2rem;
  width: min(540px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

@media (min-width: 768px) {
  .site-nav {
    position: static;
    flex-direction: row;
    display: flex;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 1.5rem;
  }

  .nav-toggle {
    display: none;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    flex: 1.2;
  }

  .hero-card {
    flex: 0.8;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split > * {
    flex: 1;
  }

  .card-row,
  .feature-row,
  .value-grid,
  .case-grid,
  .team-list,
  .comparison {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .feature,
  .value-card,
  .case-card,
  .team-card,
  .comparison-card {
    flex: 1 1 calc(50% - 1rem);
  }

  .comparison-card {
    flex: 1 1 calc(33.333% - 1rem);
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .step {
    flex: 1 1 calc(50% - 1rem);
  }

  .footer-inner {
    flex-direction: row;
  }

  .footer-inner > * {
    flex: 1;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 2.6rem;
  }

  .card,
  .feature,
  .value-card,
  .case-card,
  .team-card {
    flex: 1 1 calc(33.333% - 1rem);
  }

  .step {
    flex: 1 1 calc(25% - 1rem);
  }
}
