:root {
  --bg: #f6f3ee;
  --surface: #ffffff;
  --ink: #1f1c17;
  --muted: #5a534b;
  --brand: #7b4a22;
  --brand-dark: #5c3315;
  --accent: #d9b27c;
  --line: #e4d9cc;
  --shadow: 0 10px 30px rgba(31, 28, 23, 0.08);
  --radius: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--brand);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 999;
}

.skip-link:focus {
  left: 12px;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 243, 238, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: lowercase;
  font-size: 1.1rem;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  font-weight: 500;
  color: var(--muted);
}

.nav-links a.active {
  color: var(--ink);
}

.nav-toggle {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 10px 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  display: block;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0 20px;
  border-top: 1px solid var(--line);
}

body.nav-open .mobile-nav {
  display: flex;
}

.hero {
  padding: 56px 0 40px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #3a2514;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-outline {
  border-color: var(--brand);
  color: var(--brand);
  background: transparent;
}

.section {
  padding: 48px 0;
}

.section-title {
  font-size: 1.7rem;
  margin: 0 0 16px;
}

.section-lead {
  color: var(--muted);
  max-width: 720px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.card {
  background: var(--surface);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spaced-top {
  margin-top: 18px;
}

.spaced-top-sm {
  margin-top: 16px;
}

.card .icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight {
  background: #efe3d4;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid #e3d2be;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.stat {
  background: var(--surface);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat strong {
  font-size: 1.4rem;
}

.quote {
  padding: 24px;
  background: var(--brand-dark);
  color: #fff;
  border-radius: var(--radius);
}

.quote p {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.tag {
  background: var(--surface);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.9rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.timeline-item {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  background: var(--surface);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 16px 18px;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 18px;
}

.faq-panel p {
  margin: 0 0 16px;
}

.faq-item[aria-expanded="true"] .faq-panel {
  padding-top: 4px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  background: #f0e7dc;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer a {
  color: var(--muted);
}

.notice {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 200;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 12, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 220;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  width: min(560px, 92vw);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: #f7f0e7;
  border-radius: 12px;
}

.cookie-option input {
  margin-top: 4px;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.table-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--line);
}

.table-row strong {
  font-size: 1.05rem;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.comparison-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--line);
}

.info-block {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--line);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33% - 18px);
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > div {
    flex: 1;
  }

  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 calc(50% - 16px);
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .table {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .table-row {
    flex: 1 1 calc(50% - 10px);
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-card {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .card {
    flex: 1 1 calc(25% - 18px);
  }

  .stat {
    flex: 1 1 calc(25% - 16px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
