/* =====================================================================
   YV Coach — pagina-specifieke componenten
   Scope: uitsluitend /yv-coach/. Gebruikt bestaande design-tokens en het
   120px/1140px-ritme uit yvsport.css.
   ===================================================================== */

/* ---- Gedeelde tekstblokken ---- */
.coach-prose { max-width: 720px; }
.coach-prose p {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 20px;
}
.coach-prose p:last-child { margin-bottom: 0; }

.coach-note {
  margin: 48px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 15px;
  color: var(--slate);
}
.coach-note--dark { color: var(--slate-warm); }
.coach-prose--dark p { color: var(--slate-warm); }

/* Leesbaarheidsfix: yvsport.css regel 2480 zet .num-item .title op --ink met
   dezelfde specificiteit als de section-dark-regel op 435, maar later in het
   bestand. In een donkere sectie werd de titel daardoor donker op donker. */
.section-dark .num-list-bordered .num-item .title { color: var(--white); }
.section-dark .num-list-bordered .num-item .text  { color: var(--slate-warm); }

.coach-subhead {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  margin: 72px 0 24px;
}

/* ---- Kosten-strip (4 bewijsregels) ---- */
.coach-costs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.coach-cost {
  background: var(--white);
  padding: 36px 28px;
}
.coach-cost__icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--yv-green-soft);
  color: var(--yv-green);
  margin-bottom: 18px;
}
.coach-cost__icon svg { width: 16px; height: 16px; }
.coach-cost h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 10px;
}
.coach-cost p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--slate);
}
.coach-costs__note {
  margin: 32px auto 0;
  max-width: 700px;
  text-align: center;
  font-size: 14.5px;
  color: var(--slate);
}

/* ---- Twee apps ---- */
.coach-apps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.coach-app {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px 36px;
}
.coach-app:last-child { border-color: var(--yv-green); }
.coach-app__role {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yv-green);
  margin-bottom: 14px;
}
.coach-app h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 16px;
}
.coach-app p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--slate);
  margin-bottom: 20px;
}

/* ---- Profielen ---- */
.coach-profiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.coach-profile {
  border-top: 2px solid var(--yv-green);
  padding-top: 28px;
}
.coach-profile__quote {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 16px;
}
.coach-profile p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--slate);
}
.coach-profile__gain {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 14.5px;
  color: var(--ink);
}
.coach-profile__gain span {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 6px;
}

/* ---- Feature-rij met telefoonscreenshot ---- */
.coach-feature {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 72px;
  align-items: center;
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.coach-feature:last-child { border-bottom: 1px solid var(--border); }
.coach-feature--flip { grid-template-columns: 300px 1fr; }
.coach-feature--flip .coach-feature__body { order: 2; }
.coach-feature--flip .coach-feature__shot { order: 1; }
.coach-feature--noshot {
  grid-template-columns: 1fr;
  max-width: 760px;
}
.coach-feature__body h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 18px;
}
.coach-feature__body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--slate);
}
.coach-bullets {
  list-style: none;
  margin-top: 22px;
}
.coach-bullets li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate);
  padding: 8px 0;
}
.coach-bullets li svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  margin-top: 5px;
  color: var(--yv-green);
}

/* ---- Telefoonframe ---- */
.phone-frame {
  width: 260px;
  margin: 0 auto;
  padding: 6px;
  background: var(--dark);
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(15, 22, 20, 0.18);
}
.phone-frame__screen {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: var(--stone);
  aspect-ratio: 780 / 1691;
}
.phone-frame__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
/* Dynamic Island — ligt over de bovenkant van het scherm, zoals op de telefoon */
.phone-frame__screen::after {
  content: "";
  position: absolute;
  top: 1.3%;
  left: 50%;
  transform: translateX(-50%);
  width: 31%;
  aspect-ratio: 3.4 / 1;
  background: #000;
  border-radius: 999px;
  z-index: 2;
}

/* Twee schermen naast elkaar, met overlap. Het kleine scherm staat altijd aan
   de buitenkant van de kolom, dus nooit tegen de lopende tekst aan. */
