*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #0f1114;
  --bg-soft: #171a1f;
  --bg-alt: #1f232b;
  --text: #f5f2ed;
  --muted: #c6c1b7;
  --accent: #b88b4a;
  --accent-dark: #8f6a35;
  --border: #2b3038;
  --success: #4c8a5a;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--bg-soft);
}

.section.highlight {
  background: var(--bg-alt);
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 16px;
  letter-spacing: 0.5px;
}

.section-lead {
  color: var(--muted);
  max-width: 720px;
  margin: 0 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--bg);
  background: var(--accent);
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
}

.btn.ghost {
  background: transparent;
  color: var(--text);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 17, 20, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav {
  display: none;
  gap: 18px;
  align-items: center;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a.active,
.nav a:hover {
  color: var(--text);
}

.nav-toggle {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0 24px;
  border-top: 1px solid var(--border);
}

.mobile-nav a {
  color: var(--muted);
  font-size: 1rem;
}

.mobile-nav.is-open {
  display: flex;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.hero h1 {
  font-size: 2.2rem;
  margin: 0;
}

.hero p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  color: var(--muted);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 12px;
}

.stat strong {
  font-size: 1.8rem;
  color: var(--accent);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
}

.testimonial span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-price {
  font-weight: 600;
  color: var(--accent);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.comparison-row strong {
  color: var(--accent);
}

.process {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.process-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step-index {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: var(--bg-alt);
  color: var(--text);
  border: none;
  padding: 14px 16px;
  text-align: left;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  padding: 0 16px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a,
.footer-links button {
  color: var(--muted);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  width: min(560px, 92%);
  display: none;
  gap: 12px;
  flex-direction: column;
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  z-index: 40;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-panel {
  background: var(--bg);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 20px;
  width: min(520px, 96%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-toggles {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
}

.toggle-btn {
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--text);
  border-radius: 999px;
  padding: 6px 14px;
  cursor: pointer;
}

.toggle-btn.active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .two-col {
    flex-direction: row;
    align-items: flex-start;
  }

  .two-col > * {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-grid .card {
    flex: 1 1 calc(50% - 18px);
  }

  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 calc(33% - 16px);
    border-bottom: none;
    border-right: 1px dashed var(--border);
    padding-right: 12px;
  }

  .stat:last-child {
    border-right: none;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }
}
