* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color: #1e2b24;
  background-color: #f7f4ef;
  --primary: #1f6b5a;
  --secondary: #e09f3e;
  --accent: #f3e2c7;
  --dark: #0f2b25;
  --light: #ffffff;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1e2b24;
  background-color: #f7f4ef;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  background: var(--light);
  border-bottom: 1px solid #e3ddd4;
  position: sticky;
  top: 0;
  z-index: 20;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--light);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 43, 37, 0.12);
  position: absolute;
  right: 1rem;
  top: 4.2rem;
  min-width: 200px;
}

.nav-links a {
  font-weight: 500;
}

.nav-toggle {
  border: none;
  background: var(--primary);
  color: var(--light);
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  font-size: 0.95rem;
  cursor: pointer;
}

.nav-open .nav-links {
  display: flex;
}

main {
  padding: 2rem 0 4rem;
}

section {
  padding: 2.5rem 0;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.05rem;
  max-width: 620px;
}

.hero-card {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 18px 40px rgba(15, 43, 37, 0.12);
}

.section-alt {
  background: var(--accent);
}

.section-dark {
  background: var(--dark);
  color: var(--light);
}

.grid-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border: 1px solid #e3ddd4;
}

.card-title {
  font-weight: 600;
  font-size: 1.1rem;
}

.badge {
  display: inline-flex;
  background: rgba(31, 107, 90, 0.15);
  color: var(--primary);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  width: fit-content;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  background: var(--light);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  border: 1px solid #e3ddd4;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--primary);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature svg {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-item {
  background: var(--light);
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--secondary);
  border-radius: 10px;
}

.testimonial {
  background: var(--light);
  padding: 1.4rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border: 1px solid #e3ddd4;
}

.testimonial span {
  font-weight: 600;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-step {
  background: var(--light);
  padding: 1.1rem 1.3rem;
  border-radius: 12px;
  border: 1px solid #e3ddd4;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comparison-card {
  background: var(--light);
  padding: 1.4rem;
  border-radius: 14px;
  border: 1px solid #e3ddd4;
}

.comparison-card h3 {
  margin-bottom: 0.6rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--light);
  border-radius: 12px;
  border: 1px solid #e3ddd4;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.2rem;
  background: none;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.2rem 1rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.cta {
  background: var(--primary);
  color: var(--light);
  padding: 2rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn {
  background: var(--secondary);
  color: var(--dark);
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  width: fit-content;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--light);
  color: var(--light);
}

.footer {
  background: #141e1b;
  color: #d8e3dd;
  padding: 2.5rem 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-meta {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #aab7b1;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  left: 1rem;
  background: var(--light);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  border: 1px solid #e3ddd4;
  box-shadow: 0 10px 30px rgba(15, 43, 37, 0.2);
  display: none;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 43, 37, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 50;
}

.modal-content {
  background: var(--light);
  border-radius: 16px;
  padding: 1.5rem;
  width: min(500px, 96%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal.active {
  display: flex;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.checkbox-group label {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-panel {
  background: var(--light);
  border-radius: 16px;
  padding: 1.4rem;
  border: 1px solid #e3ddd4;
}

.service-price {
  font-weight: 700;
  color: var(--primary);
}

@media (min-width: 768px) {
  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    background: none;
    box-shadow: none;
    padding: 0;
  }

  .nav-toggle {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .grid-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat,
  .testimonial,
  .comparison-card {
    flex: 1 1 280px;
  }

  .stats,
  .feature-list,
  .timeline,
  .process,
  .comparison,
  .contact-blocks {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .faq {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .faq-item {
    flex: 1 1 320px;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}
