/* =====================================================================
   The Hands-Off Business Blueprint — "result-first" landing page
   ---------------------------------------------------------------------
   ADDITIVE layer with ONLY the new components used by index-result.html,
   which links styles.css first, then this file (no @import — imports dodge
   the deploy-time ?v= cache stamp). The original index.html links
   styles.css only, so it is completely unaffected by anything below.
   Brand tokens (--navy, --cyan, radius, shadow, etc.) come from styles.css.
   ===================================================================== */

/* ---------------------------------------------------------------------
   Problem section — copy-only layout (stat boxes removed Jul 2026)
   --------------------------------------------------------------------- */
.problem .problem-grid { grid-template-columns: 1fr; max-width: 780px; margin-inline: auto; }

/* ---------------------------------------------------------------------
   Program grid — five cards (90-Day plan card removed Jul 2026):
   flex so the 2-card last row centres instead of leaving a hole.
   --------------------------------------------------------------------- */
.program-grid.card-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; }
.program-grid .program-card { flex: 0 1 calc((100% - 44px) / 3); min-width: 240px; }
@media (max-width: 900px) { .program-grid .program-card { flex-basis: calc((100% - 22px) / 2); } }
@media (max-width: 560px) { .program-grid .program-card { flex-basis: 100%; } }

/* ---------------------------------------------------------------------
   "Is this you?" / Built for  (cim-pro "Built for…" analog)
   --------------------------------------------------------------------- */
.built-for-grid {
  display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 56px; align-items: center;
}
.built-for-copy h2 { color: var(--navy); margin-bottom: 1rem; }
.built-for-copy .lead { color: var(--ink-soft); font-size: 1.12rem; margin-bottom: 0.4rem; }
.checklist { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 13px; }
.checklist li { position: relative; padding-left: 40px; color: var(--ink); font-weight: 600; font-size: 1rem; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--cyan); color: var(--navy-darker); font-weight: 800; font-size: 0.82rem;
  display: grid; place-items: center;
}
.checklist strong { color: var(--navy); }
.built-for-media {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); aspect-ratio: 4 / 3.1;
}
.built-for-media img { width: 100%; height: 100%; object-fit: cover; }
.built-for-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,30,48,0.30));
}
@media (max-width: 920px) {
  .built-for-grid { grid-template-columns: 1fr; }
  .built-for-media { order: -1; max-height: 340px; }
}

/* ---------------------------------------------------------------------
   Old way vs. Hands-Off way  (cim-pro comparison table)
   Row-based grid so the two sides always align, row-for-row.
   --------------------------------------------------------------------- */
.compare { background: var(--paper); }
/* heading needs ~748px at full size; the default 720px section-head forces a two-line wrap */
.compare .section-head { max-width: 820px; }
.compare .section-head .no-break { white-space: nowrap; }
.compare-table {
  max-width: 960px; margin: 0 auto;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 24px 60px -34px rgba(0,30,48,0.35); background: #fff;
}
.compare-row { display: grid; grid-template-columns: 1fr 1fr; }
.compare-row + .compare-row { border-top: 1px solid var(--line); }
.compare-cell {
  padding: 16px 24px; display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.99rem; line-height: 1.45;
}
.compare-cell--old { background: var(--paper); color: var(--ink-soft); }
.compare-cell--new { background: #fff; color: var(--ink); font-weight: 600; border-left: 1px solid var(--line); }
.compare-ico { flex: none; width: 22px; height: 22px; margin-top: 1px; }
.compare-cell--old .compare-ico { color: #c26a49; }   /* muted "cross" tone */
.compare-cell--new .compare-ico { color: var(--cyan-deep); }
/* header row */
.compare-head-row .compare-cell { padding-block: 18px; font-weight: 800; font-size: 1.08rem; align-items: center; }
.compare-head-row .compare-cell--old { color: var(--ink-soft); }
.compare-head-row .compare-cell--new { background: var(--navy); color: #fff; border-left-color: var(--navy); }
.compare-head-row .compare-tag {
  margin-left: auto; font-size: 0.66rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em;
  background: var(--cyan); color: var(--navy-darker); padding: 4px 10px; border-radius: 999px;
}
@media (max-width: 620px) {
  .compare-row { grid-template-columns: 1fr; }
  .compare-cell--new { border-left: 0; border-top: 1px solid var(--line); }
  /* keep the two header labels stacked & readable */
  .compare-head-row .compare-cell--new { border-top-color: var(--navy); }
}

/* ---------------------------------------------------------------------
   The pay-off intro (lifestyle image opening the Benefits section)
   --------------------------------------------------------------------- */
.payoff-intro {
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; align-items: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.payoff-media {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); aspect-ratio: 4 / 4.4;
}
.payoff-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.payoff-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,30,48,0.42));
}
.payoff-copy h2 { color: var(--navy); margin-bottom: 1rem; }
.payoff-copy .lead { color: var(--ink-soft); font-size: 1.14rem; }
.payoff-copy .lead strong { color: var(--navy); }
@media (max-width: 920px) {
  .payoff-intro { grid-template-columns: 1fr; }
  .payoff-media { order: -1; max-height: 360px; }
  .payoff-media img { object-position: center 15%; }
}

/* ---------------------------------------------------------------------
   Founder story  ("Meet the person behind it")
   --------------------------------------------------------------------- */
