* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f5f2;
  --text: #1d1c1a;
  --muted: #5f5a54;
  --brand: #2f6f6a;
  --brand-dark: #1f514d;
  --accent: #d9a441;
  --panel: #ffffff;
  --shadow: 0 12px 28px rgba(29, 28, 26, 0.12);
}

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;
}

.site-header {
  background: var(--panel);
  box-shadow: 0 6px 18px rgba(29, 28, 26, 0.08);
  position: sticky;
  top: 0;
  z-index: 30;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand svg {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 1rem;
  background: var(--panel);
  padding: 1.5rem;
  position: absolute;
  right: 4%;
  top: 70px;
  box-shadow: var(--shadow);
  border-radius: 16px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
}

.nav-links.is-open {
  display: flex;
}

.nav-toggle {
  border: none;
  background: var(--brand);
  color: #fff;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw + 1rem, 3.4rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.hero p {
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-card {
  background: var(--panel);
  padding: 1.8rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  background: var(--brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.button.secondary {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.section {
  padding: 3.2rem 0;
}

.section.alt {
  background: var(--panel);
}

.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 1.8vw + 1rem, 2.4rem);
}

.section p {
  color: var(--muted);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.card {
  background: var(--panel);
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.card.highlight {
  background: #eff6f5;
  border: 1px solid rgba(47, 111, 106, 0.2);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.pill {
  background: #efe8d8;
  color: #6d5220;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat {
  background: var(--panel);
  padding: 1.1rem 1.4rem;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.stat span {
  color: var(--brand);
  font-size: 1.3rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-item svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.testimonial {
  background: var(--panel);
  padding: 1.6rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.testimonial strong {
  display: block;
  margin-top: 0.8rem;
  color: var(--brand-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison .card {
  border-left: 4px solid var(--brand);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.faq-item {
  background: var(--panel);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 1rem 1.2rem;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.2rem 1rem;
  display: none;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.cta-panel {
  background: var(--brand);
  color: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cta-panel .button {
  background: #fff;
  color: var(--brand);
}

.site-footer {
  background: #1b1b1b;
  color: #dcd8d1;
  padding: 2.5rem 0;
  margin-top: 2rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.footer-grid a {
  color: #dcd8d1;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--panel);
  padding: 1.2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  width: min(560px, 92%);
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 40;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-actions .button.secondary {
  border-color: #b9b1a6;
  color: #4c4640;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(17, 16, 15, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal-content {
  background: var(--panel);
  padding: 2rem;
  border-radius: 20px;
  width: min(520px, 92%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-toggle {
  border: 1px solid #d5ccc1;
  background: #f4f0ea;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  color: #4c4640;
}

.cookie-toggle[aria-pressed="true"] {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.legal-block {
  background: var(--panel);
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 1.4rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.address-block {
  background: var(--panel);
  padding: 1.4rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-row {
  background: var(--panel);
  padding: 1.4rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: var(--shadow);
}

.price {
  color: var(--brand);
  font-weight: 700;
}

@media (min-width: 768px) {
  .nav-links {
    position: static;
    flex-direction: row;
    background: transparent;
    box-shadow: none;
    padding: 0;
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-card,
  .hero-text {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .cards,
  .comparison,
  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cards .card,
  .comparison .card,
  .stats .stat {
    flex: 1 1 calc(50% - 1rem);
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .contact-details {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-details .address-block {
    flex: 1 1 calc(50% - 1rem);
  }
}
