* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f9f6f2;
  --surface: #ffffff;
  --muted: #f1ece5;
  --text: #2b2a28;
  --subtle: #6b645b;
  --accent: #8f5c3a;
  --accent-dark: #6f452d;
  --border: #ded6cc;
  --success: #3d6b4c;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 30;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.brand-mark {
  width: 34px;
  height: 34px;
}

.nav-toggle {
  border: 1px solid var(--border);
  background: var(--muted);
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.nav-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 12px 0 20px;
}

.nav-menu.is-open {
  display: flex;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-links a {
  padding: 6px 0;
  color: var(--subtle);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--text);
}

.nav-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.button:hover,
.button:focus {
  background: var(--accent-dark);
}

.button.secondary:hover,
.button.secondary:focus {
  background: var(--muted);
}

.section {
  padding: 48px 0;
}

.section.alt {
  background: var(--muted);
}

.section.emphasis {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.lead {
  font-size: 1.05rem;
  color: var(--subtle);
  margin-bottom: 18px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.highlight {
  background: #fff7f0;
  border-color: #e6c7ae;
}

.card-title {
  font-weight: 600;
  font-size: 1.1rem;
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.quote {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  padding: 18px;
  border-radius: 8px;
}

.icon-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.icon-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.icon-item svg {
  flex: 0 0 28px;
  margin-top: 4px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  background: transparent;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 16px 16px;
  color: var(--subtle);
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.service-price {
  font-weight: 600;
  color: var(--success);
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  background: var(--surface);
}

.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer a {
  color: var(--subtle);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 60;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-modal-content {
  background: var(--surface);
  border-radius: 12px;
  padding: 20px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.cookie-option:last-child {
  border-bottom: none;
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--muted);
  color: var(--subtle);
  font-size: 0.85rem;
}

.hero {
  padding: 64px 0;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 2.1rem;
  line-height: 1.2;
}

.hero-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.two-column-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.notice {
  border-left: 3px solid var(--accent);
  background: #fff5ec;
  padding: 12px 14px;
  border-radius: 6px;
  color: var(--subtle);
}

.space-top {
  margin-top: 20px;
}

.space-top-md {
  margin-top: 16px;
}

.space-top-sm {
  margin-top: 12px;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-top: none;
    padding: 0;
  }

  .nav-links {
    flex-direction: row;
    gap: 20px;
  }

  .hero-inner,
  .split,
  .footer-columns {
    flex-direction: row;
    align-items: center;
  }

  .hero-inner > * {
    flex: 1;
  }

  .card-grid,
  .stat-row,
  .icon-row,
  .comparison-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat-card,
  .comparison-card {
    flex: 1 1 280px;
  }

  .footer-columns > div {
    flex: 1;
  }
}
