* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2a2e;
  --muted: #5b6770;
  --brand: #275d6b;
  --brand-light: #4f8a99;
  --accent: #e7f0f2;
  --bg: #f8f9fb;
  --white: #ffffff;
  --radius: 16px;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  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: 2.5rem;
}

.container {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 2.5rem 0;
}

.section.bg-accent {
  background: var(--accent);
}

.section.bg-white {
  background: var(--white);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--brand);
  font-weight: 600;
}

.title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-top: 0.5rem;
  line-height: 1.2;
}

.subtitle {
  color: var(--muted);
  margin-top: 1rem;
  max-width: 640px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  background: var(--brand);
  color: var(--white);
  transition: 0.2s ease;
}

.btn.secondary {
  background: transparent;
  border-color: var(--brand);
  color: var(--brand);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(39, 93, 107, 0.15);
}

header {
  background: var(--white);
  border-bottom: 1px solid rgba(31, 42, 46, 0.08);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand svg {
  width: 32px;
}

.nav-toggle {
  background: none;
  border: 1px solid rgba(31, 42, 46, 0.2);
  border-radius: 10px;
  padding: 0.5rem 0.7rem;
  font-size: 1.1rem;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  background: var(--white);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  position: absolute;
  right: 1.5rem;
  top: 4.2rem;
  min-width: 220px;
}

.nav-links a {
  font-weight: 600;
}

.nav-links.active {
  display: flex;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.trust-bar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--accent);
  padding: 1.5rem;
  border-radius: var(--radius);
}

.flex-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card.highlight {
  border: 1px solid rgba(39, 93, 107, 0.2);
}

.icon-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.icon {
  width: 44px;
  height: 44px;
  padding: 0.5rem;
  border-radius: 12px;
  background: var(--accent);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.testimonial {
  background: var(--white);
  border-left: 4px solid var(--brand);
  padding: 1.5rem;
  border-radius: 0 12px 12px 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  border: 1px solid rgba(31, 42, 46, 0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}

.faq-answer {
  display: none;
  margin-top: 0.7rem;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.service-list,
.comparison,
.steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price {
  font-weight: 700;
  color: var(--brand);
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: var(--white);
  padding: 1rem;
  border-radius: 12px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-block {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
}

footer {
  background: #1f2a2e;
  color: #e7f0f2;
  padding: 2.5rem 0;
  margin-top: 2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}

.footer-links a {
  color: #e7f0f2;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: var(--white);
  border-radius: 16px;
  padding: 1rem 1.3rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 40;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 1.5rem;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pref-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.pref-item {
  background: var(--accent);
  padding: 0.8rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    background: none;
    box-shadow: none;
    padding: 0;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-panel {
    flex: 1.4;
  }

  .trust-bar {
    flex: 1;
  }

  .flex-row {
    flex-direction: row;
  }

  .hero-actions,
  .cookie-actions {
    flex-direction: row;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .service-list,
  .steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-list .card,
  .steps .card {
    flex: 1 1 calc(50% - 1rem);
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-grid .info-block {
    flex: 1;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
}
