* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --primary: #1c6f5a;
  --primary-dark: #134b3d;
  --accent: #e6b566;
  --accent-soft: #f8efe1;
  --text: #1c1c1c;
  --muted: #5a5a5a;
  --bg: #faf8f4;
  --panel: #ffffff;
  --border: #e0d9cf;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  font-size: 16px;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", 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: 3.5rem;
  padding: 1.5rem 1.25rem 3.5rem;
}

section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  transition: background 0.2s ease;
}

.button:hover,
.button:focus {
  background: var(--primary-dark);
}

.button.secondary {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.button.secondary:hover,
.button.secondary:focus {
  background: var(--primary);
  color: #fff;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-dark);
}

header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.logo svg {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  position: absolute;
  top: 72px;
  right: 1rem;
  padding: 1.25rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  min-width: 220px;
}

.nav-links a {
  font-weight: 600;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--primary);
}

.menu-toggle {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  padding: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.nav-links.open {
  display: flex;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.nav-overlay.active {
  display: block;
}

.hero {
  background: var(--panel);
  border-radius: 1.5rem;
  padding: 2.5rem 1.8rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.feature-grid,
.card-grid,
.stats-grid,
.testimonial-grid,
.process-grid,
.comparison-grid,
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card,
.feature,
.stat,
.testimonial,
.process-step,
.comparison-item,
.faq-item,
.info-panel {
  background: var(--panel);
  border-radius: 1.2rem;
  padding: 1.4rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card.highlight {
  background: var(--accent-soft);
  border-color: #e5d1b0;
}

.icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split-panel {
  background: var(--panel);
  border-radius: 1.5rem;
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.quote {
  font-size: 1.1rem;
  font-weight: 600;
}

.section-accent {
  background: #f2f7f4;
  padding: 2rem 1.5rem;
  border-radius: 1.5rem;
}

.section-dark {
  background: var(--primary-dark);
  color: #fff;
  padding: 2rem 1.5rem;
  border-radius: 1.5rem;
}

.section-dark a {
  color: #fff;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--muted);
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 1.4rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-card strong {
  font-size: 1.1rem;
}

.price {
  font-weight: 700;
  color: var(--primary);
}

.table {
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
}

.table-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.table-row:last-child {
  border-bottom: none;
}

.cta-panel {
  background: var(--primary);
  color: #fff;
  padding: 2.2rem 1.7rem;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cta-panel .button {
  background: #fff;
  color: var(--primary);
}

footer {
  background: #121212;
  color: #e7e7e7;
  padding: 2.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  color: #e7e7e7;
  font-size: 0.95rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 0.9rem;
  z-index: 40;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  z-index: 50;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.5rem;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-content ul {
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item button {
  border: none;
  background: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  gap: 1rem;
}

.faq-item .answer {
  display: none;
  color: var(--muted);
}

.faq-item.open .answer {
  display: block;
}

.faq-item .chevron {
  transition: transform 0.2s ease;
}

.faq-item.open .chevron {
  transform: rotate(180deg);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--muted);
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  main {
    padding: 2.5rem 2rem 4rem;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    padding: 0;
    box-shadow: none;
    min-width: auto;
  }

  .menu-toggle {
    display: none;
  }

  .nav-overlay {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content {
    max-width: 58%;
  }

  .feature-grid,
  .card-grid,
  .stats-grid,
  .testimonial-grid,
  .process-grid,
  .comparison-grid,
  .faq-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature,
  .card,
  .stat,
  .testimonial,
  .process-step,
  .comparison-item,
  .faq-item,
  .service-card {
    flex: 1 1 calc(50% - 1rem);
  }

  .split {
    flex-direction: row;
  }

  .split-panel {
    flex: 1;
  }

  .table-row {
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .feature,
  .card,
  .stat,
  .testimonial,
  .process-step,
  .comparison-item,
  .faq-item,
  .service-card {
    flex: 1 1 calc(33.333% - 1rem);
  }
}
