/* Base */
:root {
  --bg: #f7f4ef;
  --surface: #ffffff;
  --ink: #1f2328;
  --muted: #5b6671;
  --brand: #1f5b4a;
  --brand-dark: #174238;
  --accent: #c48b4a;
  --border: #e6ded2;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 48px 0;
}

.section--alt {
  background: var(--surface);
}

.section--highlight {
  background: #f0ebe2;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.section h2 {
  margin-top: 0;
  font-size: 1.8rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

/* Header / Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brand-dark);
}

.nav__toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.nav__links {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  position: absolute;
  top: 60px;
  right: 20px;
  min-width: 200px;
}

.nav.is-open .nav__links {
  display: flex;
}

.nav__links a {
  color: var(--ink);
  font-weight: 600;
}

/* Hero */
.hero {
  padding: 64px 0 56px;
}

.hero__wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__card {
  background: var(--surface);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
}

.btn--secondary {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

/* Cards & Lists */
.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}

.card h3 {
  margin-top: 0;
}

.icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 14px 16px;
}

.stat strong {
  font-size: 1.4rem;
  color: var(--brand-dark);
}

.testimonial {
  background: var(--surface);
  border-left: 4px solid var(--brand);
  padding: 16px;
  border-radius: 12px;
}

.quote {
  font-size: 1.1rem;
}

/* Comparison */
.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison__row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 14px;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
}

.faq__question {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  background: transparent;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.faq__answer {
  padding: 0 16px 16px;
  display: none;
  color: var(--muted);
}

.faq__item.is-open .faq__answer {
  display: block;
}

/* Contact blocks */
.info-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}

/* Footer */
.site-footer {
  background: var(--brand-dark);
  color: #fff;
  padding: 32px 0;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer a {
  color: #fff;
}

/* Cookie banner + modal */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
  z-index: 100;
}

.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 110;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-modal__panel {
  background: var(--surface);
  border-radius: 16px;
  max-width: 520px;
  width: calc(100% - 40px);
  padding: 20px;
  border: 1px solid var(--border);
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0 16px;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: #fff3e3;
  color: #8a5a24;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Utilities */
.muted {
  color: var(--muted);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}

@media (min-width: 768px) {
  .nav__toggle {
    display: none;
  }

  .nav__links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    border: none;
    box-shadow: none;
    gap: 18px;
  }

  .hero__wrap {
    flex-direction: row;
    align-items: center;
  }

  .hero__actions {
    flex-direction: row;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 280px;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1 1 0;
  }

  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 200px;
  }

  .comparison__row {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer__links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .cookie-banner {
    left: auto;
    right: 20px;
    max-width: 420px;
  }

  .cookie-banner__actions {
    flex-direction: row;
  }
}
