*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --color-ink: #1a1a1a;
  --color-muted: #5b5b5b;
  --color-bg: #f7f4ef;
  --color-sand: #efe6d6;
  --color-forest: #1f5b3d;
  --color-forest-dark: #16422c;
  --color-accent: #d96f2c;
  --color-cream: #fffaf2;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 18px 40px rgba(24, 24, 24, 0.1);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 32px 0 72px;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  margin: 0;
}

.section-subtitle {
  color: var(--color-muted);
  margin: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--color-sand);
  color: var(--color-forest);
  font-weight: 600;
  font-size: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  background: var(--color-forest);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--color-forest-dark);
  transform: translateY(-1px);
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--color-forest);
  color: var(--color-forest);
}

.button.ghost {
  background: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}

header {
  background: var(--color-cream);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 6px 20px rgba(19, 19, 19, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.4px;
}

.logo svg {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 500;
  transition: background 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--color-sand);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-forest);
  background: transparent;
  color: var(--color-forest);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-soft);
  position: absolute;
  top: 70px;
  right: 5%;
  width: min(260px, 88vw);
}

.mobile-nav.is-open {
  display: flex;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 36px 0 10px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 20px rgba(26, 26, 26, 0.08);
}

.card.highlight {
  background: var(--color-forest);
  color: #fff;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.icon {
  width: 44px;
  height: 44px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight-panel {
  background: var(--color-sand);
  padding: 24px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 18px;
  border-radius: var(--radius-md);
}

.stat strong {
  font-size: 1.5rem;
  color: var(--color-forest);
}

.quote {
  background: var(--color-forest);
  color: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote cite {
  font-weight: 600;
  font-style: normal;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1rem;
}

.faq-answer {
  margin-top: 10px;
  color: var(--color-muted);
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-price {
  font-weight: 700;
  color: var(--color-accent);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: #fff;
}

.comparison-row strong {
  color: var(--color-forest);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  padding: 16px;
  border-radius: var(--radius-md);
}

.process-step span {
  font-weight: 700;
  color: var(--color-accent);
}

.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial strong {
  color: var(--color-forest);
}

.footer {
  background: #111;
  color: #f6f6f6;
  padding: 40px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer a {
  color: inherit;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(14, 14, 14, 0.55);
  z-index: 25;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-dialog {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px;
  width: min(520px, 90vw);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.toggle-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toggle-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: var(--color-sand);
}

.toggle-button {
  border: 1px solid var(--color-forest);
  background: transparent;
  color: var(--color-forest);
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 600;
  cursor: pointer;
}

.toggle-button[aria-pressed="true"] {
  background: var(--color-forest);
  color: #fff;
}

.contact-block {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .hero-card {
    width: 42%;
  }

  .hero-content {
    width: 55%;
  }

  .card-grid,
  .services-grid,
  .testimonial-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .testimonial,
  .service-card {
    flex: 1 1 260px;
  }

  .split {
    flex-direction: row;
  }

  .split > * {
    flex: 1;
  }

  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 200px;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .process-steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .process-step {
    flex: 1 1 220px;
  }
}
