*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f7f5f2;
  --bg-alt: #ffffff;
  --bg-dark: #1d1c1a;
  --text: #1e1b18;
  --text-muted: #5a524c;
  --accent: #a2642a;
  --accent-soft: #f1e4d6;
  --border: #e3ddd6;
  --success: #2e6b55;
  --shadow: 0 12px 30px rgba(30, 27, 24, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  z-index: 2000;
}

.skip-link:focus-within {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.nav-desktop {
  display: none;
  gap: 22px;
  align-items: center;
}

.menu-toggle {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.95rem;
  cursor: pointer;
}

.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(320px, 80%);
  background: var(--bg-alt);
  box-shadow: var(--shadow);
  transform: translateX(105%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 90px 22px 24px;
  gap: 18px;
  z-index: 1200;
}

.nav-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-weight: 600;
}

.nav-mobile-footer {
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1100;
}

body.menu-open .nav-mobile {
  transform: translateX(0);
}

body.menu-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section.dark {
  background: var(--bg-dark);
  color: #f8f5f2;
}

.section-title {
  font-size: 1.8rem;
  margin: 0 0 16px;
}

.section-intro {
  max-width: 700px;
  color: var(--text-muted);
}

.hero {
  padding: 72px 0 64px;
}

.hero .hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.ghost {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.highlight {
  background: var(--accent-soft);
  border-color: transparent;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 10px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.stat {
  padding: 18px;
  border-radius: 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 1.6rem;
  display: block;
}

.testimonial {
  background: var(--bg-alt);
  border-left: 4px solid var(--accent);
  padding: 20px;
  border-radius: 10px;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step-number {
  width: 30px;
  height: 30px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.comparison-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-alt);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 16px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-panel {
  padding: 0 16px 16px;
  color: var(--text-muted);
}

.cta-panel {
  background: var(--accent);
  color: #fff;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-panel .button {
  background: #fff;
  color: var(--accent);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  background: var(--bg-alt);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  width: min(920px, 92%);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 1300;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner.show {
  display: flex;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 1400;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: var(--bg-alt);
  border-radius: 14px;
  padding: 24px;
  width: min(640px, 94%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.switch-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.switch-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.switch-button {
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 600;
  cursor: pointer;
}

.switch-button.active {
  background: var(--accent);
  color: #fff;
}

.info-bar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.info-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}

.icon-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

.icon-card {
  background: var(--bg-alt);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.table-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  background: var(--bg-alt);
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-actions {
    flex-direction: row;
  }

  .card-list,
  .stats,
  .feature-list,
  .comparison,
  .icon-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat,
  .comparison-item,
  .icon-card {
    flex: 1 1 calc(33% - 12px);
  }

  .feature-item {
    flex: 1 1 calc(50% - 12px);
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-links {
    flex-direction: row;
    gap: 16px;
  }

  .cookie-actions {
    flex-direction: row;
    align-items: center;
  }

  .info-bar {
    flex-direction: row;
  }

  .info-item {
    flex: 1 1 0;
  }
}
