/* LokalBoost — product-page specific, extends base */

.lb-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 6rem 0; }
@media (max-width: 720px) { section { padding: 4rem 0; } }

.section-centered {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.section-centered h2 { margin-bottom: 1.5rem; }

/* Hero */
.hero { padding: 4rem 0 6rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.hero h1 {
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero .lead {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 2.25rem;
  animation: fadeUp 0.9s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-ctas {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.9s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.trust-strip {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  animation: fadeUp 0.9s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.trust-strip .sep { color: var(--line-strong); margin: 0 0.5rem; }

.hero-art {
  animation: fadeUp 0.9s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-art svg {
  width: 100%;
  max-width: 340px;
  display: block;
  margin-left: auto;
  height: auto;
}
@media (max-width: 880px) {
  .hero-art svg { margin: 0 auto; max-width: 280px; }
  .hero-art { order: -1; }
}

/* Problem */
.problem { text-align: center; }
.problem h2 { margin: 0 auto 1.5rem; max-width: 720px; }
.problem p {
  margin: 0 auto 1.25rem;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 640px;
}
.problem .bridge {
  color: var(--ink);
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-top: 1.5rem;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}
@media (max-width: 720px) {
  .steps { grid-template-columns: 1fr; gap: 2.5rem; }
}
.step .num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
  line-height: 1;
}
.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--muted); margin: 0; }

/* Score section */
.score-section {
  background: var(--paper-soft);
  padding: 6rem 2rem;
}
.score-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}
.score-inner h2 { margin-bottom: 0.75rem; }
.score-inner > p {
  color: var(--muted);
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  max-width: 600px;
}
.score-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: left;
}
@media (max-width: 880px) { .score-categories { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .score-categories { grid-template-columns: 1fr; } }
.score-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.75rem;
}
.score-card .cat-pts {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--accent-dot);
  display: block;
  margin-bottom: 0.25rem;
  line-height: 1;
}
.score-card .cat-max {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.score-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.score-card p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* Who it's for */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 720px) { .who-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .who-grid { grid-template-columns: 1fr; } }
.who-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  background: var(--paper);
}
.who-card .marker {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent-dot);
  border-radius: 50%;
  margin-bottom: 1rem;
}
.who-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.who-card p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* About block */
.about-section { text-align: center; }
.about-block {
  max-width: 640px;
  margin: 3rem auto 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  text-align: left;
  background: var(--paper);
}
.about-block h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.about-block p {
  color: var(--muted);
  margin: 0 0 0.75rem;
}
.about-meta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-align: center;
}
.about-meta .sep { color: var(--line-strong); margin: 0 0.5rem; }

/* FAQ */
.faq {
  max-width: 720px;
  margin: 3rem auto 0;
}
details {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0.5rem;
}
details:last-of-type { border-bottom: 1px solid var(--line); }
details summary {
  font-family: var(--serif);
  font-size: 1.2rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--ink);
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.5rem;
  color: var(--muted);
  font-weight: 300;
  flex-shrink: 0;
}
details[open] summary::after { content: "−"; }
details p {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 100%;
}
details[open] {
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
}

/* Final CTA */
.final-cta {
  background: var(--paper-soft);
  padding: 6rem 2rem;
  text-align: center;
}
.final-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}
.final-cta h2 { margin-bottom: 1rem; }
.final-cta p {
  color: var(--muted);
  margin: 0 auto 2rem;
}
.final-cta .microcopy {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}
