* {
  box-sizing: border-box;
}

:root {
  --color-bg: #f6f4ef;
  --color-panel: #ffffff;
  --color-text: #1e1c18;
  --color-muted: #6b6a66;
  --color-accent: #335c4a;
  --color-accent-2: #b27b3d;
  --color-dark: #25332b;
  --radius: 18px;
  --shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(1120px, 100% - 32px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 244, 239, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30, 28, 24, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  position: relative;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
}

.nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: var(--color-panel);
  padding: 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  position: absolute;
  right: 0;
  top: 64px;
  min-width: 190px;
}

.nav a {
  color: var(--color-text);
  font-weight: 500;
}

.nav-toggle {
  border: 1px solid rgba(30, 28, 24, 0.12);
  background: var(--color-panel);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

body.nav-open .nav {
  display: flex;
}

.section {
  padding: 54px 0;
}

.section.alt {
  background: var(--color-panel);
}

.section.deep {
  background: var(--color-dark);
  color: #fdfaf4;
}

.section.accent {
  background: rgba(51, 92, 74, 0.08);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.75rem;
  color: var(--color-accent);
  font-weight: 600;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 70px 0 50px;
}

.hero-card {
  background: var(--color-panel);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn.primary {
  background: var(--color-accent);
  color: #fffaf5;
}

.btn.secondary {
  background: rgba(51, 92, 74, 0.12);
  color: var(--color-accent);
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fffaf5;
}

.btn:hover {
  transform: translateY(-1px);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--color-panel);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.small {
  padding: 18px;
  box-shadow: none;
  border: 1px solid rgba(30, 28, 24, 0.08);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-item {
  display: flex;
  gap: 14px;
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(51, 92, 74, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stat {
  flex: 1 1 160px;
  background: var(--color-panel);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.testimonial {
  background: var(--color-panel);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.quote {
  font-style: italic;
  margin: 0 0 12px;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.process-step span {
  font-weight: 700;
  color: var(--color-accent);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comparison-item {
  background: var(--color-panel);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-panel);
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(30, 28, 24, 0.08);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-answer {
  margin-top: 10px;
  color: var(--color-muted);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(51, 92, 74, 0.12);
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.footer {
  padding: 40px 0 60px;
  border-top: 1px solid rgba(30, 28, 24, 0.1);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 18px;
  background: var(--color-panel);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 200;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(30, 28, 24, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 210;
}

.modal.open {
  display: flex;
}

.modal-content {
  background: var(--color-panel);
  border-radius: 18px;
  padding: 24px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

.preference-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(30, 28, 24, 0.08);
}

.preference-row:last-child {
  border-bottom: none;
}

.toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--color-panel);
  padding: 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-block {
  background: var(--color-panel);
  padding: 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

@media (min-width: 720px) {
  .nav {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    box-shadow: none;
    padding: 0;
    min-width: auto;
  }

  .nav-toggle {
    display: none;
  }

  body.nav-open .nav {
    display: flex;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-actions {
    flex-direction: row;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .feature-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-item {
    flex: 1 1 260px;
  }

  .process {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .process-step {
    flex: 1 1 240px;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-item {
    flex: 1 1 240px;
  }

  .cookie-actions {
    flex-direction: row;
    justify-content: flex-end;
  }

  .contact-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-block {
    flex: 1 1 260px;
  }

  .table-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
