* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1d1f23;
  background: #f7f7f5;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: #ffffff;
}

.section.highlight {
  background: #eef2f6;
}

.section.border-top {
  border-top: 1px solid #dde1e6;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: #3a4b5c;
  font-weight: 600;
}

.title {
  font-size: 2rem;
  margin: 10px 0 16px;
  color: #18202a;
}

.subtitle {
  font-size: 1.1rem;
  color: #4b5563;
  margin: 0 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #2e6b5e;
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: #2e6b5e;
  border-color: #2e6b5e;
}

.btn:hover,
.btn:focus {
  background: #245349;
  outline: none;
}

.btn.secondary:hover,
.btn.secondary:focus {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid #dde1e6;
  z-index: 10;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #1f2b38;
}

.brand svg {
  width: 28px;
  height: 28px;
}

.nav-toggle {
  background: transparent;
  border: 1px solid #d2d7dd;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 600;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 18px 0;
}

.nav-links a {
  font-weight: 600;
  color: #1f2b38;
}

body.nav-open .nav-links {
  display: flex;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 20px;
  }
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.hero-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #dde1e6;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #dde1e6;
  padding: 18px;
}

.feature-item svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #dde1e6;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.pill {
  background: #eef2f6;
  color: #2e6b5e;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split .panel {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #dde1e6;
  padding: 22px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #dde1e6;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat strong {
  font-size: 1.8rem;
  color: #2e6b5e;
}

.quote {
  background: #1f2b38;
  color: #ffffff;
  padding: 28px;
  border-radius: 20px;
}

.quote p {
  margin: 0 0 12px;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.logo-badge {
  background: #ffffff;
  border: 1px solid #dde1e6;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  color: #3a4b5c;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #dde1e6;
  padding: 18px;
}

.step span {
  background: #2e6b5e;
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #dde1e6;
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  padding: 0 18px 16px;
  display: none;
  color: #4b5563;
}

.faq-item.open .faq-answer {
  display: block;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #dde1e6;
  padding: 18px;
}

.comparison-row strong {
  color: #2e6b5e;
}

.footer {
  background: #18202a;
  color: #ffffff;
  padding: 40px 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.footer small {
  color: #cfd6de;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border: 1px solid #dde1e6;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(24, 32, 42, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
  padding: 20px;
}

.modal-backdrop.show {
  display: flex;
}

.modal {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #f5f6f7;
  padding: 12px;
  border-radius: 12px;
}

.toggle-row input {
  width: 18px;
  height: 18px;
}

@media (min-width: 720px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero > * {
    flex: 1;
  }

  .card-grid,
  .stats,
  .steps,
  .comparison {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat,
  .step,
  .comparison-row {
    flex: 1 1 calc(50% - 16px);
  }

  .split {
    flex-direction: row;
  }

  .split .panel {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .card,
  .stat,
  .step,
  .comparison-row {
    flex: 1 1 calc(33.333% - 16px);
  }
}
