/* Base */
:root {
  --bg: #f7f3ef;
  --bg-alt: #ffffff;
  --text: #2b2b2b;
  --muted: #5a5a5a;
  --brand: #1b5f63;
  --brand-dark: #124447;
  --accent: #c28b2f;
  --border: #e2d8cf;
  --shadow: 0 12px 30px rgba(27, 95, 99, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, 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;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section.dark {
  background: var(--brand);
  color: #fff;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.title {
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
  margin: 0 0 12px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 28px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.secondary {
  background: transparent;
  border-color: var(--brand);
  color: var(--brand);
}

.button.light {
  background: #fff;
  color: var(--brand-dark);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: var(--brand-dark);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(27, 95, 99, 0.12);
}

header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: none;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--brand);
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(27, 95, 99, 0.45);
  display: none;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-panel {
  background: #fff;
  border-radius: 16px;
  width: min(320px, 90%);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

.mobile-panel a {
  color: var(--text);
  font-weight: 600;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27, 95, 99, 0.1);
  color: var(--brand);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card strong {
  font-size: 1.1rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--border);
}

.stat span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand);
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card .price {
  color: var(--accent);
  font-weight: 700;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comparison-item {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border-left: 4px solid var(--brand);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  background: rgba(27, 95, 99, 0.08);
  border-radius: 16px;
  padding: 18px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}

.faq-question {
  width: 100%;
  padding: 16px;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.faq-answer {
  display: none;
  padding: 0 16px 16px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.testimonial {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
}

.testimonial strong {
  display: block;
  margin-top: 12px;
  color: var(--brand-dark);
}

.cta-panel {
  background: var(--brand-dark);
  color: #fff;
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.list li {
  color: var(--muted);
}

footer {
  background: #0f2f31;
  color: #f2f2f2;
  padding: 42px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-grid a {
  color: #fff;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 120;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 47, 49, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 140;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-panel {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  width: min(520px, 95%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.toggle button {
  border-radius: 999px;
  padding: 6px 14px;
  border: 1px solid var(--brand);
  background: transparent;
  color: var(--brand);
  font-weight: 600;
}

.toggle button[aria-pressed="true"] {
  background: var(--brand);
  color: #fff;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .feature-grid,
  .service-cards,
  .comparison {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-card,
  .service-card,
  .comparison-item,
  .stat,
  .testimonial {
    flex: 1 1 calc(33% - 16px);
  }

  .stats {
    flex-direction: row;
  }

  .timeline {
    flex-direction: row;
  }

  .timeline-step {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
