* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #fff8f2;
  --surface: #ffffff;
  --surface-alt: #f3ebe4;
  --ink: #2f241c;
  --muted: #6e5c4d;
  --brand: #b4491b;
  --brand-dark: #8b3712;
  --accent: #f2b36c;
  --border: #e6d7cb;
  --shadow: 0 12px 28px rgba(47, 36, 28, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px 0 80px;
}

section {
  padding: 0 20px;
}

.container {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--brand);
  font-weight: 600;
}

.headline {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card.alt {
  background: var(--surface-alt);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: var(--surface-alt);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--surface);
  border-left: 4px solid var(--brand);
  padding: 16px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat span {
  font-size: 1.8rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn.secondary {
  background: var(--surface-alt);
  color: var(--brand-dark);
  border: 1px solid var(--brand);
}

.btn:hover,
.btn:focus-visible {
  background: var(--brand-dark);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  background: #f8e4d3;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 248, 242, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 20;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  position: absolute;
  top: 64px;
  right: 20px;
  min-width: 220px;
  box-shadow: var(--shadow);
}

.nav-links.open {
  display: flex;
}

.nav-toggle {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 32px 20px;
  background: var(--surface);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--muted);
}

.services {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card h3 {
  font-size: 1.2rem;
}

.service-price {
  font-weight: 700;
  color: var(--brand);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--surface);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid var(--border);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
}

.faq-button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-content {
  padding: 0 16px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-content {
  display: block;
}

.banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.banner.show {
  display: flex;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(47, 36, 28, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.modal-backdrop.show {
  display: flex;
}

.modal {
  background: var(--surface);
  border-radius: 18px;
  padding: 24px;
  width: min(520px, 92%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--border);
}

.modal label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
}

.modal input {
  margin-top: 4px;
}

.hero-panel {
  background: linear-gradient(135deg, #fff2e8, #f6dcc4);
  border-radius: 24px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid var(--border);
}

.highlight {
  background: var(--surface-alt);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inline-icon {
  width: 40px;
  height: 40px;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.table-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.table-row:last-child {
  border-bottom: none;
}

.notice {
  padding: 16px;
  border-radius: 12px;
  background: var(--surface-alt);
  color: var(--muted);
}

@media (min-width: 768px) {
  main {
    gap: 64px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-grid .card {
    flex: 1 1 calc(50% - 18px);
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .nav {
    position: relative;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    min-width: auto;
  }

  .nav-toggle {
    display: none;
  }
}
