* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f4ef;
  --bg-alt: #ffffff;
  --text: #1f2430;
  --muted: #5a6472;
  --primary: #1f6d5c;
  --primary-dark: #155346;
  --accent: #d68a3a;
  --border: #e2ddd6;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header,
main,
footer,
section {
  width: 100%;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 2.5rem 0;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.section-intro {
  color: var(--muted);
  max-width: 700px;
}

.site-header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4%;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.nav-toggle {
  background: var(--primary);
  border: none;
  color: #fff;
  padding: 0.6rem 0.9rem;
  border-radius: 0.4rem;
  cursor: pointer;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  background: var(--bg-alt);
  padding: 1rem;
  border-top: 1px solid var(--border);
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  font-weight: 600;
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.button:hover,
.button:focus {
  background: var(--primary-dark);
}

.button.secondary:hover,
.button.secondary:focus {
  background: var(--primary);
  color: #fff;
}

.hero {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.panel {
  background: var(--bg-alt);
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.panel.accent {
  background: #f1efe9;
  border-color: #e8d9c7;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.card h3 {
  font-size: 1.2rem;
}

.card p {
  color: var(--muted);
}

.icon-row {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(31, 109, 92, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem;
  border-radius: 0.9rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 1.6rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

.list li {
  list-style: none;
  padding-left: 1.2rem;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.testimonial {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 1.2rem 1.4rem;
  border-radius: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.testimonial span {
  font-weight: 600;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  background: var(--bg-alt);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 1rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-answer {
  padding: 0 1.2rem 1rem 1.2rem;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.comparison .panel {
  border-left: 4px solid var(--primary);
}

.highlight {
  background: var(--primary);
  color: #fff;
  padding: 2rem 0;
}

.highlight .button.secondary {
  border-color: #fff;
  color: #fff;
}

.footer {
  background: #11151c;
  color: #f2f4f8;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer a {
  color: #f2f4f8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cookie-banner,
.cookie-modal {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 20;
}

.cookie-banner {
  bottom: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 1rem 5%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cookie-banner.hidden,
.cookie-modal.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-modal {
  top: 0;
  bottom: 0;
  background: rgba(15, 20, 28, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.cookie-modal .modal-content {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.modal-content h3 {
  font-size: 1.4rem;
}

.service-price {
  font-weight: 700;
  color: var(--primary);
}

.service-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.info-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

@media (min-width: 820px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    gap: 1.4rem;
    border-top: none;
    padding: 0;
  }

  .hero-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero-text,
  .hero-panel {
    flex: 1;
  }

  .card-grid,
  .stats,
  .comparison {
    flex-direction: row;
  }

  .card,
  .stat,
  .comparison .panel {
    flex: 1;
  }

  .footer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
