* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f5f1;
  --surface: #ffffff;
  --ink: #1f1f24;
  --muted: #5a5a67;
  --accent: #3b5cff;
  --accent-dark: #2a3fb3;
  --warm: #f0e5d8;
  --cool: #e7eefc;
  --border: #e2e2ea;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tagline {
  font-size: 0.85rem;
  color: var(--muted);
}

.menu-toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

.site-nav a {
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--accent-dark);
}

.nav-panel {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(280px, 75%);
  background: var(--surface);
  padding: 5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 30;
  box-shadow: -12px 0 30px rgba(0, 0, 0, 0.12);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 16, 28, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 25;
}

body.nav-open .nav-panel {
  transform: translateX(0);
}

body.nav-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

.nav-panel a {
  color: var(--ink);
  font-size: 1.05rem;
}

main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 2rem 0 4rem;
}

section {
  padding: 2.5rem 0;
}

.section-alt {
  background: var(--surface);
  border-radius: 24px;
}

.section-highlight {
  background: var(--cool);
  border-radius: 24px;
}

.section-warm {
  background: var(--warm);
  border-radius: 24px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--accent-dark);
  background: var(--accent);
  color: white;
  font-size: 0.95rem;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.card h3 {
  font-size: 1.1rem;
}

.icon-row {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cool);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-item span {
  font-weight: 600;
}

.stats-row {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.stat {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.stat h3 {
  font-size: 2rem;
  color: var(--accent-dark);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: var(--surface);
  padding: 1.6rem;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.faq-item button {
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink);
}

.faq-panel {
  margin-top: 0.7rem;
  color: var(--muted);
  display: none;
}

.faq-item[aria-expanded="true"] .faq-panel {
  display: block;
}

.list-pill {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.list-pill span {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.85rem;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.3rem;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.service-price {
  font-weight: 700;
  color: var(--accent-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-card {
  padding: 1.3rem;
  border-radius: 16px;
  background: var(--cool);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.info-block {
  background: var(--surface);
  padding: 1.4rem;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.site-footer {
  background: #10111a;
  color: #eef0ff;
  padding: 2.5rem 0 3rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: #c1c4ff;
}

.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 40;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 45;
  padding: 1.5rem;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-panel {
  background: var(--surface);
  padding: 1.8rem;
  border-radius: 20px;
  width: min(520px, 92%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}

.toggle {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.85rem;
}

.toggle[aria-pressed="true"] {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
  }

  .nav-panel {
    position: static;
    transform: none;
    flex-direction: row;
    width: auto;
    padding: 0;
    box-shadow: none;
  }

  .nav-overlay {
    display: none;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .stats-row {
    flex-direction: row;
  }

  .stat {
    flex: 1 1 200px;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1;
  }

  .service-table {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-row {
    flex: 1 1 280px;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-card {
    flex: 1 1 240px;
  }

  .contact-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-grid .info-block {
    flex: 1 1 260px;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
