:root {
  --bg: #f7f2ee;
  --ink: #2f2a2c;
  --muted: #6a6166;
  --accent: #2a9d8f;
  --accent-dark: #1f7f73;
  --brand: #5b2b4a;
  --panel: #ffffff;
  --soft: #efe6e0;
  --line: #e4d9d3;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  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;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: #4a233d;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--brand);
  color: #fff;
}

header {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.05em;
}

.logo svg {
  width: 28px;
  height: 28px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  margin: 0;
  padding: 1rem 0;
  list-style: none;
}

.nav-links a {
  color: var(--ink);
  font-weight: 500;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-weight: 600;
  color: var(--ink);
}

.menu-panel {
  display: none;
  border-top: 1px solid var(--line);
}

.menu-open .menu-panel {
  display: block;
}

.menu-open .nav-links {
  display: flex;
}

main {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  padding: 2rem 0 4rem;
}

section {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero {
  background: linear-gradient(135deg, #f4e8e2, #f7f2ee);
  border-radius: 28px;
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--brand);
}

.hero p {
  margin: 0;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--panel);
  padding: 1.2rem;
  border-radius: 20px;
  border: 1px solid var(--line);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.card {
  background: var(--panel);
  padding: 1.4rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--brand);
}

.panel {
  background: var(--soft);
  padding: 1.6rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.stat strong {
  font-size: 1.4rem;
  color: var(--brand);
}

.quote {
  background: var(--brand);
  color: #fff;
  padding: 1.6rem;
  border-radius: 20px;
}

.quote p {
  margin: 0 0 0.6rem 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}

.process {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step span {
  font-weight: 700;
  color: var(--accent);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 0.9rem 1rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.faq-answer {
  padding: 0 1rem 1rem;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--panel);
  padding: 2.5rem 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-bottom {
  color: var(--muted);
  font-size: 0.9rem;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-card strong {
  color: var(--brand);
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-block {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  display: none;
  z-index: 30;
  box-shadow: 0 10px 30px rgba(47, 42, 44, 0.12);
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(47, 42, 44, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 40;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--panel);
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid var(--line);
}

.toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}

.highlight {
  background: var(--panel);
  border-left: 4px solid var(--accent);
  padding: 1rem;
  border-radius: 14px;
}

.section-title {
  font-size: 1.6rem;
  color: var(--brand);
  margin: 0;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: row;
    padding: 0;
  }

  .menu-toggle {
    display: none;
  }

  .menu-panel {
    display: block;
    border-top: none;
  }

  main {
    gap: 4.5rem;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content,
  .hero-visual {
    flex: 1;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .process {
    flex-direction: row;
  }

  .step {
    flex: 1;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 260px;
  }

  .info-grid {
    flex-direction: row;
  }

  .info-block {
    flex: 1;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
  }
}