.coach-feature--pair { grid-template-columns: 1fr 380px; }
.coach-feature--pair.coach-feature--flip { grid-template-columns: 380px 1fr; }
.coach-feature__shot--pair {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.coach-feature__shot--pair .phone-frame--front {
  position: relative;
  z-index: 2;
  width: 234px;
  flex: 0 0 auto;
  margin: 0;            /* de auto-marge van .phone-frame slokt anders de overlap op */
}
.coach-feature__shot--pair .phone-frame--back {
  position: relative;
  z-index: 1;
  order: 2;
  width: 154px;
  flex: 0 0 auto;
  margin: 74px 0 0 -58px;
  padding: 4px;
  border-radius: 22px;
}
.coach-feature__shot--pair .phone-frame--back .phone-frame__screen { border-radius: 18px; }
.coach-feature--flip .coach-feature__shot--pair .phone-frame--back {
  order: 0;
  margin-left: 0;
  margin-right: -58px;
}

/* ---- Compacte features ---- */
.coach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.coach-tile {
  background: var(--cream);
  padding: 36px 30px;
}
.coach-tile__icon {
  display: block;
  color: var(--yv-green);
  margin-bottom: 16px;
}
.coach-tile__icon svg { width: 24px; height: 24px; }
.coach-tile h3 {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 10px;
}
.coach-tile p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--slate);
}
.coach-callout {
  margin-top: 48px;
  padding: 40px 44px;
  background: var(--dark);
  color: var(--white);
}
.coach-callout h3 {
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}
.coach-callout p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--slate-warm);
  max-width: 780px;
}

/* ---- Wat je betaalt ---- */
.coach-pay { max-width: 760px; }
.coach-pay__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.coach-pay__row:last-child { border-bottom: 1px solid var(--border); }
.coach-pay__what {
  font-size: 15.5px;
  color: var(--ink);
}
.coach-pay__cost {
  font-size: 14.5px;
  color: var(--slate);
  text-align: right;
}
.coach-pay__row.is-highlight .coach-pay__what,
.coach-pay__row.is-highlight .coach-pay__cost {
  color: var(--yv-green);
  font-weight: 500;
}
.coach-closer {
  margin-top: 40px;
  max-width: 720px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
}

/* ---- CTA-blok ---- */
.coach-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.coach-side-card {
  border: 1px solid var(--dark-border);
  padding: 32px 30px;
}
.coach-side-card + .coach-side-card { margin-top: 24px; }
.coach-side-card h3 {
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 14px;
}
.coach-side-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--slate-warm);
}
.coach-side-card__contact {
  margin-top: 16px;
  font-size: 14.5px;
}
.coach-side-card__contact a {
  color: var(--white);
  border-bottom: 1px solid var(--yv-green);
  margin-left: 6px;
}
.coach-side-card__contact a:hover { color: var(--yv-green); }
.coach-side-card--alt { background: rgba(0, 151, 117, 0.07); }
.coach-side-card__btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
}

/* ---- Slotregel ---- */
.coach-closing { padding: 88px 0 96px; }
.coach-closing__text {
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink);
  max-width: 640px;
  margin: 0 auto;
}
.coach-closing__footnote {
  margin: 32px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--slate-light);
}

