* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f4f1;
  --ink: #1e1f1c;
  --muted: #5c5f58;
  --brand: #1f5d50;
  --brand-dark: #18483f;
  --accent: #c09b5c;
  --card: #ffffff;
  --line: #d9d4cc;
  --shadow: 0 12px 30px rgba(30, 31, 28, 0.12);
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 3.5rem 0;
}

.section-title {
  font-size: clamp(1.6rem, 2vw, 2.3rem);
  margin-bottom: 1rem;
}

.section-lead {
  max-width: 720px;
  color: var(--muted);
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--brand);
  color: #fff;
  background: var(--brand);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  color: var(--brand);
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: rgba(31, 93, 80, 0.08);
}

header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: none;
  gap: 1.5rem;
  font-weight: 600;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--brand);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.2rem;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.mobile-menu.open {
  display: flex;
}

.hero {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 3.5rem 0 4rem;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.15;
}

.hero p {
  color: var(--muted);
  max-width: 520px;
  margin: 1rem 0 2rem;
}

.hero-card {
  background: var(--bg);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--muted);
}

.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-card svg {
  width: 42px;
  height: 42px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(31, 93, 80, 0.08);
  color: var(--brand);
  font-weight: 600;
  font-size: 0.85rem;
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid var(--line);
}

.stat strong {
  font-size: 1.6rem;
}

.panel {
  background: var(--brand);
  color: #fff;
  border-radius: 28px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.panel p {
  color: rgba(255, 255, 255, 0.85);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.6rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.service-card .price {
  font-weight: 700;
  color: var(--brand);
}

.testimonial {
  background: #fff;
  border-radius: 18px;
  padding: 1.7rem;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.testimonial span {
  font-weight: 600;
  color: var(--muted);
}

.list-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.list-item {
  background: #fff;
  border-radius: 18px;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--line);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: #fff;
  border-radius: 16px;
  padding: 1rem 1.4rem;
  border: 1px solid var(--line);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.4rem;
  background: #fff;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.4rem 1rem;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.cta-band {
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer {
  background: #1d1f1a;
  color: #fff;
  padding: 2.5rem 0;
  margin-top: 3rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.78);
}

.footer p {
  color: rgba(255, 255, 255, 0.68);
}

.cookie-banner,
.cookie-modal {
  position: fixed;
  right: 1rem;
  left: 1rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  border: 1px solid var(--line);
  z-index: 200;
  display: none;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  bottom: 1rem;
}

.cookie-modal.show {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  bottom: 10%;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.toggle-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.toggle-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  background: #fdfbf8;
  border-radius: 12px;
  padding: 0.7rem 1rem;
  font-weight: 600;
  cursor: pointer;
}

.toggle-btn[aria-pressed="true"] {
  border-color: var(--brand);
  background: rgba(31, 93, 80, 0.1);
  color: var(--brand);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .hero-grid,
  .feature-grid,
  .service-grid,
  .split,
  .stat-row,
  .list-grid,
  .comparison,
  .footer-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-grid > * {
    flex: 1;
  }

  .feature-card,
  .service-card,
  .stat,
  .list-item,
  .comparison-row {
    flex: 1 1 calc(33% - 1rem);
  }

  .split > * {
    flex: 1;
  }

  .stat {
    min-width: 220px;
  }

  .cta-band {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-banner,
  .cookie-modal {
    max-width: 520px;
    left: auto;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
