/* LimpoSim ZL 2026 LPs */
:root {
  --green: #0f6b4f;
  --green-dark: #084332;
  --mint: #e7f4ee;
  --ink: #17211d;
  --muted: #5b6762;
  --line: #dce6e1;
  --paper: #ffffff;
  --soft: #f5f7f4;
  --accent: #b85c38;
  --shadow: 0 18px 50px rgba(12, 44, 33, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}
.brand img { border-radius: 8px; }
.desktop-nav { display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: 0.95rem; }
.desktop-nav a, .phone-link { text-decoration: none; }
.desktop-nav a:hover, .phone-link:hover { color: var(--green); }
.phone-link { font-weight: 700; color: var(--green-dark); }

.hero {
  position: relative;
  min-height: clamp(470px, 66svh, 610px);
  display: flex;
  align-items: center;
  isolation: isolate;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 28, 22, 0.62);
  z-index: -1;
}
.hero-content {
  color: white;
  padding: 52px 0 58px;
  max-width: 780px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.hero .eyebrow { color: #ffcf9d; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}
h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: 0;
}
h3 { margin: 0 0 10px; font-size: 1.12rem; line-height: 1.2; letter-spacing: 0; }
.hero-lead {
  max-width: 690px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.92);
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}
.hero-points li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.92);
  font-size: 0.93rem;
  font-weight: 750;
}
.hero-actions, .final-inner, .service-area, .decision-grid, .media-grid, .two-col, .footer-grid {
  display: grid;
  gap: 28px;
}
.hero-actions {
  grid-template-columns: repeat(2, max-content);
  align-items: center;
  margin-top: 30px;
}
.hero-note { margin-top: 16px; color: rgba(255,255,255,0.78); font-size: 0.96rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}
.btn-primary {
  background: var(--green);
  color: white;
  box-shadow: 0 12px 30px rgba(15, 107, 79, 0.25);
}
.btn-primary:hover { background: var(--green-dark); }
.btn-ghost {
  color: white;
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.08);
}
.btn-ghost:hover { background: rgba(255,255,255,0.16); }
.copy .btn { margin-top: 10px; }
.section-action {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.trust-bar { background: var(--green-dark); color: white; }
.trust-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 0.8fr 1fr;
  gap: 18px;
  padding: 16px 0;
  font-size: 0.94rem;
}
.trust-grid p { margin: 0; color: rgba(255,255,255,0.88); }

.section { padding: 78px 0; }
.muted { background: var(--soft); }
.two-col { grid-template-columns: 0.95fr 1.05fr; align-items: start; }
.copy p { margin-top: 0; color: var(--muted); font-size: 1.05rem; }
.section-head { max-width: 760px; margin-bottom: 28px; }
.section-head h2 + p { color: var(--muted); }

.cards { display: grid; gap: 18px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  min-height: 170px;
}
.muted .card { background: white; }
.card p { margin: 0; color: var(--muted); }

.media-grid { grid-template-columns: 0.95fr 1.05fr; align-items: center; }
.photo {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.steps {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  counter-reset: step;
}
.steps li {
  position: relative;
  padding: 14px 0 14px 48px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 12px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green-dark);
  font-weight: 900;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.compare-grid figure {
  margin: 0;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #d9e2dd;
}
.compare-grid span {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(8, 67, 50, 0.88);
  color: white;
  font-weight: 800;
  font-size: 0.78rem;
}

.decision-band {
  background: var(--green-dark);
  color: white;
}
.decision-grid { grid-template-columns: 0.92fr 1.08fr; align-items: center; }
.decision-band .eyebrow { color: #ffcf9d; }
.decision-band p { color: rgba(255,255,255,0.86); }
.decision-band h2 { font-size: clamp(2.35rem, 5vw, 4.35rem); }
.decision-card {
  background: white;
  color: var(--ink);
  border-radius: 8px;
  padding: 26px;
}
.decision-card p { color: var(--muted); }
.decision-card .btn { margin-top: 10px; }
.small { font-size: 0.92rem; }

.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.badges span {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  padding: 8px 12px;
  font-weight: 750;
  color: var(--green-dark);
}
.service-area { grid-template-columns: 1fr max-content; align-items: center; }

.faq-list {
  display: grid;
  gap: 12px;
}
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 0 18px;
}
summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 850;
}
details p { margin: 0; padding: 0 0 18px; color: var(--muted); }

.final-cta {
  padding: 72px 0;
  background: var(--mint);
}
.final-inner { grid-template-columns: 1fr max-content; align-items: center; }
.final-inner p { color: var(--muted); }

.footer {
  background: #111a17;
  color: white;
  padding: 34px 0 86px;
}
.footer-grid { grid-template-columns: 1fr max-content; align-items: start; }
.footer p { margin: 0; color: rgba(255,255,255,0.76); }
.footer a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 8px;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 30;
  display: none;
  min-width: min(420px, calc(100vw - 32px));
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--green);
  color: white;
  font-weight: 900;
  text-decoration: none;
  box-shadow: var(--shadow);
}
.sr-status {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 31;
  max-width: 360px;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--green-dark);
  color: white;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.sr-status.active { opacity: 1; }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .phone-link { font-size: 0.92rem; }
  .hero { min-height: 620px; background-position: center top; }
  .hero-content { padding: 54px 0 74px; }
  .hero-actions { grid-template-columns: 1fr; align-items: stretch; max-width: 390px; }
  .trust-grid, .two-col, .media-grid, .decision-grid, .service-area, .final-inner, .footer-grid {
    grid-template-columns: 1fr;
  }
  .cards.three, .cards.four { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 58px 0; }
  .sticky-cta.is-visible { display: flex; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 24px, 1120px); }
  .header-inner { min-height: 58px; }
  .brand span { display: none; }
  .hero { min-height: 590px; }
  .hero-content { padding: 44px 0 54px; }
  h1 { font-size: clamp(2rem, 9.2vw, 2.85rem); line-height: 1.04; }
  h2 { font-size: clamp(1.55rem, 8vw, 2.25rem); }
  .hero-lead { font-size: 1.02rem; margin-top: 18px; }
  .hero-points { display: none; }
  .hero-actions { margin-top: 24px; }
  .hero .btn-ghost { display: none; }
  .btn { width: 100%; }
  .compare-grid { grid-template-columns: 1fr; }
  .decision-band h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .decision-card { padding: 20px; }
}
