*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #1d2b36;
  --muted: #5a6b77;
  --accent: #f37a7a;
  --accent-dark: #e45f5f;
  --mint: #d7f0ea;
  --sky: #e6f0ff;
  --sand: #fff6ea;
  --paper: #ffffff;
  --line: #e6e9ec;
  --shadow: 0 10px 30px rgba(20, 30, 40, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fbfcfd;
  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: 32px 0 64px;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 32px 0;
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 12px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 16px;
}

.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  z-index: 20;
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}

.nav-links {
  display: none;
  gap: 20px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-bottom-color: var(--accent);
}

.menu-toggle {
  border: none;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(20, 30, 40, 0.45);
  display: none;
  align-items: flex-start;
  justify-content: flex-end;
  z-index: 30;
}

.mobile-menu.open {
  display: flex;
}

.mobile-panel {
  background: var(--paper);
  width: min(320px, 80vw);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.mobile-panel a {
  font-size: 1.1rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero {
  background: linear-gradient(120deg, var(--mint), #fff);
  border-radius: 28px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: 2.2rem;
  margin: 0 0 12px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  background: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.85rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon {
  width: 44px;
  height: 44px;
  background: var(--sky);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight {
  background: var(--sand);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat strong {
  font-size: 1.5rem;
}

.testimonial {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  margin: 0;
}

.testimonial cite {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-style: normal;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.list span {
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-tag {
  font-weight: 700;
  color: var(--accent-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 16px 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 18px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.cta {
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: var(--muted);
}

.cookie-banner,
.cookie-modal {
  position: fixed;
  inset: auto 16px 16px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  z-index: 40;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner.show {
  display: flex;
}

.cookie-modal {
  inset: 0;
  margin: auto;
  max-width: 560px;
  width: min(92vw, 560px);
  max-height: 90vh;
  overflow: auto;
}

.cookie-modal.show {
  display: flex;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 30, 40, 0.55);
  display: none;
  z-index: 35;
}

.modal-overlay.show {
  display: block;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
}

.toggle-button {
  background: var(--mint);
  color: var(--ink);
  border: none;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: var(--sky);
  padding: 6px 10px;
  font-size: 0.85rem;
}

.panel {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content {
    flex: 1.2;
  }

  .hero-visual {
    flex: 0.8;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .two-col {
    flex-direction: row;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-grid .card {
    flex: 1 1 calc(50% - 12px);
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .info-grid {
    flex-direction: row;
  }
}