/* ---- Responsive ---- */
@media (max-width: 1023px) {
  .coach-costs { grid-template-columns: repeat(2, 1fr); }
  .coach-profiles { grid-template-columns: 1fr; gap: 36px; }
  .coach-grid { grid-template-columns: repeat(2, 1fr); }
  .coach-feature { grid-template-columns: 1fr 240px; gap: 44px; }
  .coach-feature--flip { grid-template-columns: 240px 1fr; }
  .phone-frame { width: 220px; }
  .coach-feature--pair { grid-template-columns: 1fr 320px; }
  .coach-feature--pair.coach-feature--flip { grid-template-columns: 320px 1fr; }
  .coach-feature__shot--pair .phone-frame--front { width: 200px; }
  .coach-feature__shot--pair .phone-frame--back { width: 132px; margin-top: 62px; margin-left: -50px; }
  .coach-feature--flip .coach-feature__shot--pair .phone-frame--back { margin-left: 0; margin-right: -50px; }
  .coach-cta { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 767px) {
  .coach-costs { grid-template-columns: 1fr; }
  .coach-cost { padding: 28px 24px; }
  .coach-apps { grid-template-columns: 1fr; gap: 20px; }
  .coach-app { padding: 32px 26px; }
  .coach-grid { grid-template-columns: 1fr; }
  .coach-tile { padding: 28px 24px; }
  .coach-feature,
  .coach-feature--flip {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 0;
  }
  .coach-feature--flip .coach-feature__body { order: 1; }
  .coach-feature--flip .coach-feature__shot { order: 2; }
  .coach-feature__body h3 { font-size: 21px; }
  .phone-frame { width: 236px; }
  .coach-feature--pair,
  .coach-feature--pair.coach-feature--flip { grid-template-columns: 1fr; }
  .coach-feature__shot--pair .phone-frame--front { width: 188px; }
  .coach-feature__shot--pair .phone-frame--back,
  .coach-feature--flip .coach-feature__shot--pair .phone-frame--back {
    width: 124px;
    margin: 48px 0 0 -42px;
    padding: 4px;
    border-radius: 18px;
  }
  .coach-feature--flip .coach-feature__shot--pair .phone-frame--back { margin-left: 0; margin-right: -42px; }
  .coach-feature__shot--pair .phone-frame--back .phone-frame__screen { border-radius: 15px; }
  .coach-callout { padding: 32px 26px; }
  .coach-subhead { margin-top: 56px; }
  .coach-pay__row { grid-template-columns: 1fr; gap: 4px; }
  .coach-pay__cost { text-align: left; }
  .coach-closing__text { font-size: 18px; }
}


/* ---- Showcase: drie schermen onder de hero ---- */
.coach-showcase-section { padding: 88px 0 40px; }
.coach-costs-section { padding-top: 72px; }
.coach-showcase {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 40px;
}
.coach-showcase__item { text-align: center; }
.coach-showcase__item figcaption {
  margin-top: 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--slate-light);
}
.coach-showcase__item--1,
.coach-showcase__item--3 { padding-bottom: 34px; }
.coach-showcase__item--1 .phone-frame,
.coach-showcase__item--3 .phone-frame { width: 220px; }
.coach-showcase__item--2 .phone-frame { width: 262px; }

/* ---- Trainer blijft (donkere sectie) ---- */
.coach-coaching {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.coach-coaching__item {
  border-top: 1px solid var(--dark-border);
  padding-top: 26px;
}
.coach-coaching__icon {
  display: block;
  color: var(--yv-green);
  margin-bottom: 16px;
}
.coach-coaching__icon svg { width: 24px; height: 24px; }
.coach-coaching__item h3 {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--white);
}
.coach-coaching__item p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--slate-warm);
}

