*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f5f1;
  --surface: #ffffff;
  --accent: #3a6b5e;
  --accent-dark: #2c5147;
  --muted: #6a6f6b;
  --text: #1f2623;
  --soft: #e2e7e1;
  --highlight: #cfe1d6;
  --danger: #8d3f3f;
  --shadow: 0 12px 30px rgba(15, 20, 18, 0.08);
  --radius: 18px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 2rem 1.5rem 4rem;
}

section {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
}

.section-muted {
  background: var(--soft);
  box-shadow: none;
}

.section-highlight {
  background: var(--highlight);
  box-shadow: none;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.button.ghost {
  background: transparent;
  color: var(--accent-dark);
}

.button:focus-visible {
  outline: 3px solid rgba(58, 107, 94, 0.35);
  outline-offset: 2px;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.button.secondary:hover,
.button.ghost:hover {
  background: rgba(58, 107, 94, 0.08);
  transform: translateY(-2px);
}

header {
  background: var(--surface);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand svg {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--surface);
  padding: 1rem 1.5rem 1.5rem;
}

.nav-links a {
  font-weight: 600;
  color: var(--accent-dark);
}

.nav-links a.active {
  color: var(--accent);
}

.menu-toggle {
  background: transparent;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  cursor: pointer;
}

.menu-toggle svg {
  width: 28px;
  height: 28px;
}

.nav-open .nav-links {
  display: flex;
}

.hero {
  padding: 2.5rem 2rem;
}

.hero h1 {
  font-size: 2.1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card {
  background: var(--surface);
  border-radius: 14px;
  padding: 1.4rem;
  border: 1px solid rgba(58, 107, 94, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card svg {
  width: 40px;
  height: 40px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(58, 107, 94, 0.15);
  color: var(--accent-dark);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
}

.stat-item span {
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 1.2rem 1.4rem;
  border-radius: 12px;
}

.testimonial cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  color: var(--muted);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.timeline-item span {
  font-weight: 700;
  color: var(--accent-dark);
  min-width: 70px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(31, 38, 35, 0.12);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1rem 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-item button span {
  color: var(--accent-dark);
}

.faq-content {
  padding: 0 1.2rem 1rem;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-content {
  display: block;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-price {
  font-weight: 700;
  color: var(--accent-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--surface);
  padding: 1.4rem;
  border-radius: 14px;
  border: 1px solid rgba(58, 107, 94, 0.1);
}

footer {
  background: var(--accent-dark);
  color: #fff;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

footer a {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: #fff;
  padding: 1.2rem;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 200;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 38, 35, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 210;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 1.8rem;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0.9rem;
  background: var(--soft);
  border-radius: 12px;
}

.cookie-option button {
  border: 1px solid var(--accent-dark);
  background: transparent;
  color: var(--accent-dark);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
}

.cookie-option button[aria-pressed="true"] {
  background: var(--accent-dark);
  color: #fff;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .nav-bar {
    padding: 1rem 3rem;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    background: transparent;
    padding: 0;
  }

  .menu-toggle {
    display: none;
  }

  main {
    padding: 3rem 3.5rem 5rem;
  }

  .hero {
    padding: 3rem;
  }

  .hero-actions {
    flex-direction: row;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 220px;
  }

  .stats {
    flex-direction: row;
  }

  .stat-item {
    flex: 1;
  }

  .testimonials {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .testimonial {
    flex: 1 1 260px;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-list .card {
    flex: 1 1 260px;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
