/* ============================================================================
   INDUSTRIES - shared layout for every page under /industries/
   Loaded after main.css. Only genuinely new patterns live here; everything
   else reuses the core vocabulary (.shell/.card/.chip/.checklist/.faq/…).
   ========================================================================== */

/* ---- 1. ANCHOR TARGETS ---------------------------------------------------- */
.section[id],.anchor-target{scroll-margin-top:clamp(88px,12vh,132px)}

/* ---- 2. PAGE-HERO EXTRAS -------------------------------------------------- */
.pg-actions{display:flex;flex-wrap:wrap;gap:.9rem;margin-top:2.2rem}
.pg-facts{
  display:flex;flex-wrap:wrap;align-items:center;gap:.9rem 1.7rem;
  margin-top:2.2rem;padding-top:1.6rem;border-top:1px solid var(--line);
  font-size:var(--fs-small);color:var(--ink-soft);
}
.pg-fact{display:inline-flex;align-items:center;gap:.5rem}
.pg-fact svg{width:16px;height:16px;flex:none;color:var(--purple)}
.pg-fact b{color:var(--ink);font-weight:650}

/* split hero with photography */
.page-hero--split{padding-bottom:clamp(3.2rem,6.5vw,5rem)}
.ph-grid{display:grid;gap:clamp(2.2rem,5vw,3.6rem);align-items:center}
@media(min-width:980px){.ph-grid{grid-template-columns:1.06fr .94fr}}
.page-hero--split h1{max-width:16ch}
.page-hero--split .lead{max-width:52ch}
.ph-media{position:relative}
.ph-frame{
  position:relative;border-radius:var(--r-xl);overflow:hidden;
  box-shadow:var(--shadow-lift);border:1px solid rgba(25,36,81,.06);
}
.ph-frame img{width:100%;aspect-ratio:5/4.3;object-fit:cover}
.ph-frame::after{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(200deg,transparent 45%,rgba(25,36,81,.28));
}
.ph-chip{
  position:absolute;z-index:3;display:flex;align-items:center;gap:.8rem;
  padding:.85rem 1.05rem;border-radius:var(--r-md);
  background:rgba(255,255,255,.94);
  -webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);
  border:1px solid rgba(25,36,81,.08);box-shadow:var(--shadow-md);
  max-width:min(19rem,80%);
}
.ph-chip--a{left:-1rem;bottom:2.4rem}
.ph-chip--b{right:-.8rem;top:1.8rem}
@media(max-width:559px){
  .ph-chip--a{left:.6rem;bottom:.9rem}
  .ph-chip--b{display:none}
}
.ph-chip .pc-ic{
  flex:none;width:38px;height:38px;border-radius:12px;display:grid;place-items:center;
  background:var(--purple-tint);color:var(--purple);
}
.ph-chip .pc-ic--blue{background:var(--blue-tint);color:var(--blue-dark)}
.ph-chip .pc-ic svg{width:19px;height:19px}
.ph-chip b{display:block;font-size:.93rem;font-weight:650;color:var(--ink);line-height:1.25}
.ph-chip span{display:block;font-size:.78rem;color:var(--ink-soft);line-height:1.4;margin-top:.12rem}

/* ---- 3. ANCHOR PILL NAV --------------------------------------------------- */
.anchor-nav{display:flex;flex-wrap:wrap;gap:.6rem}
.anchor-nav a{
  display:inline-flex;align-items:center;gap:.55rem;
  padding:.62rem 1.15rem;border-radius:var(--r-pill);
  background:#fff;border:1px solid var(--line-strong);
  font-size:var(--fs-small);font-weight:600;color:var(--ink);
  transition:border-color var(--t-fast),color var(--t-fast),transform var(--t-fast),box-shadow var(--t-fast);
}
.anchor-nav a svg{width:15px;height:15px;flex:none;color:var(--purple)}
.anchor-nav a:hover{border-color:var(--purple);color:var(--purple);transform:translateY(-2px);box-shadow:var(--shadow-sm)}

