* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f4f0;
  --text: #1e1b16;
  --muted: #5a5248;
  --accent: #b55b3d;
  --accent-dark: #8c3e26;
  --surface: #ffffff;
  --surface-alt: #efe7de;
  --border: #e2d9cf;
  --success: #2f7d5c;
  --shadow: 0 20px 40px rgba(30, 27, 22, 0.08);
  font-size: 16px;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  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: 3.5rem 0;
}

.section--tight {
  padding: 2.5rem 0;
}

.section--alt {
  background: var(--surface-alt);
}

.section--panel {
  background: var(--surface);
  border-radius: 24px;
  box-shadow: var(--shadow);
  margin: 1.5rem auto;
  padding: 2.5rem 0;
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--accent-dark);
  font-weight: 600;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2.2rem;
  margin: 0.75rem 0 1rem;
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn--light {
  background: #fff;
  color: var(--accent-dark);
  border-color: #fff;
}

header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: none;
  gap: 1.5rem;
  font-weight: 500;
}

.nav-links a {
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--accent);
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-weight: 600;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(80%, 320px);
  height: 100%;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: right 0.3s ease;
  z-index: 20;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  font-size: 1.05rem;
  font-weight: 600;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 27, 22, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 15;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.flex {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border-radius: 18px;
  padding: 1.4rem;
  border: 1px solid var(--border);
}

.card--highlight {
  background: #fff7f0;
  border-color: #f1cbb6;
}

.icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f7e3d7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  background: var(--surface);
  border-radius: 16px;
  padding: 1.2rem;
  border-left: 4px solid var(--accent);
}

.stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--accent-dark);
}

.quote {
  font-size: 1.2rem;
  color: var(--text);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial {
  background: var(--surface);
  border-radius: 16px;
  padding: 1.4rem;
  border: 1px solid var(--border);
}

.testimonial span {
  display: block;
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison .card {
  border-left: 4px solid var(--success);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 0.2rem 1rem;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1rem 0;
  font-size: 1rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--text);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--muted);
  padding-bottom: 0;
}

.faq-item.open .faq-answer {
  max-height: 220px;
  padding-bottom: 1rem;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.service-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 1.6rem;
  border: 1px solid var(--border);
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
  margin-top: 0.6rem;
}

.highlighted-panel {
  background: #2d2620;
  color: #f3ece6;
  border-radius: 20px;
  padding: 2rem;
}

.highlighted-panel p {
  color: #e3d7cc;
}

.highlighted-panel .btn {
  background: #f3ece6;
  color: #2d2620;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-block {
  background: var(--surface);
  border-radius: 18px;
  padding: 1.4rem;
  border: 1px solid var(--border);
}

footer {
  background: #1e1b16;
  color: #f3ece6;
  padding: 2.5rem 0;
}

footer p,
footer a {
  color: #d8cfc6;
}

footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  width: min(520px, 92%);
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(30, 27, 22, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
  padding: 1.5rem;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal__panel {
  background: var(--surface);
  border-radius: 20px;
  padding: 1.8rem;
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  background: #f9f2ec;
  border-radius: 14px;
}

.cookie-option button {
  border-radius: 999px;
  border: 1px solid var(--accent-dark);
  background: transparent;
  padding: 0.35rem 0.9rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.cookie-option button[aria-pressed="true"] {
  background: var(--accent-dark);
  color: #fff;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.8rem;
  }

  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    flex: 1;
  }

  .hero-actions {
    flex-direction: row;
  }

  .flex,
  .stats,
  .testimonials,
  .service-grid,
  .comparison,
  .contact-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat,
  .testimonial,
  .service-card,
  .info-block {
    flex: 1 1 calc(50% - 1rem);
  }

  .comparison .card {
    flex: 1 1 calc(33.333% - 1rem);
  }

  .contact-grid .info-block {
    flex: 1 1 calc(33.333% - 1rem);
  }

  .cookie-actions {
    flex-direction: row;
  }

  footer .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (min-width: 1024px) {
  .card,
  .stat,
  .testimonial,
  .service-card,
  .info-block {
    flex: 1 1 calc(33.333% - 1rem);
  }

  .service-card {
    min-height: 220px;
  }
}
