* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --cream: #f7f1e8;
  --sand: #efe4d6;
  --clay: #d9c3ad;
  --forest: #2f3b32;
  --olive: #5b6f56;
  --ink: #1d1f1e;
  --muted: #5b5852;
  --accent: #b26a4b;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(29, 31, 30, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section-alt {
  background: var(--sand);
}

.section-dark {
  background: var(--forest);
  color: var(--white);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--olive);
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  margin-bottom: 16px;
}

.section p {
  margin-bottom: 12px;
  color: var(--muted);
}

.section-dark p,
.section-dark .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.site-header {
  position: sticky;
  top: 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(29, 31, 30, 0.08);
  z-index: 20;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 600;
}

.brand svg {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--ink);
}

.nav-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(29, 31, 30, 0.2);
  background: var(--white);
}

.nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 82%);
  height: 100%;
  background: var(--white);
  box-shadow: -12px 0 24px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 30;
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 24px;
}

.nav-panel.open {
  transform: translateX(0);
}

.nav-panel ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(29, 31, 30, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 25;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  padding: 72px 0 64px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-card {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 1.15rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--accent);
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  background: var(--clay);
  padding: 20px;
  border-radius: 16px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  background: var(--white);
  padding: 16px;
  border-radius: 14px;
  display: flex;
  gap: 12px;
}

.step span {
  font-weight: 700;
  color: var(--accent);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-card {
  border: 1px solid rgba(29, 31, 30, 0.1);
  border-radius: 16px;
  padding: 18px;
  background: var(--white);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  text-align: left;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-answer {
  margin-top: 10px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.cta-panel {
  background: var(--accent);
  color: var(--white);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.footer {
  padding: 36px 0 48px;
  border-top: 1px solid rgba(29, 31, 30, 0.12);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  font-size: 0.95rem;
}

.footer-small {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--white);
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(29, 31, 30, 0.4);
  padding: 16px;
  z-index: 45;
}

.cookie-modal.active {
  display: flex;
}

.cookie-dialog {
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  width: min(520px, 94%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toggle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px;
  border-radius: 12px;
  background: var(--sand);
}

.toggle-button {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(29, 31, 30, 0.2);
}

.toggle-button[aria-pressed="true"] {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: var(--white);
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card span {
  font-weight: 600;
  color: var(--accent);
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero-grid {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    flex: 1;
  }

  .cards,
  .stats,
  .process-steps,
  .comparison,
  .service-list,
  .info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat,
  .step,
  .comparison-card,
  .service-card,
  .info-block {
    flex: 1 1 280px;
  }

  .feature-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature {
    flex: 1 1 260px;
  }

  .button-row,
  .cookie-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}
