/* Base */
:root {
  --bg: #f8f6f2;
  --text: #1e1e1e;
  --muted: #5b5b5b;
  --brand: #1f6f5c;
  --brand-dark: #145042;
  --accent: #d97b5f;
  --card: #ffffff;
  --border: #e7e2d9;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section-alt {
  background: #f2efe9;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
  font-weight: 600;
}

h1, h2, h3 {
  margin: 0 0 16px;
  line-height: 1.2;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  background: var(--brand);
  color: #fff;
  border: 2px solid var(--brand);
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--brand);
}

.button:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-1px);
}

.button.secondary:hover {
  background: var(--brand);
  color: #fff;
}

/* Header / Navigation */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-mark {
  width: 32px;
  height: 32px;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding: 12px 0 20px;
}

.nav-links a {
  font-weight: 600;
}

.nav-links.open {
  display: flex;
}

.nav-cta {
  margin-top: 8px;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

/* Cards */
.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.icon {
  width: 36px;
  height: 36px;
}

/* Feature rows */
.feature-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-panel {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
}

.feature-panel.highlight {
  background: #fef1ea;
  border-color: #f3d3c7;
}

/* Stats */
.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-item {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand);
}

/* Testimonials */
.quote {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Services list */
.service-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price {
  font-weight: 700;
  color: var(--brand);
}

/* Comparison */
.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-item {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid var(--border);
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.faq-button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-content {
  display: none;
  padding: 0 16px 16px;
  color: var(--muted);
}

.faq-item.open .faq-content {
  display: block;
}

/* Footer */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.footer-meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 12px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 40;
}

.cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  width: min(540px, 96%);
  border: 1px solid var(--border);
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.toggle-row:last-child {
  border-bottom: none;
}

/* Utility */
.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

.spacer-sm {
  height: 16px;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    padding: 0;
    gap: 20px;
  }

  .nav-cta {
    margin-top: 0;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1;
  }

  .hero-actions {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .feature-row {
    flex-direction: row;
  }

  .feature-panel {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stat-item {
    flex: 1;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-grid .card {
    flex: 1 1 calc(50% - 16px);
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-item {
    flex: 1;
  }

  .faq {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .faq-item {
    flex: 1 1 calc(50% - 12px);
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .cookie-actions {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }
}
