* {
  box-sizing: border-box;
}

:root {
  --ink: #1f1b17;
  --paper: #f7f3ee;
  --accent: #c56a3a;
  --accent-soft: #e7c7b5;
  --mid: #6e6257;
  --line: #e6ded6;
  --deep: #2d2620;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--white);
}

.section.soft {
  background: #f1e8df;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--mid);
}

h1, h2, h3 {
  font-weight: 600;
  margin: 12px 0 16px;
  color: var(--deep);
}

h1 {
  font-size: clamp(28px, 4vw, 44px);
}

h2 {
  font-size: clamp(22px, 3vw, 32px);
}

h3 {
  font-size: 20px;
}

p {
  margin: 0 0 16px;
  color: var(--mid);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  font-size: 15px;
  transition: 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn:hover {
  transform: translateY(-1px);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--deep);
  font-size: 13px;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 243, 238, 0.98);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 16px;
  position: absolute;
  top: 72px;
  right: 4%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  min-width: 220px;
  box-shadow: 0 20px 40px rgba(31, 27, 23, 0.12);
}

.nav-links a {
  font-size: 15px;
  color: var(--deep);
}

.nav-links.open {
  display: flex;
}

.menu-toggle {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.hero {
  padding: 80px 0;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-card {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-icons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.icon-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--paper);
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.highlight {
  background: var(--deep);
  color: var(--white);
}

.card.highlight p,
.card.highlight h3 {
  color: var(--white);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
}

.step span {
  background: var(--accent);
  color: var(--white);
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-weight: 600;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat strong {
  font-size: 26px;
  color: var(--deep);
}

.quote {
  background: var(--deep);
  color: var(--white);
  border-radius: 24px;
  padding: 28px;
}

.quote p {
  color: var(--white);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison .card {
  background: var(--paper);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  padding: 16px;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--deep);
}

.faq-answer {
  padding: 0 16px 16px;
  display: none;
  color: var(--mid);
}

.faq-item.open .faq-answer {
  display: block;
}

.footer {
  background: var(--deep);
  color: var(--white);
  padding: 32px 0;
}

.footer p,
.footer a {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner,
.cookie-modal {
  position: fixed;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(31, 27, 23, 0.2);
  border-radius: 18px;
  padding: 18px;
  z-index: 20;
  display: none;
}

.cookie-banner {
  bottom: 20px;
  left: 4%;
  right: 4%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  top: 14%;
  left: 4%;
  right: 4%;
}

.cookie-modal.open,
.cookie-banner.open {
  display: flex;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0;
}

.pill-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mini-card {
  border: 1px dashed var(--line);
  border-radius: 14px;
  padding: 16px;
  background: var(--white);
}

@media (min-width: 768px) {
  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 20px;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .menu-toggle {
    display: none;
  }

  .hero-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .cards {
    flex-direction: row;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .stats {
    flex-direction: row;
  }

  .comparison {
    flex-direction: row;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 280px;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cookie-banner {
    left: 12%;
    right: 12%;
  }

  .cookie-modal {
    left: 20%;
    right: 20%;
  }

  .info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .mini-card {
    flex: 1 1 240px;
  }
}
