* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f4f0;
  --text: #1f2424;
  --muted: #556061;
  --brand: #2b6f6d;
  --brand-dark: #1d4e4c;
  --accent: #c49b61;
  --surface: #ffffff;
  --surface-alt: #eef2f2;
  --border: #d9dedf;
  --shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--brand-dark);
}

.nav-toggle {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.nav-menu {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--surface);
  position: absolute;
  top: 64px;
  right: 4%;
  padding: 1rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.nav-menu a {
  font-weight: 600;
  color: var(--text);
}

body.menu-open .nav-menu {
  display: flex;
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  border-color: var(--brand);
  color: var(--brand);
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--surface);
}

.section-contrast {
  background: var(--brand-dark);
  color: #fff;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.eyebrow {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card svg {
  width: 44px;
  height: 44px;
  color: var(--brand);
}

.feature-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-block {
  background: var(--surface-alt);
  padding: 1.5rem;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.stat {
  flex: 1 1 160px;
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 16px;
  text-align: left;
}

.stat strong {
  font-size: 1.8rem;
  color: var(--brand-dark);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 18px;
  border-left: 6px solid var(--accent);
}

.highlight-panel {
  background: var(--surface);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 14px;
  background: var(--surface-alt);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1rem 1.2rem;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.2rem 1rem;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.cta-band {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: var(--brand);
  color: #fff;
  padding: 2rem;
  border-radius: 24px;
}

.site-footer {
  padding: 2rem 0 3rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border-radius: 18px;
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow);
  width: min(560px, 92%);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(25, 35, 35, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
  padding: 1.5rem;
}

.cookie-modal-inner {
  background: var(--surface);
  border-radius: 20px;
  padding: 1.5rem;
  width: min(560px, 96%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: var(--surface-alt);
}

.toggle {
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
}

.toggle[aria-pressed="true"] {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.info-card {
  flex: 1 1 220px;
  background: var(--surface);
  padding: 1.4rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-price {
  font-weight: 700;
  color: var(--brand-dark);
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    padding: 0;
    box-shadow: none;
    background: transparent;
  }

  body.menu-open .nav-menu {
    display: flex;
  }

  .hero-inner,
  .split {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    flex: 1.1;
  }

  .hero-visual {
    flex: 0.9;
  }

  .feature-row {
    flex-direction: row;
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
