*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f6f4f1;
  --bg-alt: #ffffff;
  --surface: #fef7ee;
  --surface-strong: #ffe4c4;
  --text: #2a1f1b;
  --muted: #6a5d55;
  --primary: #d86c4a;
  --primary-dark: #b04f33;
  --accent: #2f6f7e;
  --border: #e2d6c8;
  --shadow: 0 16px 35px rgba(42, 31, 27, 0.12);
  --radius: 18px;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 0 20px 80px;
}

section {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.section-alt {
  background: var(--surface);
}

.section-highlight {
  background: var(--surface-strong);
}

.container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  background: var(--primary);
  color: #fff;
}

.btn.secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn:focus-visible {
  outline: 3px solid rgba(216, 108, 74, 0.4);
  outline-offset: 2px;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--primary-dark);
}

.btn.secondary:hover {
  background: var(--primary);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 244, 241, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo svg {
  width: 28px;
  height: 28px;
}

.desktop-nav {
  display: none;
  gap: 18px;
  align-items: center;
  font-weight: 600;
}

.desktop-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  background: var(--surface);
}

.nav-toggle {
  border: none;
  background: var(--surface);
  padding: 10px;
  border-radius: 12px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
}

.mobile-nav {
  position: fixed;
  inset: 0 0 auto 0;
  top: 70px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  transform: translateY(-120%);
  transition: transform 0.3s ease;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 40;
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav a {
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--surface);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card strong {
  font-size: 1.05rem;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

.icon-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.icon-block {
  flex: 1 1 180px;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.icon-block svg {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat-item {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--border);
}

.process {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid var(--border);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border: none;
  background: transparent;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 16px;
}

.footer {
  padding: 30px 20px 50px;
  background: #1d1815;
  color: #fdf9f4;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #fdf9f4;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 70;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-option {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.modal-option input {
  margin-top: 4px;
}

.contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.compare {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.compare-item {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid var(--border);
}

.notice {
  font-size: 0.95rem;
  color: var(--muted);
}

@media (min-width: 900px) {
  main {
    padding: 0 80px 100px;
  }

  .desktop-nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  section {
    padding: 36px;
  }

  .split {
    flex-direction: row;
  }

  .split > * {
    flex: 1;
  }

  .card-list,
  .testimonials,
  .stats,
  .process {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .testimonial,
  .stat-item,
  .process-step {
    flex: 1 1 calc(50% - 16px);
  }

  .cookie-actions {
    flex-direction: row;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}