/* ---- 4. INTRO SPLIT ------------------------------------------------------- */
.intro-split{display:grid;gap:clamp(2rem,4.5vw,3.5rem);align-items:start}
@media(min-width:920px){.intro-split{grid-template-columns:1.12fr .88fr}}
.intro-split .prose p:last-child{margin-bottom:0}
.intro-aside{
  background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);
  padding:1.7rem;box-shadow:var(--shadow-sm);
}
.intro-aside h3{margin-bottom:.9rem;font-size:1.15rem}
.intro-aside .checklist li{font-size:var(--fs-small)}

/* ---- 5. INDUSTRY CARDS (hub) ---------------------------------------------- */
.ind-grid{display:grid;gap:1.7rem}
@media(min-width:900px){.ind-grid{grid-template-columns:1fr 1fr}}
.ind-card{
  position:relative;display:flex;flex-direction:column;overflow:hidden;
  border-radius:var(--r-xl);background:#fff;
  border:1px solid var(--line);box-shadow:var(--shadow-sm);
  transition:transform var(--t-med),box-shadow var(--t-med),border-color var(--t-med);
}
.ind-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lift);border-color:rgba(96,36,149,.2)}
.ind-media{position:relative;overflow:hidden}
.ind-media img{width:100%;aspect-ratio:16/9;object-fit:cover;transition:transform 1.1s var(--ease)}
.ind-card:hover .ind-media img{transform:scale(1.05)}
.ind-media::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(185deg,rgba(25,36,81,.04) 40%,rgba(25,36,81,.42));
}
.ind-flag{
  position:absolute;z-index:2;top:1rem;left:1rem;
  display:inline-flex;align-items:center;gap:.4rem;
  padding:.38rem .8rem;border-radius:var(--r-pill);
  background:rgba(255,255,255,.94);
  -webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);
  font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--purple);
}
.ind-body{padding:1.7rem;display:flex;flex-direction:column;flex:1}
.ind-body h3{font-size:clamp(1.3rem,2vw,1.55rem);margin-bottom:.6rem}
.ind-body p{font-size:var(--fs-small)}
.ind-tags{display:flex;flex-wrap:wrap;gap:.4rem;margin:1.1rem 0 0}
.ind-tags li{
  font-size:.76rem;font-weight:550;color:var(--ink-soft);
  padding:.3rem .68rem;border-radius:var(--r-pill);
  background:var(--bg-soft);border:1px solid var(--line);
}
.ind-body .btn--ghost{margin-top:auto;padding-top:1.2rem}
@media(min-width:900px){
  .ind-card--feature{grid-column:1 / -1}
  .ind-card--feature{flex-direction:row}
  .ind-card--feature .ind-media{flex:0 0 46%}
  .ind-card--feature .ind-media img{height:100%;aspect-ratio:auto;min-height:340px}
  .ind-card--feature .ind-body{padding:clamp(1.8rem,3vw,2.6rem)}
}

/* ---- 6. SPLIT MEDIA (narrative sections) ---------------------------------- */
.media-split{display:grid;gap:clamp(2rem,4.5vw,3.5rem);align-items:center}
@media(min-width:920px){
  .media-split{grid-template-columns:1fr 1fr}
  .media-split--flip .ms-media{order:2}
}
.ms-media{position:relative;border-radius:var(--r-xl);overflow:hidden;box-shadow:var(--shadow-lift)}
.ms-media img{width:100%;aspect-ratio:5/4;object-fit:cover}
.ms-badge{
  position:absolute;z-index:2;left:1.2rem;bottom:1.2rem;right:1.2rem;
  display:flex;align-items:center;gap:.8rem;
  padding:.9rem 1.05rem;border-radius:var(--r-md);
  background:rgba(255,255,255,.93);
  -webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);
  border:1px solid rgba(25,36,81,.08);box-shadow:var(--shadow-md);
}
.ms-badge .mb-ic{
  flex:none;width:38px;height:38px;border-radius:12px;display:grid;place-items:center;
  background:var(--purple-tint);color:var(--purple);
}
.ms-badge .mb-ic svg{width:19px;height:19px}
.ms-badge b{display:block;font-size:.95rem;font-weight:650;color:var(--ink);line-height:1.25}
.ms-badge span{display:block;font-size:.78rem;color:var(--ink-soft);line-height:1.4;margin-top:.12rem}

