:root {
  --bg: #f7f2ed;
  --surface: #ffffff;
  --accent: #c75b39;
  --accent-dark: #8a3a27;
  --text: #2b2b2b;
  --muted: #6b6b6b;
  --line: #e6ded6;
  --soft: #f0e5dc;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

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

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

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

.logo {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.site-nav {
  display: none;
  gap: 20px;
  align-items: center;
  font-size: 0.95rem;
}

.site-nav a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus {
  border-color: var(--accent);
}

.nav-toggle {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(80vw, 320px);
  background: var(--surface);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 80px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 30;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.05rem;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 25;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

section {
  padding: 48px 0;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

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

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

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  background: transparent;
  cursor: pointer;
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

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

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

.card h3 {
  font-size: 1.1rem;
}

.card p {
  color: var(--muted);
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-block {
  display: flex;
  gap: 16px;
  background: var(--soft);
  padding: 18px;
  border-radius: 16px;
}

.feature-block svg {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.stats {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
}

.stat-item:last-child {
  border-bottom: none;
}

.quote {
  background: var(--accent);
  color: #fff;
  border-radius: 20px;
  padding: 32px;
}

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

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

.highlight-panel {
  background: var(--soft);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  background: var(--surface);
  border-radius: 14px;
  padding: 16px;
  border-left: 4px solid var(--accent);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

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

.faq-answer {
  padding: 0 16px 16px;
  color: var(--muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 240px;
}

.footer {
  background: #1f1b18;
  color: #fff;
  padding: 40px 0 24px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.footer small {
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border-radius: 16px;
  padding: 18px;
  width: min(620px, 92%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

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

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

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

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

.cookie-modal-content {
  background: var(--surface);
  padding: 24px;
  border-radius: 20px;
  width: min(560px, 96%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.preference {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--soft);
  padding: 12px 16px;
  border-radius: 14px;
}

.preference button {
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.preference button.active {
  background: var(--accent);
  color: #fff;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

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

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

  .nav-toggle {
    display: none;
  }

  .hero-inner {
    flex-direction: row;
    align-items: stretch;
  }

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

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

  .feature-list {
    flex-direction: row;
  }

  .feature-block {
    flex: 1 1 0;
  }

  .stat-list {
    flex-direction: row;
    gap: 32px;
  }

  .stat-item {
    flex: 1 1 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1 1 0;
  }

  .process-steps {
    flex-direction: row;
  }

  .step {
    flex: 1 1 0;
  }

  .faq-item.open .faq-answer {
    max-height: 300px;
  }

  .table-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
