* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f5f4f1;
  --bg-alt: #ffffff;
  --text: #1f2933;
  --muted: #5c6b73;
  --accent: #3f6f8f;
  --accent-dark: #2f5168;
  --highlight: #eef3f7;
  --border: #d9e1e7;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

section {
  padding: 32px 18px;
}

.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-highlight {
  background: var(--highlight);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent-dark);
  font-weight: 600;
}

h1, h2, h3 {
  line-height: 1.2;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.7rem;
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--muted);
}

.header {
  position: sticky;
  top: 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-dark);
}

.nav-toggle {
  border: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 600;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-alt);
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  position: absolute;
  right: 18px;
  top: 64px;
  box-shadow: 0 8px 24px rgba(31, 41, 51, 0.12);
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
}

.nav-links.open {
  display: flex;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-card {
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  border: none;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--bg-alt);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--highlight);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat span {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.testimonial {
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent-dark);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  background: var(--bg-alt);
  border-radius: 10px;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item .answer {
  display: none;
  padding: 0 16px 16px;
  color: var(--muted);
}

.faq-item.open .answer {
  display: block;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.process-step {
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.compare {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compare-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
}

.pill {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--highlight);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.footer {
  padding: 24px 18px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(31, 41, 51, 0.2);
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 41, 51, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
  padding: 18px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-panel {
  background: var(--bg-alt);
  padding: 24px;
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--border);
}

.toggle-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--highlight);
  padding: 12px;
  border-radius: 10px;
}

.toggle-row button {
  border: 1px solid var(--accent-dark);
  background: transparent;
  color: var(--accent-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 14px;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.cta-panel {
  background: var(--accent-dark);
  color: #fff;
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-panel p {
  color: #d9e7f2;
}

.cta-panel .button {
  background: #fff;
  color: var(--accent-dark);
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.6rem;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1;
  }

  .hero-actions {
    flex-direction: row;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33% - 16px);
  }

  .split {
    flex-direction: row;
  }

  .split > div {
    flex: 1;
  }

  .stat-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 calc(50% - 14px);
  }

  .process {
    flex-direction: row;
  }

  .process-step {
    flex: 1;
  }

  .compare {
    flex-direction: row;
  }

  .compare-row {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-block {
    flex: 1 1 calc(50% - 16px);
  }

  .service-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}
