/* Base */
:root {
  --bg: #f7f5f0;
  --text: #1f1c17;
  --muted: #5b544a;
  --accent: #3d6b5a;
  --accent-2: #8b5e3c;
  --panel: #ffffff;
  --soft: #efe9de;
  --line: #ddd3c4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  max-width: 1160px;
}

.section {
  padding: 48px 0;
}

.section--soft {
  background: var(--soft);
}

.section--panel {
  background: var(--panel);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 10px;
}

h1, h2, h3 {
  line-height: 1.2;
  margin: 0 0 12px 0;
}

p {
  margin: 0 0 12px 0;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
}

.btn:hover {
  transform: translateY(-2px);
}

/* Header */
.header {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand__logo {
  width: 32px;
  height: 32px;
}

.nav__toggle {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.95rem;
}

.nav__links {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  position: absolute;
  top: 64px;
  right: 20px;
  width: calc(100% - 40px);
  max-width: 320px;
}

.nav__links.is-open {
  display: flex;
}

@media (min-width: 900px) {
  .nav__toggle {
    display: none;
  }
  .nav__links {
    display: flex;
    position: static;
    flex-direction: row;
    border: none;
    padding: 0;
    width: auto;
    max-width: none;
    gap: 20px;
    background: transparent;
  }
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
  }
  .hero__card, .hero__highlights {
    flex: 1;
  }
}

/* Feature blocks */
.features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  gap: 14px;
}

.feature__icon {
  width: 40px;
  height: 40px;
}

@media (min-width: 900px) {
  .features {
    flex-direction: row;
  }
  .feature {
    flex: 1;
  }
}

/* Alternating blocks */
.split {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split__panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
  }
  .split__panel {
    flex: 1;
  }
}

/* Services cards */
.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card__price {
  font-weight: 700;
  color: var(--accent-2);
}

@media (min-width: 900px) {
  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .card {
    flex: 1 1 280px;
  }
}

/* Stats */
.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--panel);
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--line);
}

@media (min-width: 900px) {
  .stats {
    flex-direction: row;
  }
  .stat {
    flex: 1;
  }
}

/* Testimonials */
.quotes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  background: var(--panel);
  border-left: 4px solid var(--accent);
  padding: 18px;
  border-radius: 12px;
}

@media (min-width: 900px) {
  .quotes {
    flex-direction: row;
  }
  .quote {
    flex: 1;
  }
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.faq__question {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  background: transparent;
  border: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq__answer {
  display: none;
  padding: 0 16px 14px 16px;
  color: var(--muted);
}

.faq__item.is-open .faq__answer {
  display: block;
}

/* Comparison */
.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

@media (min-width: 900px) {
  .comparison__row {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Footer */
.footer {
  background: #1f1c17;
  color: #f7f5f0;
  padding: 28px 0;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 900px) {
  .footer__links {
    flex-direction: row;
    gap: 18px;
  }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: none;
  z-index: 60;
}

.cookie-banner.is-visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 900px) {
  .cookie-actions {
    flex-direction: row;
  }
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 70;
}

.modal.is-visible {
  display: flex;
}

.modal__content {
  background: var(--panel);
  border-radius: 16px;
  padding: 20px;
  width: calc(100% - 32px);
  max-width: 520px;
  border: 1px solid var(--line);
}

.toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.toggle:last-child {
  border-bottom: none;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.8rem;
}
