*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #fbf7f2;
  --surface: #ffffff;
  --text: #2b2a28;
  --muted: #6d675f;
  --brand: #b8792e;
  --brand-dark: #7b4b12;
  --accent: #1f6f78;
  --border: #e6ded4;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand svg {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.nav-links a {
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a:focus {
  background: #f1ebe3;
}

.menu-toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.menu-toggle:focus {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.menu-open .nav-links {
  display: flex;
}

.hero {
  padding: 3.5rem 0 2.5rem;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 4vw, 3rem);
}

.hero p {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button-row.spaced {
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--brand);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--brand-dark);
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

section {
  padding: 3rem 0;
}

.section-title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.intro-panel,
.highlight-panel,
.quote-panel {
  background: var(--surface);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: #fff5ea;
  border-radius: 16px;
  border: 1px solid #f0ddc7;
}

.feature-item svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border-radius: 18px;
  padding: 1.6rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
}

.stats-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  background: #1f6f781a;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #1f6f7833;
}

.stat strong {
  font-size: 1.7rem;
  display: block;
}

.quote-panel {
  background: #fffaf5;
}

.quote-panel blockquote {
  margin: 0;
  font-size: 1.2rem;
  color: var(--brand-dark);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  border-radius: 14px;
  border: 1px dashed var(--border);
  background: #ffffff;
}

.step span {
  font-weight: 700;
  color: var(--brand);
}

.testimonial {
  background: #f6efe6;
  border-radius: 16px;
  padding: 1.5rem;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison .card {
  background: #ffffff;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.faq-item .faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.25rem;
  color: var(--muted);
  transition: max-height 0.3s ease;
}

.faq-item[aria-expanded="true"] .faq-content {
  max-height: 240px;
  padding-bottom: 1rem;
}

.cta-banner {
  background: var(--brand);
  color: #fff;
  border-radius: 20px;
  padding: 2rem;
}

.cta-banner .btn {
  border-color: #fff;
}

.page-hero {
  padding: 2.5rem 0 1rem;
}

.service-price {
  font-weight: 700;
  color: var(--brand-dark);
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #f4e6d3;
  color: var(--brand-dark);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.9rem;
}

.site-footer {
  padding: 2rem 0;
  background: #22201d;
  color: #f4efe9;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(960px, 92%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: none;
  z-index: 40;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 50;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal .modal-content {
  background: var(--surface);
  border-radius: 18px;
  padding: 2rem;
  width: min(560px, 96%);
  border: 1px solid var(--border);
}

.toggle-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.toggle-btn {
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f6efe6;
  cursor: pointer;
  font-weight: 600;
}

.toggle-btn[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

@media (min-width: 860px) {
  .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    box-shadow: none;
    padding: 0;
    border: none;
    background: transparent;
  }

  .menu-toggle {
    display: none;
  }

  .hero-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .card-grid,
  .feature-list,
  .stats-row,
  .split,
  .comparison,
  .info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .feature-item,
  .stat,
  .step,
  .testimonial {
    flex: 1 1 260px;
  }

  .intro-panel,
  .highlight-panel {
    flex: 1 1 420px;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}
