* {
  box-sizing: border-box;
}

:root {
  --brand-ink: #1f2a24;
  --brand-accent: #2f7a6f;
  --brand-accent-dark: #255f57;
  --brand-soft: #eff6f3;
  --brand-sand: #f7f4ef;
  --brand-warm: #f0e7dc;
  --brand-line: #d8e4de;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Noto Sans", system-ui, sans-serif;
  color: var(--brand-ink);
  background: #ffffff;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--brand-accent);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--brand-soft);
}

.section.warm {
  background: var(--brand-sand);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--brand-accent-dark);
  margin-bottom: 8px;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--brand-line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--brand-line);
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
}

.nav-panel {
  display: none;
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--brand-line);
  border-radius: 10px;
  padding: 16px;
}

.nav-panel.is-open {
  display: block;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-list a {
  font-weight: 600;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: fit-content;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--brand-accent);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn:hover {
  background: var(--brand-accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--brand-accent-dark);
  border: 2px solid var(--brand-accent-dark);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  border: 1px solid var(--brand-line);
  border-radius: 12px;
  padding: 18px;
  background: #ffffff;
}

.card.alt {
  background: var(--brand-warm);
  border-color: transparent;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--brand-line);
}

.stat strong {
  font-size: 1.6rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature svg {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.testimonial {
  border-left: 4px solid var(--brand-accent);
  padding: 16px 18px;
  background: #ffffff;
  border-radius: 10px;
}

.quote {
  font-style: italic;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-accent);
  color: #ffffff;
  font-weight: 700;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--brand-line);
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item .faq-content {
  padding: 0 16px 16px 16px;
  display: none;
}

.faq-item.is-open .faq-content {
  display: block;
}

.faq-item .indicator {
  font-size: 1.3rem;
  color: var(--brand-accent-dark);
}

.footer {
  padding: 32px 0 48px;
  border-top: 1px solid var(--brand-line);
  background: #ffffff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--brand-line);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  z-index: 40;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 42, 36, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 20px;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--brand-line);
  border-radius: 10px;
  padding: 12px 14px;
}

.toggle-button {
  border-radius: 20px;
  padding: 6px 14px;
  border: 1px solid var(--brand-line);
  background: #ffffff;
  cursor: pointer;
}

.toggle-button[aria-pressed="true"] {
  background: var(--brand-accent);
  color: #ffffff;
  border-color: var(--brand-accent);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--brand-line);
  background: #ffffff;
  font-size: 0.9rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--brand-accent-dark);
}

.note {
  color: #536159;
  font-size: 0.95rem;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 720px) {
  .hero-actions {
    flex-direction: row;
  }

  .cards,
  .stats,
  .comparison,
  .info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat,
  .comparison .card,
  .info-grid .card {
    flex: 1 1 240px;
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-panel {
    display: block;
    border: none;
    padding: 0;
    width: auto;
  }

  .nav-list {
    flex-direction: row;
    gap: 22px;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1 1 0;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 420px;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }
}
