/* Think Sharp — trust & conversion layer.
   Loaded AFTER home.css. Only new components for the optimized home;
   reuses all existing tokens from base.css. */

/* ---------- Hero dual CTA: capture both low- and high-intent ---------- */
/* Booking action — signature gold, reserved for "book the call". */
.btn--book {
  background: var(--color-cta);
  color: var(--color-text-dark);
  box-shadow: var(--shadow-2);
}
.btn--book:hover { background: var(--color-cta-hover); transform: translateY(-2px); box-shadow: var(--shadow-3); }
.btn--book .btn__arrow { background: var(--color-text-dark); color: var(--color-cta); }

.hero__cta-row { gap: var(--s-4); }
.hero__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s-4);
}
.hero__cta-or {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

/* ---------- Hero trust bar: coach + proof in flow, BELOW the CTA ----------
   Pulls the coach chip and the testimonial out of absolute corner positioning
   so they can no longer overlap the (now taller) centered CTA cluster. */
.hero__bottom { gap: var(--s-4); }
.hero__trustbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--s-4);
  width: 100%;
  margin-top: var(--s-1);
}
.hero__trustbar .proof {
  position: absolute;
  right: 0;
  bottom: var(--s-6);
  margin: 0;
  max-width: 280px;
  text-align: left;
}
@media (max-width: 1023px) {
  .hero__trustbar { justify-content: center; }
}

/* ---------- Credibility bar: surface real credentials + LinkedIn ---------- */
.hero__creds {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s-3) var(--s-4);
  margin-top: var(--s-2);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.82);
}
.hero__creds li {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.hero__creds li + li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  margin-right: var(--s-2);
}
.hero__creds .hero__cred-link {
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 1px;
  transition: border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.hero__creds .hero__cred-link:hover { border-color: #fff; }
@media (max-width: 600px) {
  .hero__creds li:nth-child(2)::before { display: none; }
  .hero__creds { gap: var(--s-2) var(--s-4); }
}

/* ---------- Trust badges (near pricing — make the safety net visible) ---------- */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3) var(--s-5);
  max-width: 760px;
  margin: var(--s-6) auto 0;
  padding-top: var(--s-5);
  border-top: 1px dashed rgba(255,255,255,0.18);
}
.trust-badges li {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 13.5px;
  color: rgba(255,255,255,0.82);
  line-height: 1.3;
}
.trust-badges__check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(255,208,107,0.16);
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

/* ---------- Concrete result in the case study ---------- */
.trust__case-metric {
  display: block;
  margin-top: var(--s-3);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  font-style: italic;
  color: var(--color-accent);
}

/* ---------- Footer: surface LinkedIn as external validation ---------- */
.footer__social {
  margin-top: var(--s-4);
  display: flex;
  justify-content: center;
  gap: var(--s-4);
  font-size: 13px;
}
.footer__social a {
  color: rgba(255,255,255,0.7);
  border-bottom: 1px dashed rgba(255,255,255,0.3);
  padding-bottom: 1px;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.footer__social a:hover { color: var(--color-accent); border-color: var(--color-accent); }
