/* Intake.now - doelgroep-landingspagina's (bv. /nl/kinesitherapeuten/).
   Vult assets/base.css aan met de weinige componenten die op de bestaande
   pagina's nog niet bestonden. Wordt enkel door landingspagina's geladen,
   dus bestaande pagina's worden hierdoor niet beinvloed. */

/* --- Toegankelijkheid: zichtbare focus voor toetsenbordgebruik --- */
a:focus-visible,
.btn:focus-visible,
summary:focus-visible {
  outline: 3px solid #000;
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1100;
  background: #000;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

/* --- Hero --- */
.lp-hero {
  padding: 3.5rem 0 2rem;
  text-align: center;
}

.lp-hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  color: #000;
  max-width: 900px;
  margin: 0 auto 1.25rem;
}

.lp-lead {
  font-size: 1.15rem;
  color: #444;
  max-width: 760px;
  margin: 0 auto 1rem;
}

/* --- Tekstsecties --- */
.lp-section {
  padding: 3rem 0;
}

.lp-section h2 {
  font-size: clamp(1.6rem, 3.2vw, 2rem);
  line-height: 1.2;
  color: #000;
  margin-bottom: 1.25rem;
  max-width: 900px;
}

.lp-body {
  max-width: 760px;
}

.lp-body p {
  color: #444;
  margin-bottom: 1rem;
}

.lp-body p:last-child {
  margin-bottom: 0;
}

.lp-emphasis {
  font-weight: 600;
  color: #000;
}

.lp-centered {
  text-align: center;
}

/* Ook wanneer een element zelf beide klassen draagt (class="lp-body lp-centered"),
   moet het blok gecentreerd staan en niet links uitgelijnd blijven. */
.lp-centered h2,
.lp-centered .lp-body,
h2.lp-centered,
.lp-body.lp-centered {
  margin-left: auto;
  margin-right: auto;
}

/* Microcopy onder een CTA. Iets donkerder dan .disclaimer voor beter contrast. */
.lp-microcopy {
  color: #666;
  font-size: 0.92rem;
  margin-top: 1rem;
}

.lp-textlink {
  color: #000;
  font-weight: 600;
  text-underline-offset: 3px;
}

.lp-textlink:hover {
  opacity: 0.7;
}

/* Verwijzing naar de prijssectie op de homepage. De volledige prijstabel staat
   bewust alleen daar, zodat er maar één bron van prijsinformatie is. */
.lp-prijslink {
  margin-top: 0.75rem;
  font-size: 0.96rem;
}

/* --- Stappenplan: hergebruikt .list-grid/.steps uit base.css --- */
.lp-steps {
  margin-top: 2rem;
  max-width: 820px;
}

.lp-steps .list-item h3 {
  font-size: 1.05rem;
  color: #000;
  margin-bottom: 0.25rem;
}

.lp-steps .list-item p {
  margin: 0;
}

/* --- Privacy-kenmerken: hergebruikt .list-grid.two/.list-item --- */
.lp-facts {
  margin-top: 2rem;
  max-width: 820px;
}

/* Alle kenmerkkaarten dezelfde opbouw, ook zonder pictogram, zodat de tekst
   op dezelfde hoogte blijft staan. */
.lp-facts .list-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Vaste breedte voor het pictogramvak. De pictogrammen zelf verschillen in
   verhouding; zonder vast vak begint de tekst per kaart op een andere plaats.
   object-fit houdt elk pictogram op ware verhouding binnen dat vak. */
.lp-fact-icoon {
  flex: none;
  width: 2.75rem;
  height: 2.1rem;
  object-fit: contain;
  object-position: center;
}

/* --- FAQ --- */
.lp-faq {
  max-width: 760px;
  margin-top: 1.5rem;
}

.lp-faq-item {
  border-top: 1px solid #eee;
  padding: 1.25rem 0;
}

.lp-faq-item:last-child {
  border-bottom: 1px solid #eee;
}

.lp-faq-item h3 {
  font-size: 1.05rem;
  color: #000;
  margin-bottom: 0.4rem;
}

.lp-faq-item p {
  color: #444;
  margin: 0;
}

/* --- Afsluitende CTA --- */
.lp-final {
  margin-top: 1rem;
  padding: 3rem 0 4rem;
  border-top: 1px solid #eee;
  text-align: center;
}

/* --- Beeldruimte (wacht op definitief beeldmateriaal) --- */
.lp-media {
  width: min(860px, 100%);
  margin: 2.5rem auto 0;
  border-radius: 18px;
  overflow: hidden;
  background: #f7f7f7;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.12);
}

.lp-media img {
  display: block;
  width: 100%;
  height: auto;
}

.lp-media-caption {
  color: #777;
  font-size: 0.9rem;
  margin-top: 0.9rem;
  text-align: center;
}

@media (max-width: 820px) {
  .lp-section {
    padding: 2.25rem 0;
  }

  .lp-hero {
    padding: 2.5rem 0 1.5rem;
  }

  .lp-lead {
    font-size: 1.05rem;
  }

  .lp-final {
    padding: 2.5rem 0 3rem;
  }
}