/* ---- 7. PAIN CARDS (numbered, editorial) ---------------------------------- */
.pain-stack{display:grid;gap:1.4rem}
@media(min-width:760px){.pain-stack{grid-template-columns:1fr 1fr}}
@media(min-width:1080px){.pain-stack--3{grid-template-columns:repeat(3,1fr)}}
.pain-item{
  position:relative;overflow:hidden;
  padding:1.75rem;border-radius:var(--r-lg);
  background:#fff;border:1px solid var(--line);box-shadow:var(--shadow-sm);
  transition:transform var(--t-med),box-shadow var(--t-med),border-color var(--t-med);
}
.pain-item:hover{transform:translateY(-5px);box-shadow:var(--shadow-lift);border-color:rgba(96,36,149,.2)}
.pain-item::before{
  content:"";position:absolute;left:1.75rem;right:70%;top:0;height:3px;border-radius:0 0 3px 3px;
  background:var(--grad);transition:right var(--t-med);
}
.pain-item:hover::before{right:1.75rem}
.pi-top{display:flex;align-items:center;gap:.85rem;margin-bottom:.9rem}
.pi-n{
  flex:none;font-family:var(--font-display);font-size:1.05rem;font-weight:650;
  width:38px;height:38px;border-radius:12px;display:grid;place-items:center;
  background:var(--purple-tint);color:var(--purple);
}
.pain-item:hover .pi-n{background:var(--grad);color:#fff}
.pi-n{transition:background-color var(--t-med),color var(--t-med)}
.pi-top h3{font-size:1.1rem;line-height:1.3}
.pain-item p{font-size:var(--fs-small);line-height:1.65}
.pain-item p+p{margin-top:.7rem}
.pi-fix{
  display:flex;gap:.6rem;align-items:flex-start;
  margin-top:1.1rem;padding-top:1rem;border-top:1px solid var(--line);
  font-size:.86rem;line-height:1.55;color:var(--ink-soft);
}
.pi-fix b{color:var(--ink)}
.pi-fix .ck{
  flex:none;width:20px;height:20px;margin-top:.15rem;border-radius:50%;
  display:grid;place-items:center;background:var(--grad);color:#fff;
}
.pi-fix .ck svg{width:11px;height:11px}

/* ---- 8. SERVICE ITEM GRID (2-col icon list) ------------------------------- */
.svc-list{display:grid;gap:.7rem;margin-top:1.6rem}
@media(min-width:560px){.svc-list{grid-template-columns:1fr 1fr}}
.svc-item{
  display:flex;gap:.7rem;align-items:flex-start;
  padding:.8rem .9rem;border-radius:var(--r-md);
  background:#fff;border:1px solid var(--line);
  transition:border-color var(--t-fast),box-shadow var(--t-fast),transform var(--t-fast);
}
a.svc-item:hover{border-color:rgba(96,36,149,.24);box-shadow:var(--shadow-sm);transform:translateY(-2px)}
.svc-item .si-ic{
  flex:none;width:34px;height:34px;border-radius:11px;display:grid;place-items:center;
  background:var(--purple-tint);color:var(--purple);
  transition:background-color var(--t-med),color var(--t-med);
}
a.svc-item:hover .si-ic{background:var(--grad);color:#fff}
.svc-item .si-ic svg{width:17px;height:17px}
.svc-item b{display:block;font-size:.95rem;font-weight:600;line-height:1.35;color:var(--ink)}
.svc-item span{display:block;font-size:.82rem;line-height:1.45;color:var(--ink-faint);margin-top:.15rem}
.svc-list--plain .svc-item{background:var(--bg-soft)}

/* ---- 9. WHAT-WE-DO CARDS (mapped to services) ----------------------------- */
.map-grid{display:grid;gap:1.5rem}
@media(min-width:720px){.map-grid{grid-template-columns:1fr 1fr}}
.map-card>.card{display:flex;flex-direction:column;height:100%}
.map-card .card p{flex:none}
/* the list, not the intro paragraph, absorbs the slack in a short card, so
   uneven bullet counts leave space above the CTA instead of above the bullets */
.map-list{display:grid;align-content:start;gap:.55rem;margin:1.1rem 0 1.2rem;flex:1}
.map-list li{
  position:relative;padding-left:1.1rem;font-size:.87rem;line-height:1.5;color:var(--ink-soft);
}
.map-list li::before{
  content:"";position:absolute;left:0;top:.55rem;width:5px;height:5px;border-radius:50%;background:var(--grad);
}
.map-card .btn--ghost{margin-top:auto}

/* ---- 10. STAGE LADDER ------------------------------------------------------ */
.stage-grid{display:grid;gap:1.4rem;counter-reset:stage}
@media(min-width:680px){.stage-grid{grid-template-columns:1fr 1fr}}
@media(min-width:1100px){.stage-grid{grid-template-columns:repeat(4,1fr)}}
.stage{
  position:relative;display:flex;flex-direction:column;
  padding:1.7rem 1.5rem;border-radius:var(--r-lg);
  background:#fff;border:1px solid var(--line);box-shadow:var(--shadow-sm);
  transition:transform var(--t-med),box-shadow var(--t-med),border-color var(--t-med);
}
.stage:hover{transform:translateY(-5px);box-shadow:var(--shadow-lift);border-color:rgba(96,36,149,.2)}
.stage-bar{display:flex;gap:4px;margin-bottom:1.1rem}
.stage-bar i{height:5px;flex:1;border-radius:3px;background:rgba(25,36,81,.09)}
.stage-bar i.on{background:var(--grad)}
.stage-when{
  display:block;font-size:var(--fs-tiny);font-weight:700;letter-spacing:.14em;
  text-transform:uppercase;color:var(--purple);margin-bottom:.5rem;
}
.stage h3{font-size:1.08rem;margin-bottom:.55rem}
.stage>p{font-size:.87rem;line-height:1.6}
.stage ul{display:grid;gap:.5rem;margin-top:1.1rem;padding-top:1rem;border-top:1px solid var(--line)}
.stage li{position:relative;padding-left:1.05rem;font-size:.84rem;line-height:1.5;color:var(--ink-soft)}
.stage li::before{
  content:"";position:absolute;left:0;top:.52rem;width:5px;height:5px;border-radius:50%;background:var(--grad);
}

/* ---- 11. VERSUS COLUMNS ---------------------------------------------------- */
.vs-grid{display:grid;gap:1.5rem;align-items:start}
@media(min-width:840px){.vs-grid{grid-template-columns:1fr 1fr}}
.vs-col{
  padding:1.8rem;border-radius:var(--r-lg);background:#fff;
  border:1px solid var(--line);box-shadow:var(--shadow-sm);
}
.vs-col--good{border-color:rgba(96,36,149,.25);box-shadow:var(--shadow-md)}
.vs-head{display:flex;align-items:center;gap:.8rem;padding-bottom:1.1rem;border-bottom:1px solid var(--line)}
.vs-head h3{font-size:1.12rem}
.vs-ic{
  flex:none;width:40px;height:40px;border-radius:13px;display:grid;place-items:center;
  background:var(--bg-soft);color:var(--ink-faint);
}
.vs-col--good .vs-ic{background:var(--grad);color:#fff}
.vs-ic svg{width:19px;height:19px}
.vs-col ul{display:grid;gap:.85rem;margin-top:1.2rem}
.vs-col li{display:flex;gap:.7rem;align-items:flex-start;font-size:var(--fs-small);line-height:1.55;color:var(--ink-soft)}
.vs-col li b{color:var(--ink)}
.vs-mark{
  flex:none;width:20px;height:20px;margin-top:.15rem;border-radius:50%;display:grid;place-items:center;
  background:rgba(25,36,81,.07);color:var(--ink-faint);
}
.vs-col--good .vs-mark{background:var(--grad);color:#fff}
.vs-mark svg{width:11px;height:11px}

/* ---- 12. DEDUCTION PREVIEW ------------------------------------------------- */
.ded-split{display:grid;gap:clamp(2rem,4.5vw,3.4rem);align-items:center}
@media(min-width:920px){.ded-split{grid-template-columns:1fr 1.1fr}}
.ded-book{position:relative;display:flex;justify-content:center}
.ded-book img{
  /* Was min(340px,76%), which left the column mostly empty around a small
     cover. The book is the whole point of this section, so let it fill it. */
  width:min(460px,100%);
  /* The cover is a 3D mockup with a transparent background, so box-shadow drew
     a white rectangle around it. drop-shadow follows the alpha channel. */
  filter:drop-shadow(0 10px 20px rgba(25,36,81,.18)) drop-shadow(0 30px 60px rgba(25,36,81,.24));
  transform:rotate(-3deg);transition:transform var(--t-med);
}
.ded-book:hover img{transform:rotate(0deg) translateY(-6px)}
.ded-list{display:grid;gap:.7rem;margin:1.5rem 0}
@media(min-width:640px){.ded-list{grid-template-columns:1fr 1fr}}
.ded-list li{
  display:flex;gap:.65rem;align-items:flex-start;
  padding:.8rem .95rem;border-radius:var(--r-md);
  background:#fff;border:1px solid var(--line);
  font-size:.88rem;line-height:1.45;color:var(--ink-soft);
  transition:border-color var(--t-fast),transform var(--t-fast);
}
.ded-list li:hover{border-color:rgba(96,36,149,.22);transform:translateY(-2px)}
.ded-list li b{color:var(--ink);display:block;font-weight:600;font-size:.93rem}
.ded-list .ck{
  flex:none;width:20px;height:20px;margin-top:.2rem;border-radius:50%;
  display:grid;place-items:center;background:var(--grad);color:#fff;
}
.ded-list .ck svg{width:11px;height:11px}
.ded-blur{
  position:relative;overflow:hidden;border-radius:var(--r-md);
  padding:1rem 1.15rem;background:var(--bg-lavender);border:1px dashed rgba(96,36,149,.3);
  font-size:.86rem;color:var(--ink-soft);
}
.ded-blur b{color:var(--purple)}

/* ---- 13. OFFER / CROSS-SELL BANNER ---------------------------------------- */
.offer-banner{
  position:relative;overflow:hidden;display:grid;gap:clamp(1.8rem,4vw,3rem);align-items:center;
  padding:clamp(2rem,4vw,3.2rem);border-radius:var(--r-xl);
  background:var(--navy);color:#fff;box-shadow:var(--shadow-lift);
  transition:transform var(--t-med),box-shadow var(--t-med);
}
a.offer-banner:hover{transform:translateY(-4px);box-shadow:0 8px 20px rgba(25,36,81,.14),0 40px 80px rgba(25,36,81,.24)}
@media(min-width:900px){.offer-banner{grid-template-columns:1.08fr .92fr}}
.offer-banner::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(62% 100% at 96% 0%,rgba(56,145,254,.34),transparent 56%),
    radial-gradient(58% 100% at 2% 100%,rgba(96,36,149,.5),transparent 58%);
}
.offer-banner>*{position:relative;z-index:1}
.offer-banner h2,.offer-banner h3{color:#fff}
.offer-banner h3{font-size:clamp(1.6rem,2.7vw,2.15rem);margin:.9rem 0 .8rem}
.offer-banner p{color:rgba(255,255,255,.76)}
.offer-banner .badge-soft{background:rgba(56,145,254,.18);color:#9CC5FF}
.offer-list{display:grid;gap:.7rem;margin:1.5rem 0 1.8rem}
.offer-list li{display:flex;align-items:flex-start;gap:.7rem;font-size:var(--fs-small);color:rgba(255,255,255,.85)}
.offer-list b{color:#fff}
.offer-list .ck{
  flex:none;width:20px;height:20px;margin-top:.15rem;border-radius:50%;display:grid;place-items:center;
  background:rgba(255,255,255,.16);color:#fff;
}
.offer-list .ck svg{width:11px;height:11px}
.offer-panel{
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);
  border-radius:var(--r-lg);padding:1.5rem;
}
.offer-panel h4{color:#fff;font-size:.95rem;margin-bottom:1rem}
.op-row{
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
  padding:.75rem 0;border-bottom:1px solid rgba(255,255,255,.1);font-size:var(--fs-small);
}
.op-row:last-child{border-bottom:0}
.op-row span{color:rgba(255,255,255,.7)}
.op-row b{color:#fff;font-weight:650;font-variant-numeric:tabular-nums}
.op-note{font-size:.76rem;color:rgba(255,255,255,.55);line-height:1.5;margin-top:1rem}

/* ---- 14. COMMON-GROUND TRAITS --------------------------------------------- */
.trait-grid{display:grid;gap:1.4rem}
@media(min-width:680px){.trait-grid{grid-template-columns:1fr 1fr}}
@media(min-width:1040px){.trait-grid{grid-template-columns:repeat(3,1fr)}}
.trait{
  display:flex;gap:1rem;align-items:flex-start;
  padding:1.5rem;border-radius:var(--r-lg);
  background:#fff;border:1px solid var(--line);box-shadow:var(--shadow-sm);
  transition:transform var(--t-med),box-shadow var(--t-med),border-color var(--t-med);
}
.trait:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:rgba(96,36,149,.18)}
.trait .tr-ic{
  flex:none;width:44px;height:44px;border-radius:14px;display:grid;place-items:center;
  background:var(--purple-tint);color:var(--purple);
  transition:background-color var(--t-med),color var(--t-med);
}
.trait:hover .tr-ic{background:var(--grad);color:#fff}
.trait .tr-ic--blue{background:var(--blue-tint);color:var(--blue-dark)}
.trait .tr-ic svg{width:21px;height:21px}
.trait h3{font-size:1.05rem;margin-bottom:.4rem}
.trait p{font-size:var(--fs-small);line-height:1.6}

/* ---- 15. TOOL / RESOURCE LINK CARDS --------------------------------------- */
.tool-grid{display:grid;gap:1.4rem}
@media(min-width:640px){.tool-grid{grid-template-columns:1fr 1fr}}
@media(min-width:1080px){.tool-grid--5{grid-template-columns:repeat(5,1fr)}}
.tool-card{
  display:flex;flex-direction:column;gap:.6rem;
  padding:1.5rem;border-radius:var(--r-lg);
  background:#fff;border:1px solid var(--line);box-shadow:var(--shadow-sm);
  transition:transform var(--t-med),box-shadow var(--t-med),border-color var(--t-med);
}
.tool-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lift);border-color:rgba(96,36,149,.22)}
.tool-card .t-ic{
  width:46px;height:46px;border-radius:14px;display:grid;place-items:center;
  background:var(--purple-tint);color:var(--purple);margin-bottom:.4rem;
  transition:background-color var(--t-med),color var(--t-med),transform .4s var(--ease-spring);
}
.tool-card:hover .t-ic{background:var(--grad);color:#fff;transform:translateY(-2px) scale(1.05)}
.tool-card .t-ic--blue{background:var(--blue-tint);color:var(--blue-dark)}
.tool-card .t-ic svg{width:22px;height:22px}
.tool-card h3{font-size:1.02rem;margin-bottom:.2rem}
.tool-card p{font-size:.85rem;line-height:1.55;flex:1}
.tool-card .btn--ghost{margin-top:.4rem;font-size:.88rem}

/* ---- 16. STEPS (numbered process) ----------------------------------------- */
.steps{display:grid;gap:1.5rem}
@media(min-width:820px){.steps{grid-template-columns:repeat(3,1fr)}}
.step{position:relative;padding:2rem 1.8rem;border-radius:var(--r-lg);background:var(--bg-soft);border:1px solid var(--line)}
.section--soft .step,.section--cream .step,.section--lavender .step{background:#fff}
.step-n{
  display:block;font-family:var(--font-display);font-size:2.6rem;font-weight:600;line-height:1;
  background:var(--grad);-webkit-background-clip:text;background-clip:text;color:transparent;
  margin-bottom:.9rem;
}
.step h3{margin-bottom:.5rem}
.step p{font-size:var(--fs-small)}
@media(min-width:820px){
  .steps>.step:not(:last-child)::after{
    content:"";position:absolute;top:2.6rem;right:-1.1rem;width:.7rem;height:.7rem;
    border-top:2px solid var(--line-strong);border-right:2px solid var(--line-strong);
    transform:rotate(45deg);
  }
}

/* ---- 17. SHARED-SERVICES STRIP -------------------------------------------- */
.strip-grid{display:grid;gap:1.2rem}
@media(min-width:640px){.strip-grid{grid-template-columns:1fr 1fr}}
@media(min-width:1040px){.strip-grid{grid-template-columns:repeat(4,1fr)}}
.strip-item{
  display:flex;flex-direction:column;gap:.5rem;
  padding:1.5rem;border-radius:var(--r-lg);
  background:#fff;border:1px solid var(--line);box-shadow:var(--shadow-sm);
  transition:transform var(--t-med),box-shadow var(--t-med),border-color var(--t-med);
}
.strip-item:hover{transform:translateY(-5px);box-shadow:var(--shadow-lift);border-color:rgba(96,36,149,.2)}
.strip-item .icon-chip{width:46px;height:46px;border-radius:14px;margin-bottom:.3rem}
.strip-item:hover .icon-chip{background:var(--grad);color:#fff}
.strip-item .icon-chip svg{width:22px;height:22px}
.strip-item h3{font-size:1.02rem;margin-bottom:.15rem}
.strip-item p{font-size:.85rem;line-height:1.55;flex:1}
.strip-item .btn--ghost{margin-top:.5rem;font-size:.88rem}

/* ---- 18. CHIP ROW & SMALL PRINT ------------------------------------------- */
.chip-row{display:flex;flex-wrap:wrap;gap:.6rem}
.chip-row .chip{font-weight:550}
.fine-print{font-size:.82rem;color:var(--ink-faint);line-height:1.65;max-width:70ch}
.fine-print a{color:var(--purple);font-weight:600;text-decoration:underline;text-underline-offset:3px}
.lead-strong{font-size:var(--fs-lead);line-height:1.6;color:var(--ink);font-weight:500}

/* ---- 19. QUOTE PANEL (empathy pull-quote) --------------------------------- */
.quote-panel{
  position:relative;overflow:hidden;
  max-width:56rem;margin-inline:auto;text-align:center;
  padding:clamp(2rem,4.5vw,3.2rem);border-radius:var(--r-xl);
  background:linear-gradient(165deg,var(--purple-tint),#fff 62%);
  border:1px solid rgba(96,36,149,.14);
}
.quote-panel p{
  font-family:var(--font-display);font-size:clamp(1.25rem,2.4vw,1.7rem);
  line-height:1.4;color:var(--ink);font-style:italic;font-weight:450;
}
.quote-panel .qp-mark{
  display:block;font-family:var(--font-display);font-size:3.2rem;line-height:.6;
  background:var(--grad);-webkit-background-clip:text;background-clip:text;color:transparent;
  margin-bottom:1rem;
}
.quote-panel cite{
  display:block;margin-top:1.4rem;font-style:normal;font-size:var(--fs-small);
  font-weight:600;color:var(--ink-soft);
}

/* ---- 20. TESTIMONIAL HEAD / FOOT (carousel trim) -------------------------- */
.t-head{
  display:flex;align-items:flex-end;justify-content:space-between;
  gap:1.5rem;flex-wrap:wrap;margin-bottom:clamp(1.6rem,3vw,2.2rem);
}
.t-head h2{max-width:20ch}
.t-head .eyebrow{margin-bottom:.7rem}
.t-foot{display:flex;justify-content:center;margin-top:1.4rem}

/* ---- 21. STAT ROW ---------------------------------------------------------- */
.stat-row{
  display:grid;gap:1.5rem;padding:1.8rem 0;
  border-top:1px solid var(--line);border-bottom:1px solid var(--line);
}
@media(min-width:640px){.stat-row{grid-template-columns:repeat(3,1fr)}}
@media(min-width:900px){.stat-row--4{grid-template-columns:repeat(4,1fr)}}

/* ---- 22. TWO-COLUMN CHECKLIST (full-width section, no media column) ------- */
.checklist--2col{gap:1.1rem 3rem}
@media(min-width:820px){.checklist--2col{grid-template-columns:1fr 1fr}}
/* the default .section-head gap is sized for a grid of cards; a plain list
   directly beneath it needs far less air */
.section-head--tight{margin-bottom:clamp(1.4rem,2.2vw,1.9rem)}
