* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2a44;
  --muted: #4f5b6b;
  --accent: #f26b4f;
  --accent-dark: #d85a41;
  --teal: #2a8a8a;
  --sand: #f5f1ea;
  --mist: #eef2f3;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(31, 42, 68, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 40px 20px 72px;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--white);
  border-bottom: 1px solid rgba(31, 42, 68, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand svg {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  left: 0;
  right: 0;
  top: 64px;
  background: var(--white);
  padding: 20px;
  border-bottom: 1px solid rgba(31, 42, 68, 0.1);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.nav-links.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-links a {
  font-weight: 500;
  color: var(--ink);
}

.nav-toggle {
  border: 1px solid rgba(31, 42, 68, 0.2);
  background: var(--white);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.9rem;
  cursor: pointer;
}

.cta-button {
  background: var(--accent);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  gap: 8px;
  transition: background 0.2s ease;
}

.cta-button:hover,
.cta-button:focus {
  background: var(--accent-dark);
}

.ghost-button {
  border: 1px solid rgba(31, 42, 68, 0.2);
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  font-weight: 600;
  background: transparent;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.panel {
  background: var(--sand);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight {
  background: var(--mist);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 4px solid var(--teal);
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 40px;
  height: 40px;
}

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(42, 138, 138, 0.12);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 600;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
}

.stat span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal);
}

.testimonial {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quote {
  font-size: 1.05rem;
}

.meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  border-radius: 12px;
  background: var(--mist);
}

.faq-item {
  border-bottom: 1px solid rgba(31, 42, 68, 0.1);
  padding: 12px 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  padding: 8px 0;
  color: var(--ink);
}

.faq-answer {
  display: none;
  color: var(--muted);
  padding-bottom: 8px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

footer {
  background: var(--ink);
  color: var(--white);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 42, 68, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 25;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--mist);
}

.cookie-toggle button {
  border: 1px solid rgba(31, 42, 68, 0.2);
  background: var(--white);
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
}

.divider {
  height: 2px;
  background: linear-gradient(90deg, rgba(42, 138, 138, 0.2), rgba(242, 107, 79, 0.3));
  border-radius: 999px;
}

.icon-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.icon-row .card {
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.contact-block {
  background: var(--mist);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-price {
  font-weight: 700;
  color: var(--teal);
}

@media (min-width: 768px) {
  main {
    padding: 56px 64px 96px;
  }

  .nav {
    padding: 20px 64px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    flex-direction: row;
    align-items: center;
    background: transparent;
    padding: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .grid > * {
    flex: 1 1 calc(50% - 16px);
  }

  .icon-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .icon-row .card {
    flex: 1 1 calc(50% - 16px);
  }

  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 calc(50% - 16px);
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .grid > * {
    flex: 1 1 calc(33.333% - 16px);
  }

  .icon-row .card {
    flex: 1 1 calc(33.333% - 16px);
  }

  .stat {
    flex: 1 1 calc(25% - 16px);
  }
}
