*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f7f5f2;
  --ink: #1d1b19;
  --muted: #5c5a57;
  --accent: #c36a2d;
  --accent-dark: #8b4316;
  --surface: #ffffff;
  --line: #e2ddd7;
  --highlight: #f1e7dc;
  --success: #2f6f4f;
  --shadow: 0 12px 30px rgba(29, 27, 25, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, 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;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  padding: 10px 14px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  z-index: 10;
}

.skip-link:focus {
  left: 12px;
}

header {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.brand svg {
  width: 32px;
  height: 32px;
}

.menu-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  position: absolute;
  right: 4vw;
  top: 64px;
  min-width: 220px;
}

.nav-links.is-open {
  display: flex;
}

.nav-links a {
  padding: 6px 8px;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a:focus {
  background: var(--highlight);
}

main {
  padding: 24px 0 48px;
}

.section {
  padding: 38px 0;
}

.section-alt {
  background: var(--surface);
}

.section-muted {
  background: var(--highlight);
}

.section-highlight {
  background: var(--ink);
  color: #fff;
}

.section-title {
  font-size: clamp(1.4rem, 1.2rem + 1vw, 2rem);
  margin: 0 0 12px;
}

.section-lead {
  color: var(--muted);
  max-width: 720px;
  margin: 0 0 24px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px 0 10px;
}

.hero h1 {
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  line-height: 1.15;
  margin: 0;
}

.hero p {
  max-width: 620px;
  color: var(--muted);
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 16px rgba(195, 106, 45, 0.25);
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(195, 106, 45, 0.3);
}

.btn-secondary {
  background: var(--surface);
  border-color: var(--line);
}

.btn-link {
  background: transparent;
  border-color: transparent;
  color: var(--accent-dark);
  padding: 8px 4px;
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.grid-2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.grid-3 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.icon-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.icon-card svg {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  color: var(--accent);
}

.highlight-panel {
  background: var(--highlight);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px dashed var(--accent);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat strong {
  font-size: 1.6rem;
}

.testimonial {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--line);
}

.testimonial p {
  margin: 0 0 12px;
  font-style: italic;
}

.testimonial span {
  color: var(--muted);
  font-size: 0.95rem;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison .card {
  border-left: 4px solid var(--accent);
}

.process {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.process-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.process-step span {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.2rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 14px 16px;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 16px 14px;
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

footer {
  background: var(--ink);
  color: #fff;
  padding: 30px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #d6d0c9;
}

.footer-links a:hover {
  color: #fff;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 100;
}

.cookie-banner.is-visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 110;
}

.modal.is-visible {
  display: flex;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(29, 27, 25, 0.6);
}

.modal__dialog {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
  width: min(640px, 92vw);
  z-index: 2;
  box-shadow: var(--shadow);
}

.preference-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.preference-item:last-child {
  border-bottom: none;
}

.toggle {
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
}

.toggle[aria-pressed="true"] {
  background: var(--success);
  border-color: var(--success);
  color: #fff;
}

.modal__actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    min-width: auto;
  }

  .nav-links a {
    padding: 6px 10px;
  }

  .grid-2 {
    flex-direction: row;
  }

  .grid-3 {
    flex-direction: row;
  }

  .grid-2 > * {
    flex: 1;
  }

  .grid-3 > * {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .preference-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
