* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f9f6f2;
  --text: #2b2a28;
  --muted: #6e6a64;
  --brand: #b56a2c;
  --brand-dark: #8b4e1f;
  --accent: #e7d4c3;
  --white: #ffffff;
  --shadow: 0 14px 40px rgba(43, 42, 40, 0.12);
}

body {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: var(--white);
}

.section.highlight {
  background: var(--accent);
}

.section-title {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  margin-bottom: 1rem;
}

.eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-dark);
  margin-bottom: 0.6rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 700px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: var(--brand-dark);
}

.btn.outline {
  background: transparent;
  border: 1px solid var(--brand);
  color: var(--brand);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  background: var(--brand-dark);
}

.btn.outline:hover,
.btn.outline:focus-visible {
  background: var(--brand);
  color: var(--white);
}

.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 16px rgba(43, 42, 40, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.2rem;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  background: var(--white);
  position: absolute;
  top: 100%;
  right: 0;
  width: min(240px, 80vw);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.nav-links a {
  padding: 0.4rem 0;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
}

.nav-open .nav-links {
  display: flex;
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.card {
  background: var(--white);
  padding: 1.6rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  flex: 1;
}

.card.soft {
  background: var(--accent);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  padding: 1.4rem;
  background: var(--white);
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--brand-dark);
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.logo-pill {
  background: var(--white);
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.service-card {
  border: 1px solid rgba(43, 42, 40, 0.1);
  border-radius: 18px;
  padding: 1.5rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.service-card .price {
  font-weight: 700;
  color: var(--brand-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem;
  border-radius: 16px;
  background: var(--accent);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  gap: 1rem;
  background: var(--white);
  padding: 1.2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.step span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  padding: 1rem 1.2rem;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
}

.faq-answer {
  padding: 0 1.2rem 1rem;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-box {
  background: var(--white);
  padding: 1.6rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.site-footer {
  background: var(--text);
  color: var(--white);
  padding: 2.5rem 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  left: 1rem;
  background: var(--white);
  padding: 1.4rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 20;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(43, 42, 40, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 30;
}

.modal.is-open {
  display: flex;
}

.modal-content {
  background: var(--white);
  border-radius: 20px;
  padding: 1.8rem;
  width: min(560px, 100%);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.prefs {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.pref-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  background: var(--accent);
}

.toggle-btn {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    width: auto;
    padding: 0;
    box-shadow: none;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .card-row {
    flex-direction: row;
  }

  .stat-grid {
    flex-direction: row;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    width: calc(50% - 0.7rem);
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .process-steps {
    flex-direction: row;
  }

  .step {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-grid .info-box {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
