:root {
  --bg: #f7f9f9;
  --bg-alt: #eef4f4;
  --text: #1a1f24;
  --muted: #5b6b73;
  --primary: #1f7a8c;
  --primary-dark: #155a66;
  --accent: #ffb703;
  --white: #ffffff;
  --border: #d9e2e6;
  --shadow: 0 10px 24px rgba(14, 34, 41, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 30;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--primary);
}

.menu-toggle {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--white);
  position: absolute;
  top: 64px;
  right: 4%;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
}

.nav-links.is-open {
  display: flex;
}

.hero {
  padding: 3.5rem 0 3rem;
  background: var(--white);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero h1 {
  font-size: 2rem;
  margin: 0;
}

.hero p {
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--primary);
  color: var(--white);
  background: var(--primary);
  font-weight: 600;
}

.btn--ghost {
  background: transparent;
  color: var(--primary);
}

.section {
  padding: 3rem 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--highlight {
  background: var(--primary);
  color: var(--white);
}

.section h2 {
  margin: 0 0 1rem;
  font-size: 1.6rem;
}

.section p {
  color: var(--muted);
}

.section--highlight p,
.section--highlight h2 {
  color: var(--white);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.4rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: 16px;
  padding: 1.2rem;
  border: 1px solid var(--border);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.2rem;
}

.stat {
  background: var(--white);
  border-radius: 16px;
  padding: 1.2rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--primary);
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.4rem;
}

.testimonial p {
  color: var(--text);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-item {
  background: var(--white);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.2rem;
  background: var(--white);
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.2rem 1rem;
  color: var(--muted);
}

.service-price {
  display: inline-flex;
  gap: 0.4rem;
  align-items: baseline;
  font-weight: 700;
  color: var(--primary);
}

.service-price span {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.2rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem 1.2rem;
}

.info-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cta-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--white);
  border-radius: 20px;
  padding: 1.6rem;
  border: 1px solid var(--border);
}

.site-footer {
  background: #0f2f36;
  color: #dbe7ea;
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-links a {
  color: #dbe7ea;
}

.cookie-banner {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  width: min(920px, 92%);
  box-shadow: var(--shadow);
  display: none;
  z-index: 50;
}

.cookie-banner.is-visible {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(16, 22, 26, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  z-index: 60;
}

.modal.is-open {
  display: flex;
}

.modal__content {
  background: var(--white);
  border-radius: 20px;
  padding: 1.6rem;
  width: min(720px, 92%);
  max-height: 85vh;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.switches {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.switch {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-alt);
  padding: 0.8rem 1rem;
  border-radius: 14px;
}

.switch button {
  background: var(--primary);
  border: none;
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
}

.switch button[aria-checked="false"] {
  background: #bcc9ce;
  color: #1a1f24;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .card-grid,
  .feature-list,
  .stats,
  .testimonials,
  .comparison {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .feature-item,
  .stat,
  .testimonial,
  .comparison-row {
    flex: 1 1 calc(50% - 0.8rem);
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 2.6rem;
  }

  .card,
  .feature-item,
  .stat,
  .testimonial,
  .comparison-row {
    flex: 1 1 calc(33% - 1rem);
  }
}
