:root {
  --bg: #f6f3ef;
  --bg-alt: #ffffff;
  --text: #1b1b1b;
  --muted: #5f5f5f;
  --primary: #d1493f;
  --primary-dark: #a9372f;
  --accent: #2f2f2f;
  --border: #e4ded7;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -200px;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 10px 16px;
  z-index: 10;
}

.skip-link:focus {
  top: 12px;
}

header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand svg {
  width: 32px;
  height: 32px;
}

.menu-toggle {
  border: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 10px 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.menu-toggle span {
  font-size: 0.9rem;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-alt);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  width: 100%;
}

.nav-links.is-open {
  display: flex;
}

.nav-links a {
  padding: 6px 0;
  color: var(--accent);
  font-weight: 500;
}

.nav-links a.active {
  color: var(--primary);
}

.hero {
  padding: 64px 0 48px;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--bg-alt);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.1;
}

.hero-card p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: var(--bg-alt);
  color: var(--accent);
  border-color: var(--border);
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section.dark {
  background: var(--accent);
  color: #fff;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.section-title h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.section-title p {
  color: var(--muted);
}

.section.dark .section-title p {
  color: #e7e7e7;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--bg-alt);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card h3 {
  font-size: 1.2rem;
}

.card p {
  color: var(--muted);
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-row img {
  width: 44px;
  height: 44px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split .panel {
  background: var(--bg-alt);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.stat span {
  font-size: 1.4rem;
  font-weight: 700;
}

.quote {
  background: #fff1ef;
  border-radius: 22px;
  padding: 28px;
  border: 1px solid #f0c4bf;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-style: italic;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.process-step span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-alt);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 20px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card .price {
  font-weight: 700;
  color: var(--primary-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.highlight-panel {
  background: #fef6f0;
  border: 1px solid #f3d3ba;
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer {
  padding: 40px 0;
  background: var(--accent);
  color: #fff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-links button {
  color: #fff;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 20px;
  width: min(720px, 94vw);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 50;
}

.modal.is-open {
  display: flex;
}

.modal-content {
  background: var(--bg-alt);
  border-radius: 18px;
  padding: 24px;
  width: min(620px, 92vw);
  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;
  background: #f3f0ec;
  border-radius: 12px;
  padding: 12px 16px;
}

.toggle-item button {
  border: 1px solid var(--border);
  background: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    border: none;
    padding: 0;
    background: transparent;
  }

  .menu-toggle {
    display: none;
  }

  .hero-wrap {
    flex-direction: row;
    align-items: stretch;
  }

  .cards,
  .service-grid,
  .stats,
  .process,
  .comparison,
  .contact-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .service-card,
  .stat,
  .comparison-row,
  .contact-block {
    flex: 1 1 calc(50% - 16px);
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split .panel {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1100px) {
  .card,
  .service-card,
  .stat,
  .comparison-row {
    flex: 1 1 calc(33.333% - 16px);
  }
}
