/* Base */
:root {
  --bg: #f7f4ef;
  --bg-alt: #ffffff;
  --text: #1f2a2e;
  --muted: #5d6b6f;
  --brand: #2f6f6a;
  --brand-dark: #1f4b47;
  --accent: #f1b44a;
  --border: #d9e1df;
  --shadow: 0 10px 30px rgba(31, 42, 46, 0.08);
}

* {
  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;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  padding: 0 20px 60px;
}

section {
  padding: 40px 0;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--brand);
  font-weight: 600;
}

.section-title {
  font-size: 1.9rem;
  margin: 10px 0 16px;
}

.section-subtitle {
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 720px;
}

.card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(47, 111, 106, 0.12);
  color: var(--brand);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Header */
header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: none;
  gap: 20px;
  font-weight: 500;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-outline {
  border-color: var(--brand);
  color: var(--brand);
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--border);
  padding: 8px 10px;
  border-radius: 10px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(31, 42, 46, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 30;
  display: flex;
  justify-content: flex-end;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel {
  width: 80%;
  max-width: 340px;
  background: var(--bg-alt);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-panel a {
  font-weight: 600;
}

/* Hero */
.hero {
  padding: 60px 0 40px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 2.4rem;
  margin: 0;
}

.hero p {
  color: var(--muted);
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel {
  background: var(--bg-alt);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Feature blocks */
.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(241, 180, 74, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Stats */
.stats {
  background: var(--brand);
  color: #fff;
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
}

/* Service cards */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card h3 {
  margin: 0 0 10px;
}

.price {
  font-weight: 700;
  color: var(--brand);
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  font-style: italic;
  margin: 0 0 10px;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-left: 2px solid var(--border);
  padding-left: 18px;
}

.timeline-item span {
  color: var(--brand);
  font-weight: 600;
}

/* Accordion */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-alt);
}

.faq-button {
  width: 100%;
  padding: 16px 18px;
  text-align: left;
  background: transparent;
  border: none;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-content {
  padding: 0 18px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-content {
  display: block;
}

/* Alternating blocks */
.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-panel {
  background: var(--bg-alt);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--border);
}

/* Footer */
footer {
  background: #142322;
  color: #dfe6e4;
  padding: 40px 20px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--bg-alt);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 42, 46, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 20px;
}

.cookie-modal.open {
  display: flex;
}

.cookie-panel {
  background: var(--bg-alt);
  border-radius: 20px;
  padding: 24px;
  max-width: 520px;
  width: 100%;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  background: #f4f6f5;
}

/* Media queries */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
  }

  .hero-copy,
  .hero-panel {
    flex: 1;
  }

  .feature-grid {
    flex-direction: row;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 20px);
  }

  .split {
    flex-direction: row;
  }

  .split-panel {
    flex: 1;
  }

  .testimonials {
    flex-direction: row;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .stats {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .service-card {
    flex: 1 1 calc(33.33% - 20px);
  }
}
