* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f4ef;
  --surface: #ffffff;
  --text: #2f3b2f;
  --muted: #5c6b5c;
  --brand: #2f7d5b;
  --brand-dark: #245f46;
  --accent: #d6b07a;
  --border: #e4e0d8;
  --shadow: 0 8px 24px rgba(47, 59, 47, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #ffffff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  color: var(--brand);
}

.topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 32px;
  height: 32px;
}

.nav-desktop {
  display: none;
  gap: 1.2rem;
  align-items: center;
}

.nav-desktop a {
  color: var(--muted);
  font-weight: 600;
}

.nav-desktop a:hover,
.nav-desktop a:focus {
  color: var(--brand);
}

.menu-toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 10px;
  padding: 0.5rem 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.menu-panel {
  position: fixed;
  inset: 0 0 auto auto;
  width: min(320px, 90%);
  height: 100%;
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 20;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.menu-panel.open {
  transform: translateX(0);
}

.menu-panel a {
  font-weight: 600;
  color: var(--text);
}

.menu-panel .btn {
  width: 100%;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(47, 59, 47, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 15;
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  padding: 3.5rem 0 2rem;
}

.hero-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(47, 125, 91, 0.12);
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.section {
  padding: 2.5rem 0;
}

.section h2 {
  margin: 0 0 1rem;
  font-size: 1.8rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.card strong {
  font-size: 1.1rem;
}

.price {
  color: var(--brand);
  font-weight: 700;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.testimonial span {
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-strip {
  background: var(--brand);
  color: #ffffff;
  padding: 1.8rem;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 3rem;
  background: var(--surface);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer small {
  color: var(--muted);
}

.page-hero {
  padding: 2.5rem 0 1rem;
}

.page-hero p {
  color: var(--muted);
  max-width: 680px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.list-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.list-item svg {
  width: 22px;
  height: 22px;
  color: var(--brand);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.highlight {
  background: rgba(214, 176, 122, 0.2);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 20px rgba(47, 59, 47, 0.12);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(47, 59, 47, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
  padding: 1.5rem;
}

.cookie-modal.open {
  display: flex;
}

.cookie-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 1.6rem;
  width: min(560px, 92%);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem 1rem;
}

.toggle-row button {
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-weight: 600;
}

.toggle-row button.active {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-grid {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    padding: 2.5rem;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33.333% - 1.2rem);
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .cookie-actions {
    flex-direction: row;
    justify-content: flex-end;
  }

  .contact-grid {
    flex-direction: row;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
}
