* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f4ef;
  --bg-alt: #ffffff;
  --bg-accent: #fff2e0;
  --text: #2b2a28;
  --muted: #6a655d;
  --brand: #f05a28;
  --brand-dark: #c8451d;
  --border: #e3ded5;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0.6rem 1rem;
  background: var(--brand);
  color: #fff;
}

header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand svg {
  width: 38px;
  height: 38px;
}

.menu-toggle {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  font-weight: 600;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.7rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: 12px;
  position: absolute;
  right: 4%;
  top: 68px;
  min-width: 200px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.nav-links a {
  font-weight: 600;
  color: var(--text);
}

.nav-links.open {
  display: flex;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  border: none;
}

.btn.secondary {
  background: transparent;
  color: var(--brand-dark);
  border: 1px solid var(--brand-dark);
}

main {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2.5rem 0 3rem;
}

.section {
  background: var(--bg-alt);
  padding: 2rem 0;
}

.section.alt {
  background: var(--bg-accent);
}

.section.dark {
  background: #1f1b16;
  color: #f4f1ec;
}

.section .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card-row,
.feature-list,
.stats-row,
.testimonial-row,
.comparison-row,
.service-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card,
.feature,
.service-card,
.testimonial,
.stat,
.comparison-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.section.dark .card,
.section.dark .testimonial,
.section.dark .stat {
  background: #2a241e;
  border-color: #3b342d;
}

.stat {
  align-items: flex-start;
}

.stat strong {
  font-size: 1.8rem;
}

.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.section.dark .icon-badge {
  background: rgba(255, 255, 255, 0.08);
}

.tag {
  display: inline-flex;
  padding: 0.25rem 0.7rem;
  background: var(--bg-accent);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.hero {
  background: linear-gradient(135deg, #fff2e0 0%, #fffdf9 60%);
  border-bottom: 1px solid var(--border);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem 0;
}

.hero h1 {
  font-size: 2rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1rem 1.2rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 1.2rem 1rem;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.highlight-panel {
  background: #fff7f0;
  border-left: 4px solid var(--brand);
  padding: 1.3rem;
  border-radius: 12px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

.footer {
  background: #1c1916;
  color: #f4f1ec;
  padding: 2.5rem 0;
}

.footer a {
  color: #f4f1ec;
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer small {
  color: #d8d1c6;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  width: min(520px, 92%);
  display: none;
  z-index: 50;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 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: 60;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  width: min(620px, 92%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pill {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: #fff2e0;
  font-size: 0.8rem;
  font-weight: 600;
}

@media (min-width: 760px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    flex-direction: row;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    display: flex;
    gap: 1.2rem;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-actions {
    flex-direction: row;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .card-row,
  .feature-list,
  .stats-row,
  .testimonial-row,
  .comparison-row,
  .service-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .feature,
  .service-card,
  .testimonial,
  .stat,
  .comparison-card {
    flex: 1 1 240px;
  }

  .footer-columns {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
    justify-content: flex-end;
  }
}