@media (max-width: 1023px) {
  .coach-showcase { gap: 20px; }
  .coach-showcase__item--1 .phone-frame,
  .coach-showcase__item--3 .phone-frame { width: 170px; }
  .coach-showcase__item--2 .phone-frame { width: 205px; }
  .coach-coaching { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 767px) {
  .coach-showcase-section { padding: 56px 0 24px; }
  .coach-costs-section { padding-top: 48px; }
  .coach-showcase { gap: 10px; }
  .coach-showcase__item--1,
  .coach-showcase__item--3 { padding-bottom: 22px; }
  .coach-showcase__item--1 .phone-frame,
  .coach-showcase__item--3 .phone-frame { width: 104px; padding: 5px; border-radius: 20px; }
  .coach-showcase__item--2 .phone-frame { width: 128px; padding: 6px; border-radius: 24px; }
  .coach-showcase__item--1 .phone-frame__screen,
  .coach-showcase__item--3 .phone-frame__screen { border-radius: 15px; }
  .coach-showcase__item--2 .phone-frame__screen { border-radius: 18px; }
  .coach-showcase__item figcaption { font-size: 10px; letter-spacing: 2px; margin-top: 12px; }
}


/* ---- Knop onder de mockups ---- */
.coach-showcase__cta { text-align: center; margin-top: 52px; }
.coach-showcase__cta p {
  margin-top: 16px;
  font-size: 13px;
  color: var(--slate-light);
}


/* ---- AI-intake: speelse rij mockups (donkere band, sluit aan op de stappen) ---- */

.coach-intake {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 18px;
  margin-top: 8px;
}
.coach-intake__item {
  width: 230px;
  text-align: center;
  transition: transform 0.4s ease;
}
.coach-intake__item img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.22));
}
.coach-intake__item figcaption {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 18px;
}
.coach-intake__item--1 { transform: rotate(-2.5deg) translateY(18px); }
.coach-intake__item--2 { transform: rotate(1.5deg); }
.coach-intake__item--3 { transform: rotate(-1.5deg) translateY(14px); }
.coach-intake__item--4 { transform: rotate(2.5deg) translateY(4px); }
.coach-intake__item--4 figcaption { color: var(--yv-green); }
.coach-intake__item:hover { transform: rotate(0deg) translateY(-6px); }
.coach-intake__body {
  max-width: 720px;
  margin: 64px auto 0;
}
.coach-intake__body p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 18px;
}
.coach-intake__body p:last-child { margin-bottom: 0; }

@media (max-width: 1023px) {
  .coach-intake { flex-wrap: wrap; gap: 12px 20px; }
  .coach-intake__item { width: 40%; max-width: 210px; }
  .coach-intake__item--3, .coach-intake__item--4 { margin-top: 24px; }
}

@media (max-width: 767px) {
  .coach-intake { gap: 8px 12px; }
  .coach-intake__item { width: 44%; max-width: none; }
  .coach-intake__item figcaption { font-size: 9.5px; letter-spacing: 1.5px; margin-bottom: 10px; }
  .coach-intake__body { margin-top: 44px; }
}


/* ---- Uitgeprint schema: papierstapel ---- */
.coach-feature--paper { grid-template-columns: 1fr 400px; }
.coach-feature--paper.coach-feature--flip { grid-template-columns: 400px 1fr; }
.paper-stack { position: relative; padding: 0 14px; }
.paper-stack::before,
.paper-stack::after {
  content: "";
  position: absolute;
  inset: 10px 0 -10px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 14px 34px rgba(15, 22, 20, 0.07);
}
.paper-stack::before { transform: rotate(-2.2deg); }
.paper-stack::after  { transform: rotate(1.6deg); }
.paper-stack img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  box-shadow: 0 18px 44px rgba(15, 22, 20, 0.12);
}

@media (max-width: 1023px) {
  .coach-feature--paper { grid-template-columns: 1fr 300px; }
  .coach-feature--paper.coach-feature--flip { grid-template-columns: 300px 1fr; }
}
@media (max-width: 767px) {
  .coach-feature--paper,
  .coach-feature--paper.coach-feature--flip { grid-template-columns: 1fr; }
  .paper-stack { max-width: 320px; margin: 0 auto; }
}


/* De stagger voorbij blok vijf zit sinds S59 in yvsport.css zelf, site-breed. */


/* ---- Kruisverwijzing naar YV Coach op /onze-app/ ---- */
/* Op een donkere sectie valt de zwarte telefoonrand weg tegen de achtergrond,
   dus daar krijgt het frame een lichtere rand met een dunne highlight. */
.coach-crossref .phone-frame {
  background: #26332F;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
  outline: 1px solid rgba(255, 255, 255, 0.10);
  outline-offset: -1px;
}
.coach-crossref .coach-showcase { margin-top: 56px; }
.coach-crossref .coach-showcase__item figcaption { color: var(--slate-warm); }
.coach-crossref .coach-showcase__cta { margin-top: 44px; text-align: center; }
@media (max-width: 767px) {
  .coach-crossref .coach-showcase { margin-top: 40px; }
}