.founder { background: #fff; }
.founder-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.founder-media { position: relative; margin-bottom: 30px; }
.founder-photo {
  /* founder-verandah.webp is landscape with Chris right of centre — bias the
     crop to him (keeps hands/notebook in frame, trims the empty chairs at left) */
  width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover; object-position: 76% center;
  border-radius: var(--radius); box-shadow: var(--shadow); display: block;
}
.founder-candid {
  position: absolute; right: -18px; bottom: -30px; width: 46%;
  aspect-ratio: 4 / 3; object-fit: cover; display: block;
  border-radius: var(--radius-sm); border: 5px solid #fff; box-shadow: var(--shadow);
}
.founder-copy h2 { color: var(--navy); margin-bottom: 1.1rem; }
.founder-copy .lead { color: var(--ink); font-weight: 700; font-size: 1.14rem; }
.founder-copy .muted.lg { margin-top: 0.9rem; }
.founder-quote {
  margin: 1.5rem 0 1.1rem; padding: 18px 22px;
  border-left: 4px solid var(--cyan); background: var(--paper);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 800; color: var(--navy); font-size: 1.16rem; line-height: 1.4;
}
.founder-sig { color: var(--ink-soft); margin-bottom: 1.5rem; }
.founder-sig strong { color: var(--navy); }
/* Credibility chips — social-proof content folded in from the old trust strip */
.founder-creds {
  list-style: none; margin: 0 0 1.6rem; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.founder-creds li {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.86rem; color: var(--navy); letter-spacing: -0.01em;
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 15px;
}
.founder-creds svg { width: 17px; height: 17px; color: var(--cyan-deep); flex: none; }
@media (max-width: 920px) {
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-media { max-width: 420px; }
  .founder-candid { right: -10px; }
}

/* ---------------------------------------------------------------------
   Case studies  (real client studies from Chris, added Jul 2026)
   --------------------------------------------------------------------- */
.case-studies { background: var(--paper); }
.case-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 18px 44px -30px rgba(0,30,48,0.35);
}
.case-tag {
  align-self: flex-start; font-size: 0.7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--cyan-deep);
  background: rgba(0,183,245,0.10); padding: 5px 12px; border-radius: 999px;
}
.case-headline { color: var(--navy); font-size: 1.1rem; line-height: 1.4; }
.case-card blockquote { margin: 0; color: var(--ink-soft); font-weight: 500; font-style: italic; font-size: 0.95rem; line-height: 1.55; }
/* Review stars — gold, with the source alongside for credibility */
.case-review { display: flex; align-items: center; gap: 10px; margin-top: 2px; }
.case-stars { color: #f6b21b; font-size: 1.02rem; letter-spacing: 2px; line-height: 1; }
.case-source {
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-soft);
}
.case-stats { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.case-stats li { position: relative; padding-left: 24px; font-size: 0.9rem; color: var(--ink-soft); }
.case-stats li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan-deep); font-weight: 800; }
.case-stats strong { color: var(--navy); }
.case-client { margin-top: auto; display: flex; flex-direction: column; border-top: 1px solid var(--line); padding-top: 14px; }

/* ---------------------------------------------------------------------
   Apply — application form (posts via mail.caidence.systems)
   --------------------------------------------------------------------- */
.apply-grid {
  position: relative; display: grid; grid-template-columns: 1fr 1.04fr;
  gap: 56px; align-items: center; text-align: left;
}
.apply-copy h2 { color: #fff; margin-bottom: 1rem; }
.apply-steps { list-style: none; margin: 1.7rem 0; padding: 0; display: grid; gap: 16px; counter-reset: astep; }
.apply-steps li { position: relative; padding-left: 46px; color: rgba(255,255,255,0.82); counter-increment: astep; }
.apply-steps li::before {
  content: counter(astep); position: absolute; left: 0; top: -3px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--cyan); color: var(--navy-darker);
  font-weight: 800; font-size: 0.92rem; display: grid; place-items: center;
}
.apply-steps strong { color: #fff; }
.apply .cta-fine { margin-top: 0; }
.apply-card {
  position: relative; background: #fff; border-radius: var(--radius);
  padding: 34px 32px; box-shadow: var(--shadow);
}
.apply-card h3 { color: var(--navy); font-size: 1.4rem; margin-bottom: 1.2rem; }
.apply-form { display: grid; gap: 15px; }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.ff { display: grid; gap: 6px; }
.ff label { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.ff-opt { font-weight: 500; color: var(--ink-soft); }
.ff input, .ff textarea {
  width: 100%; font: inherit; font-size: 0.98rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; transition: border-color .2s, box-shadow .2s, background .2s;
}
.ff input:focus, .ff textarea:focus {
  outline: none; border-color: var(--cyan); background: #fff;
  box-shadow: 0 0 0 3px rgba(0,183,245,0.18);
}
.ff textarea { resize: vertical; min-height: 104px; }
.ff-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.apply-form .btn { width: 100%; justify-content: center; margin-top: 4px; }
.ff-fine { font-size: 0.8rem; color: var(--ink-soft); text-align: center; margin: 0; }
.form-err {
  background: #fdecea; color: #9c2b1f; border: 1px solid rgba(156,43,31,0.25);
  border-radius: var(--radius-sm); padding: 12px 14px; font-size: 0.92rem; font-weight: 600; margin: 0;
}
.apply-note {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 22px; color: var(--ink); font-weight: 600; line-height: 1.5;
}
.apply-note strong { color: var(--navy); }
@media (max-width: 920px) {
  .apply-grid { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 520px) {
  .ff-row { grid-template-columns: 1fr; }
  .apply-card { padding: 26px 20px; }
}
