*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1c1b1a;
  --muted: #5d5953;
  --accent: #7b3f2a;
  --accent-dark: #5b2b1d;
  --sand: #f6f1ec;
  --stone: #ece4dc;
  --fog: #faf8f6;
  --line: #d8cfc7;
  --success: #2f6f55;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--fog);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--sand);
}

.section.panel {
  background: var(--stone);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.primary-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  position: absolute;
  top: 60px;
  right: 4%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  min-width: 220px;
  box-shadow: 0 18px 40px rgba(28, 27, 26, 0.12);
}

.primary-nav a {
  font-weight: 500;
}

.menu-toggle {
  background: var(--ink);
  color: #ffffff;
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 5;
}

body.nav-open .primary-nav {
  display: flex;
}

body.nav-open .nav-backdrop {
  display: block;
}

.hero {
  padding: 80px 0 72px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 600;
  cursor: pointer;
  background: var(--ink);
  color: #ffffff;
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .icon {
  width: 48px;
  height: 48px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-item img {
  width: 42px;
  height: 42px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--line);
}

.stat strong {
  font-size: 1.6rem;
}

.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid var(--line);
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-step {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.comparison-table th,
.comparison-table td {
  padding: 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.comparison-table th {
  background: var(--sand);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px;
  background: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 16px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.cta-panel {
  background: var(--accent);
  color: #ffffff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-panel .btn.secondary {
  border-color: #ffffff;
  color: #ffffff;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-block {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  background: #ffffff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
  padding: 16px;
  display: none;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
}

.cookie-modal.is-visible {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.modal-panel {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  width: min(520px, 90%);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1;
}

.modal-panel label {
  display: flex;
  gap: 10px;
  align-items: center;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 18px;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .cards,
  .stats,
  .testimonial-grid,
  .process-steps,
  .service-list,
  .info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat,
  .testimonial,
  .process-step,
  .service-card,
  .info-block {
    flex: 1 1 260px;
  }

  .feature-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-item {
    flex: 1 1 240px;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
