* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #1c1c1c;
  background: #f7f6f3;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #e6e1da;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.2px;
}

.brand svg {
  width: 28px;
  height: 28px;
}

.nav-toggle {
  border: 1px solid #1c1c1c;
  background: transparent;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.95rem;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 12px 0;
}

.nav-links a {
  font-weight: 500;
}

.nav-links.open {
  display: flex;
}

.hero {
  padding: 56px 0 40px;
  background: #f2efe9;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.05rem;
  max-width: 520px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1c1c1c;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn.primary {
  background: #1c1c1c;
  color: #fff;
}

.btn.secondary {
  background: transparent;
}

.section {
  padding: 48px 0;
}

.section.alt {
  background: #fff;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.section-intro {
  max-width: 640px;
  margin-bottom: 24px;
  color: #4a4a4a;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #ebe4db;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card.alt {
  background: #f7f2ea;
}

.card h3 {
  font-size: 1.2rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-item svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: #1c1c1c;
  color: #fff;
  padding: 18px;
  border-radius: 12px;
}

.stat strong {
  font-size: 1.6rem;
  display: block;
}

.testimonial {
  background: #fff;
  border-left: 4px solid #1c1c1c;
  padding: 18px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote {
  font-style: italic;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1c1c1c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #ded7ce;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  background: #fff;
  border: none;
  width: 100%;
  text-align: left;
  padding: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-answer {
  padding: 0 16px 16px;
  display: none;
  color: #4a4a4a;
}

.faq-item.open .faq-answer {
  display: block;
}

.info-block {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #ebe4db;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.comparison-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #ebe4db;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #1c1c1c;
  color: #fff;
  font-size: 0.8rem;
}

.site-footer {
  background: #1c1c1c;
  color: #fff;
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #ded7ce;
  width: min(560px, 92%);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 16px;
}

.cookie-modal.show {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    gap: 18px;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-text {
    flex: 1;
  }

  .hero-actions {
    flex-direction: row;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .feature-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-item {
    flex: 1 1 280px;
  }

  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 200px;
  }

  .process-steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .step {
    flex: 1 1 250px;
  }

  .cookie-actions,
  .modal-actions {
    flex-direction: row;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-links {
    flex-direction: row;
    gap: 16px;
  }

  .comparison-table {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .comparison-row {
    flex: 1 1 240px;
  }
}
