:root {
  color-scheme: light;
  --bg: #f5f1ea;
  --text: #1f1c18;
  --muted: #5b554c;
  --accent: #1f4b3f;
  --accent-light: #d9cbb3;
  --warm: #c97b55;
  --soft: #f0e6d8;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(31, 28, 24, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid rgba(31, 28, 24, 0.08);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo svg {
  width: 36px;
  height: 36px;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--soft);
  color: var(--text);
  font-weight: 600;
}

.primary-nav {
  display: none;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--white);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  position: absolute;
  right: 4%;
  top: 70px;
  min-width: 220px;
}

.primary-nav.is-open {
  display: flex;
}

.primary-nav a {
  padding: 0.4rem 0.2rem;
  color: var(--muted);
  font-weight: 500;
}

.primary-nav a:hover,
.primary-nav a:focus {
  color: var(--accent);
}

.section {
  padding: 3.5rem 0;
}

.section--muted {
  background: var(--soft);
}

.section--highlight {
  background: var(--accent);
  color: var(--white);
}

.section--panel {
  background: var(--white);
  border-radius: 2rem;
  padding: 3rem 0;
  margin: 2rem 0;
  box-shadow: var(--shadow);
}

.section-title {
  font-size: clamp(1.8rem, 1.4rem + 1vw, 2.6rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 680px;
}

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.pill {
  background: var(--accent-light);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
}

.btn.btn-light {
  background: var(--white);
  color: var(--accent);
}

.btn.btn-outline {
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--white);
  padding: 1.6rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 600;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.4rem;
  border-radius: 1rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.stat-item strong {
  font-size: 1.4rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  color: var(--muted);
}

.quote {
  font-size: 1.3rem;
  font-style: italic;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  border: 1px solid rgba(31, 28, 24, 0.18);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.timeline-item {
  background: var(--white);
  padding: 1.4rem;
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
}

.testimonial {
  background: var(--white);
  padding: 1.6rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card {
  border-left: 4px solid var(--accent);
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem;
  border-radius: 1rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 1rem 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item .answer {
  padding: 0 1.4rem 1.2rem;
  color: var(--muted);
  display: none;
}

.faq-item.is-open .answer {
  display: block;
}

.cta-box {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
}

.site-footer {
  background: var(--text);
  color: var(--white);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(1040px, 92%);
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: none;
  z-index: 40;
}

.cookie-banner.is-visible {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 28, 24, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 1.5rem;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2rem;
  width: min(720px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  border-radius: 0.8rem;
  background: var(--soft);
}

.toggle-row button {
  background: var(--accent);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.toggle-row button.is-off {
  background: rgba(31, 28, 24, 0.2);
  color: var(--text);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.info-block {
  background: var(--white);
  padding: 1.4rem;
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
}

@media (min-width: 720px) {
  .primary-nav {
    position: static;
    display: flex;
    flex-direction: row;
    box-shadow: none;
    background: transparent;
    padding: 0;
    min-width: auto;
  }

  .menu-toggle {
    display: none;
  }

  .hero-grid,
  .grid,
  .split,
  .footer-grid,
  .contact-info {
    flex-direction: row;
  }

  .hero-grid > * {
    flex: 1;
  }

  .grid {
    flex-wrap: wrap;
  }

  .grid > * {
    flex: 1 1 calc(50% - 1.5rem);
  }

  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 1 1 calc(50% - 1rem);
  }

  .split > * {
    flex: 1;
  }

  .footer-grid > * {
    flex: 1;
  }

  .cookie-actions {
    flex-direction: row;
    justify-content: flex-end;
  }
}

@media (min-width: 980px) {
  .grid > * {
    flex: 1 1 calc(33.333% - 1.5rem);
  }

  .stat-item {
    flex: 1 1 calc(33.333% - 1rem);
  }
}
