* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f8f6f1;
  --text: #1f2a2e;
  --muted: #5b6b70;
  --brand: #2b7a5e;
  --brand-dark: #225f49;
  --accent: #f4a261;
  --surface: #ffffff;
  --border: #e3e0d6;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 24px 0;
}

header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand span {
  font-size: 1.05rem;
}

.nav-links {
  display: none;
  gap: 18px;
  align-items: center;
  font-weight: 600;
}

.menu-toggle {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.menu-toggle:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(31, 42, 46, 0.55);
  display: none;
  align-items: flex-start;
  justify-content: flex-end;
  z-index: 20;
}

.mobile-menu.open {
  display: flex;
}

.mobile-panel {
  background: var(--surface);
  width: min(320px, 85%);
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-panel a {
  font-size: 1.05rem;
  font-weight: 600;
}

.section {
  padding: 24px 0;
}

.hero {
  background: linear-gradient(135deg, #eaf3ee 0%, #fff6ed 100%);
  padding: 48px 0 32px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  gap: 8px;
}

.button.secondary {
  background: var(--accent);
  color: #2f2315;
}

.grid-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card h3 {
  font-size: 1.1rem;
}

.muted {
  color: var(--muted);
}

.pricing {
  font-weight: 700;
  color: var(--brand-dark);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: var(--surface);
  border-left: 4px solid var(--brand);
  padding: 18px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer {
  border-top: 1px solid var(--border);
  background: #f1efe7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 600;
}

.footer-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  background: #e0efe8;
  color: var(--brand-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-box {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(960px, 92%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  display: none;
  gap: 12px;
  z-index: 30;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 42, 46, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
  padding: 16px;
}

.cookie-modal.open {
  display: flex;
}

.cookie-panel {
  background: var(--surface);
  border-radius: 14px;
  padding: 20px;
  width: min(520px, 95%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.toggle-btn {
  border: 1px solid var(--border);
  background: #f6f3eb;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.toggle-btn[aria-pressed="true"] {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.spacer {
  height: 6px;
}

@media (min-width: 860px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
  }

  .hero-copy,
  .hero-aside {
    flex: 1;
  }

  .grid-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .grid-cards .card {
    flex: 1 1 calc(33.333% - 12px);
  }

  .two-col {
    flex-direction: row;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1 1 calc(33.333% - 12px);
  }
}
