/* ===== Sustainability Consulting: Clickable Cards (No "Explore" text) ===== */
.scq-wrap{
  --sc-green: #78a22f;
  --sc-green-soft: rgba(120,162,47,.12);
  --sc-gray: #707372;
  --sc-ink: #343538;
  --sc-border: rgba(0,0,0,.10);
  --sc-border-strong: rgba(0,0,0,.16);

  --sc-shadow: 0 10px 26px rgba(0,0,0,.06);
  --sc-shadow-hover: 0 18px 44px rgba(0,0,0,.14);
  --sc-shadow-active: 0 22px 54px rgba(0,0,0,.16);

  margin: 36px 0;
  padding: 52px 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,0));
  box-shadow: 0 18px 48px rgba(0,0,0,.10);
}

.scq-inner{ max-width: 1120px; margin: 0 auto; }
.scq-head{ margin-bottom: 22px; }

.scq-kicker{
  font-size: 17px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sc-gray);
  margin-bottom: 10px;
  font-weight: 700;
}

.scq-title{
  margin: 0 0 10px;
  font-size: clamp(34px, 3.2vw, 44px);
  line-height: 1.08;
  color: var(--sc-ink);
  font-weight: 800;
}

.scq-sub{
  margin: 0;
  color: var(--sc-gray);
  font-size: 18px;
  line-height: 1.6;
  max-width: 78ch;
}

/* Proof pills */
.scq-proof{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.scq-pill{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  color: var(--sc-ink);
  font-size: 14px;
  font-weight: 600;
}

/* Grid */
.scq-grid{
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 980px){
  .scq-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  .scq-wrap{ padding: 34px 16px; }
  .scq-grid{ grid-template-columns: 1fr; }
}

/* Neutralize theme button styles */
.scq-card-btn{
  -webkit-appearance: none !important;
  appearance: none !important;
  background: #fff !important;
  border: 1px solid var(--sc-border) !important;
  border-radius: 18px !important;
  padding: 22px 22px 18px !important;
  width: 100% !important;
  text-align: left !important;
  cursor: pointer !important;
  position: relative !important;

  /* baseline interactive */
  box-shadow: var(--sc-shadow) !important;

  /* make it feel "tappable" on desktop */
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    background .18s ease,
    filter .18s ease !important;
}

/* Helpful: makes “click me” obvious even before hover */
.scq-card-btn::after{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 20px;
  pointer-events:none;
  opacity:0;
  transition: opacity .18s ease;
  box-shadow: 0 0 0 3px rgba(120,162,47,.22);
}

/* Big clarity win: obvious hover */
.scq-card-btn:hover{
  transform: translateY(-3px);
  box-shadow: var(--sc-shadow-hover) !important;
  border-color: rgba(120,162,47,.30) !important;
  background: linear-gradient(180deg, rgba(120,162,47,.06), #fff) !important;
  filter: saturate(1.02);
}
.scq-card-btn:hover::after{ opacity: 1; }

/* Keyboard focus (also reinforces clickability) */
.scq-card-btn:focus-visible{
  outline: 3px solid rgba(120,162,47,.35);
  outline-offset: 3px;
  border-color: rgba(120,162,47,.55) !important;
}
.scq-card-btn:focus-visible::after{ opacity: 1; }

/* Active state: clearly selected/open */
.scq-card-btn.is-active{
  border-color: rgba(120,162,47,.65) !important;
  box-shadow: var(--sc-shadow-active) !important;
  background: linear-gradient(180deg, rgba(120,162,47,.07), #fff) !important;
}
.scq-card-btn.is-active::after{
  opacity: 1;
  box-shadow: 0 0 0 3px rgba(120,162,47,.30);
}

/* Icon container */
.scq-icon{
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(120,162,47,.10);
  color: var(--sc-green);
  margin-bottom: 14px;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.scq-icon svg{ width: 22px; height: 22px; }

.scq-card-btn:hover .scq-icon{
  transform: translateY(-1px);
  background: rgba(120,162,47,.13);
  box-shadow: 0 10px 18px rgba(120,162,47,.10);
}

/* Title */
.scq-card-title{
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--sc-ink);
  text-transform: none !important;
  letter-spacing: normal !important;

  /* keep space for corner chevron */
  padding-right: 44px;
}

/* Strong "click cue" with no words: link-like behavior on hover */
.scq-card-btn:hover .scq-card-title{
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(120,162,47,.45);
}

/* Corner chevron pill (add › inside card) */
.scq-corner-chev{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  color: rgba(0,0,0,.35);
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .18s ease, color .18s ease, background .18s ease, border-color .18s ease;
}

.scq-card-btn:hover .scq-corner-chev{
  transform: translateX(3px);
  color: rgba(0,0,0,.55);
  background: rgba(120,162,47,.10);
  border-color: rgba(120,162,47,.18);
}

.scq-card-btn.is-active .scq-corner-chev{
  transform: rotate(90deg);
  color: rgba(120,162,47,.95);
  background: rgba(120,162,47,.12);
  border-color: rgba(120,162,47,.22);
}

/* If the old "Explore" CTA markup is still present, hide it cleanly */
.scq-card-cta{ display:none !important; }

/* SR helper */
.scq-sr{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Details panel */
.scq-details{ margin-top: 18px; }

.scq-detail{
  margin-top: 14px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  box-shadow: 0 14px 36px rgba(0,0,0,.10);
}

.scq-detail-inner{ padding: 18px 18px 14px; }

.scq-detail-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.scq-detail-eyebrow{
  font-size: 17px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sc-gray);
  font-weight: 800;
}

.scq-detail-close{
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid rgba(0,0,0,.14);
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.scq-detail-close:hover{
  border-color: rgba(120,162,47,.40);
  box-shadow: 0 10px 18px rgba(120,162,47,.10);
}

.scq-detail-list{
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--sc-gray);
  font-size: 16px;
  line-height: 1.6;
}
.scq-detail-list li{
  position: relative;
  padding-left: 22px;
  margin: 10px 0;
}
.scq-detail-list li::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(120,162,47,.65);
  position: absolute;
  left: 4px;
  top: 9px;
}

/* Existing helper styles you had */
.sust-bridge {
  max-width: 720px;
  margin: 8px 0 24px 0;
  font-size: 19px;
  line-height: 1.7;
  font-weight: 500;
  color: #3c3c3c;
}
/* ===== Sustainability Consulting: Process Timeline Strip ===== */
.scpt-wrap{
  --sc-green:#78a22f;
  --sc-ink:#343538;
  --sc-gray:#707372;
  --sc-border:rgba(0,0,0,.10);

  background: rgba(0,0,0,.02);
  padding: 80px 24px;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.scpt-inner{ max-width: 1120px; margin: 0 auto; }

.scpt-kicker{
  font-size: 17px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sc-gray);
  font-weight: 800;
  margin-bottom: 10px;
}

.scpt-title{
  margin: 0 0 10px;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.15;
  color: #1f2933;
  font-weight: 800;
}

.scpt-sub{
  margin: 0;
  color: var(--sc-gray);
  font-size: 17px;
  line-height: 1.6;
  max-width: 78ch;
}

/* timeline layout */
.scpt-line{
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
  position: relative;
}

/* single connecting line behind steps */
.scpt-line::before{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  top: 34px;
  height: 2px;
  background: rgba(120,162,47,.22);
  border-radius: 999px;
}

.scpt-step{
  position: relative;
  padding-top: 6px;
}

/* top row: icon + numbered dot */
.scpt-top{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.scpt-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(120,162,47,.10);
  color: var(--sc-green);
  border: 1px solid rgba(120,162,47,.20);
}

.scpt-icon svg{ width: 20px; height: 20px; }

.scpt-dot{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 2px solid rgba(120,162,47,.55);
  color: var(--sc-ink);
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
}

/* text */
.scpt-step-title{
  font-weight: 800;
  color: var(--sc-ink);
  font-size: 16px;
  margin-bottom: 6px;
}

.scpt-step-desc{
  color: var(--sc-gray);
  font-size: 15px;
  line-height: 1.55;
}

/* mobile: stack and switch to vertical line */
@media (max-width: 980px){
  .scpt-line{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .scpt-line::before{
    left: 25px;
    right: auto;
    top: 52px;
    bottom: 18px;
    width: 2px;
    height: auto;
  }

  .scpt-step{
    padding-left: 0;
  }

  .scpt-top{
    margin-bottom: 10px;
  }
}
/* ===== MODERN FIT CHECK (FINAL) ===== */

.sc-fit-check-modern{
  margin: 70px 0;
}

/* Wider-than-normal container (not full width) */
.sc-fit-inner{
  max-width: 1320px;     /* wider than other sections */
  margin: 0 auto;
  padding: 0 40px;       /* extra side breathing room */
}

/* Header (optional but recommended) */
.sc-fit-header{
  text-align: left;
  max-width: 760px;
  margin-bottom: 34px;
}

.sc-fit-kicker{
  display: inline-block;
  font-size: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 12px;
}

.sc-fit-header h2{
  font-size: 38px;
  color: #78a22f;
  margin: 0 0 14px 0;
  letter-spacing: -0.5px;
}

.sc-fit-header p{
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Main Card */
.sc-fit-card{
  display: flex;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  position: relative;
  gap: 50px;             /* creates breathing room without squeezing text */
}

/* Left Accent Bar */
.sc-fit-card::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: #78a22f;
  border-radius: 22px 0 0 22px;
}

/* Columns */
.sc-fit-col{
  padding: 60px 55px;    /* more vertical presence, less horizontal squeeze */
  min-width: 0;          /* prevents flex overflow weirdness */
}

/* Strong Fit */
.sc-fit-strong{
  flex: 1;
  background: linear-gradient(135deg, #edf5e3 0%, #ffffff 85%);
}

/* Not Fit */
.sc-fit-muted{
  flex: 1;
  background: #ffffff;
  border-left: 1px solid rgba(0,0,0,0.03);
}

.sc-fit-muted li{
  color: #555;
}

/* Headings */
.sc-fit-col h3{
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 26px 0;
  color: #1e1e1e;
  letter-spacing: -0.3px;
  text-transform: none;
  line-height: 1.15;
}

/* Slight hierarchy boost */
.sc-fit-strong h3{
  font-size: 28px;
}

/* Lists */
.sc-fit-col ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.sc-fit-col li{
  display: flex;
  align-items: flex-start;
  gap: 10px;             /* tighter to buy more text width */
  margin-bottom: 16px;
  font-size: 16px;       /* small drop helps keep lines single on desktop */
  line-height: 1.55;
  color: #3a3a3a;
}

/* Bullet */
.sc-bullet{
  width: 10px;
  height: 10px;
  background: #78a22f;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

/* Muted bullet */
.sc-bullet.muted{
  background: #c8c8c8;
}

/* Keep bullets on one line on large screens only (safe) */
@media (min-width: 1200px){
  .sc-fit-col li{
    white-space: nowrap;
  }
}

/* Responsive */
@media (max-width: 900px){
  .sc-fit-inner{
    padding: 0 20px;
  }

  .sc-fit-card{
    flex-direction: column;
    gap: 0;
  }

  .sc-fit-col{
    padding: 44px 28px;
  }

  .sc-fit-muted{
    border-left: none;
    border-top: 1px solid rgba(0,0,0,0.06);
  }

  .sc-fit-card::before{
    display: none;
  }

  /* allow wrapping on smaller screens */
  .sc-fit-col li{
    white-space: normal;
  }
}
/* Move the hero overlay box to the right (widget-based) */
.hero-box-right{
  margin-left: auto !important;   /* pushes it right */
  margin-right: 0 !important;
  max-width: 720px;               /* prevents it from getting too wide */
}

/* If the widget is being centered by its parent */
.hero-box-right{
  display: block !important;
}

/* Mobile: keep it centered and readable */
@media (max-width: 780px){
  .hero-box-right{
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 92% !important;
  }
}

/* =========================
   SC HERO (based on HRA HERO)
   Attach to Row ID: sc-hero
   ========================= */

#sc-hero{
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 96px) 0;
}

#sc-hero > *{
  position: relative;
  z-index: 2;
}

/* HARD RESET: kill any SiteOrigin row-style wrappers/tints */
#sc-hero .panel-row-style,
#sc-hero .panel-row-style-inner,
#sc-hero .so-rounded.panel-row-style{
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

#sc-hero .panel-row-style::before,
#sc-hero .panel-row-style::after,
#sc-hero .panel-row-style-inner::before,
#sc-hero .panel-row-style-inner::after{
  content: none !important;
}

/* ONE card: first widget in the row (the content box) */
#sc-hero .so-panel.widget:first-of-type{
  max-width: 720px;

  /* push the card to the RIGHT */
  margin-left: auto !important;
  margin-right: clamp(14px, 3vw, 30px) !important;

  background: rgba(255,255,255,0.88) !important;
  border-radius: 22px !important;
  padding: clamp(22px, 3.2vw, 38px) !important;
  box-shadow: 0 22px 70px rgba(0,0,0,0.10) !important;
}

/* Make sure inner wrappers don’t create a second box */
#sc-hero .so-panel.widget:first-of-type .so-panel-inner,
#sc-hero .so-panel.widget:first-of-type .textwidget,
#sc-hero .so-panel.widget:first-of-type .so-widget-sow-editor{
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* Typography */
#sc-hero h1{
  margin: 0 0 14px;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.6px;
  color: #111;
}

#sc-hero h1 + p{
  margin: 0 0 18px;
  font-size: clamp(18px, 2.0vw, 22px);
  line-height: 1.5;
  font-weight: 600;
  color: #5f8f24;
}

#sc-hero p{
  color: rgba(0,0,0,0.82);
}

/* Bullets */
#sc-hero ul{ list-style:none; padding:0; margin:0; }
#sc-hero li{
  margin: 0 0 10px;
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
  color: rgba(0,0,0,0.82);
}
#sc-hero li::before{
  content:"";
  width:6px; height:6px;
  border-radius:50%;
  background:#78a22f;
  position:absolute;
  left:0; top:11px;
}

/* Mobile */
@media (max-width: 768px){
  #sc-hero{
    padding: 44px 0;
  }
  #sc-hero .so-panel.widget:first-of-type{
    margin-left: 14px !important;
    margin-right: 14px !important;
    max-width: none !important;
  }
}
/* =========================
   SC HERO Buttons
========================= */

#sc-hero .sc-hero-actions{
  margin-top: 18px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Base button */
#sc-hero .sc-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all .2s ease;
}

/* Primary button (green) */
#sc-hero .sc-btn-primary{
  background: #78a22f;
  color: #fff;
  box-shadow: 0 10px 26px rgba(120,162,47,.35);
}

#sc-hero .sc-btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(120,162,47,.4);
}

/* Secondary button (outline) */
#sc-hero .sc-btn-secondary{
  background: transparent;
  border: 1.5px solid rgba(0,0,0,.2);
  color: #111;
}

#sc-hero .sc-btn-secondary:hover{
  border-color: #78a22f;
  color: #78a22f;
}

/* If your hero text is right-aligned */
#sc-hero .so-panel.widget:first-of-type{
  text-align: right;
}

#sc-hero .sc-hero-actions{
  justify-content: flex-end;
}

/* Mobile */
@media (max-width: 768px){
  #sc-hero .sc-hero-actions{
    justify-content: center;
  }
}

/* ========== BINW Outcome Report (modern + high-value) ========== */
:root{
  --binw-green:#78a22f;
  --binw-gray:#707372;
  --binw-ink:#343538;
  --binw-teal:#39736e;
  --binw-lime:#c5cf59;

  --binw-shadow: 0 26px 70px rgba(52,53,56,.16);
  --binw-shadow2: 0 12px 26px rgba(52,53,56,.10);
}

/* Section */
.binw-outcome{
  padding: clamp(34px, 4.2vw, 68px) 0;
  background: linear-gradient(180deg, rgba(52,53,56,.03), rgba(255,255,255,0));
}

.binw-outcome__inner{
  width: min(1160px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: clamp(26px, 4vw, 84px);
  align-items: center;
}

/* Copy */
.binw-eyebrow{
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .92rem;
  font-weight: 800;
  color: rgba(52,53,56,.55);
  margin: 0 0 10px;
}
.binw-outcome__title{
  margin: 0 0 10px;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.08;
  color: var(--binw-green);
}
.binw-outcome__sub{
  margin: 0 0 16px;
  color: rgba(52,53,56,.86);
  font-size: 1.1rem;
  line-height: 1.5;
  max-width: 58ch;
}

/* Proof list */
.binw-miniresults{
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: rgba(52,53,56,.78);
  font-weight: 700;
}
.binw-miniresults li{
  position: relative;
  padding-left: 18px;
}
.binw-miniresults li:before{
  content:"";
  position:absolute; left:0; top:.55em;
  width:8px; height:8px; border-radius:999px;
  background: var(--binw-green);
  box-shadow: 0 0 0 3px rgba(120,162,47,.16);
}

/* CTA */
.binw-outcome__cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.binw-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none !important;
  font-weight: 750;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.binw-btn--primary{
  background: var(--binw-green);
  color: #fff !important;
  box-shadow: 0 12px 24px rgba(120,162,47,.24);
}
.binw-btn--primary:hover{ transform: translateY(-2px); box-shadow: 0 18px 34px rgba(120,162,47,.30); }
.binw-btn--ghost{
  background: #fff;
  color: rgba(52,53,56,.92) !important;
  border: 1px solid rgba(52,53,56,.22);
}
.binw-btn--ghost:hover{ transform: translateY(-2px); box-shadow: var(--binw-shadow2); }

/* Visual container */
.binw-outcome__visual{ position: relative; }

/* HARD RESET: stop theme hover/active greens */
.binw-outcome .binw-reportnav button{
  appearance:none;
  -webkit-appearance:none;
  -webkit-tap-highlight-color: transparent;
  background-image:none !important;
}
.binw-outcome .binw-reportnav button:hover,
.binw-outcome .binw-reportnav button:active,
.binw-outcome .binw-reportnav button:focus,
.binw-outcome .binw-reportnav button:focus-visible{
  background-image:none !important;
  outline:none !important;
  box-shadow:none !important;
}

/* Stage */
.binw-reportstage{
  position: relative;
  height: clamp(420px, 38vw, 560px);
  border-radius: 24px;
  background:
    radial-gradient(900px 520px at 20% 15%, rgba(120,162,47,.08), rgba(255,255,255,0) 60%),
    radial-gradient(900px 520px at 80% 85%, rgba(57,115,110,.06), rgba(255,255,255,0) 62%),
    linear-gradient(180deg, rgba(52,53,56,.03), rgba(255,255,255,0));
  overflow: visible;
  padding: 22px;
}

/* Decorative stack */
.binw-reportstack-back .s{
  position:absolute;
  left:50%;
  top:50%;
  width: min(620px, 96%);
  height: clamp(340px, 30vw, 420px);
  border-radius: 20px;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(52,53,56,.10);
  transform: translate(-50%,-50%);
  pointer-events:none;
  box-shadow: 0 14px 30px rgba(52,53,56,.06);
}
.binw-reportstack-back .s1{ transform: translate(-52%,-52%) rotate(-7deg); opacity:.18; }
.binw-reportstack-back .s2{ transform: translate(-50%,-50%) rotate(-2deg); opacity:.14; }
.binw-reportstack-back .s3{ transform: translate(-48%,-48%) rotate(5deg);  opacity:.10; }

.binw-reportpages{ position: relative; height: 100%; }

/* Pages */
.binw-reportpage{
  position:absolute;
  left:50%;
  top:50%;
  width: min(620px, 96%);
  height: clamp(340px, 30vw, 420px);
  transform: translate(-50%,-50%);
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(52,53,56,.16);
  box-shadow: 0 18px 44px rgba(52,53,56,.14);
  padding: 18px 18px 16px;
  opacity: 0;
  pointer-events: none;
}
.binw-reportpage.is-active{
  opacity: 1;
  pointer-events: auto;
}

/* Page header */
.binw-reportpage__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.binw-top-left{ display:flex; align-items:center; gap: 10px; }

/* Chip + mini */
.binw-chip{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .92rem;
  background: rgba(120,162,47,.14);
  color: rgba(52,53,56,.86);
  border: 1px solid rgba(120,162,47,.20);
}
.binw-mini{
  font-size: .85rem;
  font-weight: 750;
  color: rgba(52,53,56,.55);
}

/* Body */
.binw-reportpage__body{
  height: calc(100% - 54px);
  display:flex;
  flex-direction: column;
}

/* value callout */
.binw-callout{
  margin-top: auto;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(120,162,47,.26);
  background: rgba(120,162,47,.10);
  color: rgba(52,53,56,.80);
  font-weight: 800;
}

/* =========================
   VALUE ELEMENTS
   ========================= */
.binw-insights{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 12px;
}
.binw-metric{
  border-radius: 14px;
  border: 1px solid rgba(52,53,56,.12);
  background: rgba(255,255,255,.96);
  padding: 10px 12px;
  box-shadow: 0 10px 22px rgba(52,53,56,.10);
}
.binw-metric .k{
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(52,53,56,.56);
  margin: 0 0 6px;
}
.binw-metric .v{
  font-size: 1.12rem;
  font-weight: 950;
  color: rgba(52,53,56,.90);
  line-height: 1.1;
}
.binw-metric .s{
  margin-top: 6px;
  font-size: .86rem;
  color: rgba(52,53,56,.70);
}

/* Bars + KPI tracks (page 1) */
.binw-viz-row{
  display:flex;
  gap: 14px;
  align-items: flex-end;
  margin-bottom: 10px;
}
.binw-bars{
  width: 42%;
  display:flex;
  gap: 10px;
  align-items:flex-end;
  height: 92px;
}
.binw-bars span{
  display:block;
  width: 18%;
  border-radius: 12px;
  background: rgba(120,162,47,.40);
}
.binw-bars span:nth-child(1){ height: 45%; background: rgba(52,53,56,.18); }
.binw-bars span:nth-child(2){ height: 78%; background: rgba(57,115,110,.30); }
.binw-bars span:nth-child(3){ height: 62%; background: rgba(120,162,47,.40); }
.binw-bars span:nth-child(4){ height: 90%; background: rgba(197,207,89,.40); }

.binw-kpis{
  flex: 1;
  display: grid;
  gap: 10px;
}
.binw-kpis .k b{
  display:block;
  font-size: .82rem;
  font-weight: 900;
  color: rgba(52,53,56,.62);
  margin-bottom: 6px;
}
.binw-kpis .k i{
  display:block;
  height: 10px;
  border-radius: 999px;
  background: rgba(52,53,56,.14);
  position: relative;
  overflow:hidden;
}
.binw-kpis .k i:after{
  content:"";
  position:absolute; left:0; top:0; bottom:0;
  width: 58%;
  border-radius: 999px;
  background: rgba(120,162,47,.40);
}

/* Lines */
.binw-lines i{
  display:block;
  height: 10px;
  border-radius: 999px;
  background: rgba(52,53,56,.14);
  margin: 10px 0;
}
.binw-lines i:nth-child(2){ width: 86%; }
.binw-lines i:nth-child(3){ width: 72%; }

/* Donut (page 2) */
.binw-donut{
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: conic-gradient(rgba(120,162,47,.95) 0 68%, rgba(52,53,56,.14) 68% 100%);
  position: relative;
  box-shadow: inset 0 0 0 12px rgba(255,255,255,.96);
  border: 1px solid rgba(52,53,56,.14);
}
.binw-donut:after{
  content:"ROI";
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 950;
  font-size: .86rem;
  color: rgba(52,53,56,.76);
}

/* Compare rows (page 2) */
.binw-compare{
  display:grid;
  gap: 10px;
  margin-top: 10px;
}
.binw-compare__row{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 850;
  color: rgba(52,53,56,.62);
}
.binw-compare__row span{ width: 80px; font-size: .86rem; }
.binw-compare__row i{
  flex:1;
  height: 10px;
  border-radius: 999px;
  background: rgba(52,53,56,.14);
  position: relative;
  overflow:hidden;
}
.binw-compare__row i:after{
  content:"";
  position:absolute; left:0; top:0; bottom:0;
  width: 62%;
  background: rgba(57,115,110,.30);
}
.binw-compare__row:nth-child(2) i:after{ width: 78%; background: rgba(120,162,47,.40); }

/* Badges (page 3) */
.binw-badges{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 10px;
}
.binw-badge{
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .82rem;
  background: rgba(52,53,56,.10);
  border: 1px solid rgba(52,53,56,.12);
  color: rgba(52,53,56,.72);
}
.binw-badge.good{
  background: rgba(120,162,47,.12);
  border-color: rgba(120,162,47,.22);
}
.binw-badge.warn{
  background: rgba(197,207,89,.20);
  border-color: rgba(197,207,89,.26);
}

/* Actions (page 4) */
.binw-actions{
  display:grid;
  gap: 10px;
  margin: 0 0 12px;
}
.binw-action{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(52,53,56,.12);
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 22px rgba(52,53,56,.08);
}
.binw-pill{
  font-weight: 950;
  font-size: .78rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(57,115,110,.12);
  color: rgba(52,53,56,.78);
  border: 1px solid rgba(57,115,110,.18);
}
.binw-action span:last-child{
  font-weight: 850;
  color: rgba(52,53,56,.72);
}

/* Roadmap (page 4) */
.binw-roadmap{
  position: relative;
  height: 54px;
  border-radius: 16px;
  background: rgba(52,53,56,.06);
  border: 1px solid rgba(52,53,56,.10);
  overflow:hidden;
}
.binw-roadmap__line{
  position:absolute;
  left: 14px;
  right: 14px;
  top: 50%;
  height: 3px;
  background: rgba(52,53,56,.16);
  transform: translateY(-50%);
}
.binw-roadmap em{
  position:absolute;
  top: 50%;
  width: 14px; height: 14px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: rgba(120,162,47,.92);
  box-shadow: 0 0 0 4px rgba(120,162,47,.14);
}
.binw-roadmap em:nth-child(2){ left: 18%; }
.binw-roadmap em:nth-child(3){ left: 44%; background: rgba(57,115,110,.50); box-shadow: 0 0 0 4px rgba(57,115,110,.14); }
.binw-roadmap em:nth-child(4){ left: 70%; background: rgba(197,207,89,.60); box-shadow: 0 0 0 4px rgba(197,207,89,.14); }
.binw-roadmap em:nth-child(5){ left: 88%; background: rgba(52,53,56,.26); box-shadow: 0 0 0 4px rgba(52,53,56,.10); }

/* =========================
   NEW: Inline illustrated details (Pages 1,2,4)
   ========================= */
.binw-inlinedetail{
  margin-top: 10px;
  padding: 10px 10px;
  border-radius: 16px;
  border: 1px solid rgba(52,53,56,.10);
  background: rgba(52,53,56,.03);
}
.binw-detailgrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.binw-detailcard{
  border-radius: 14px;
  border: 1px solid rgba(52,53,56,.10);
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 20px rgba(52,53,56,.08);
  padding: 10px 10px 8px;
  min-height: 66px;
  display:flex;
  flex-direction: column;
  gap: 8px;
}
.binw-miniicon{
  width: 34px; height: 34px;
  border-radius: 12px;
  background: rgba(120,162,47,.12);
  border: 1px solid rgba(120,162,47,.16);
  position: relative;
}

/* tiny icon variants (pure CSS) */
.mi-scope:after{
  content:"";
  position:absolute; inset:9px 10px;
  border-radius:7px;
  border:2px solid rgba(52,53,56,.28);
  border-top-color: rgba(120,162,47,.75);
}
.mi-spike:after{
  content:"";
  position:absolute; left:9px; top:18px; right:9px; height:2px;
  background: rgba(52,53,56,.20);
  transform: rotate(-12deg);
  box-shadow: 0 -6px 0 rgba(120,162,47,.55);
}
.mi-steps:after{
  content:"";
  position:absolute; left:11px; top:12px; width:12px; height:12px;
  border-radius:4px; border:2px solid rgba(52,53,56,.22);
  box-shadow: 10px 6px 0 -2px rgba(120,162,47,.55);
}
.mi-tradeoffs:after{
  content:"";
  position:absolute; left:9px; top:10px; right:9px; height:2px;
  background: rgba(52,53,56,.24);
}
.mi-tradeoffs:before{
  content:"";
  position:absolute; left:13px; top:14px; width:8px; height:8px;
  border-radius:999px; background: rgba(57,115,110,.35);
  box-shadow: 10px 8px 0 rgba(120,162,47,.45);
}
.mi-timeline:after{
  content:"";
  position:absolute; left:10px; right:10px; top:16px; height:2px;
  background: rgba(52,53,56,.22);
}
.mi-timeline:before{
  content:"";
  position:absolute; left:18px; top:12px; width:10px; height:10px;
  border-radius:999px; background: rgba(197,207,89,.55);
  box-shadow: 10px 0 0 rgba(120,162,47,.55);
}
.mi-compass:after{
  content:"";
  position:absolute; inset:10px;
  border-radius:999px; border:2px solid rgba(52,53,56,.22);
}
.mi-compass:before{
  content:"";
  position:absolute; left:16px; top:11px; width:2px; height:14px;
  background: rgba(120,162,47,.75);
  transform: rotate(18deg);
}
.mi-order:after{
  content:"";
  position:absolute; left:11px; top:12px; width:12px; height:2px;
  background: rgba(120,162,47,.75);
  box-shadow: 0 6px 0 rgba(57,115,110,.45), 0 12px 0 rgba(52,53,56,.18);
}
.mi-budget:after{
  content:"";
  position:absolute; left:11px; top:12px; width:14px; height:10px;
  border-radius:6px; background: rgba(52,53,56,.16);
  box-shadow: 0 10px 0 rgba(120,162,47,.45);
}
.mi-nextmove:after{
  content:"";
  position:absolute; left:12px; top:16px; width:12px; height:2px;
  background: rgba(52,53,56,.22);
}
.mi-nextmove:before{
  content:"";
  position:absolute; right:10px; top:13px; width:0; height:0;
  border-top:5px solid transparent;
  border-bottom:5px solid transparent;
  border-left:7px solid rgba(120,162,47,.75);
}

.binw-minibars{ display:flex; gap:6px; align-items:flex-end; height:18px; }
.binw-minibars span{ width: 18%; border-radius: 8px; background: rgba(120,162,47,.40); }
.binw-minibars span:nth-child(1){ height: 55%; background: rgba(52,53,56,.18); }
.binw-minibars span:nth-child(2){ height: 85%; background: rgba(57,115,110,.30); }
.binw-minibars span:nth-child(3){ height: 70%; background: rgba(120,162,47,.40); }

.binw-miniline{ height: 10px; border-radius: 999px; background: rgba(52,53,56,.14); }
.binw-miniline.short{ width: 70%; }

.binw-minichecks{ display:flex; flex-direction:column; gap:7px; }
.binw-minichecks span{ height: 10px; border-radius: 999px; background: rgba(120,162,47,.40); width: 92%; }
.binw-minichecks span:nth-child(2){ width: 78%; opacity:.9; }
.binw-minichecks span:nth-child(3){ width: 64%; opacity:.85; }

.binw-minibartrack{ height: 10px; border-radius: 999px; background: rgba(52,53,56,.14); overflow:hidden; }
.binw-minibartrack span{ display:block; height:100%; width: 62%; border-radius: 999px; background: rgba(57,115,110,.30); }

.binw-miniarrow{
  height: 10px;
  border-radius: 999px;
  background: rgba(52,53,56,.10);
  position: relative;
}
.binw-miniarrow:after{
  content:"";
  position:absolute; right: 6px; top: 50%;
  transform: translateY(-50%);
  width:0; height:0;
  border-top:6px solid transparent;
  border-bottom:6px solid transparent;
  border-left:8px solid rgba(120,162,47,.70);
}

/* =========================
   NEW: Page 3 Compliance Snapshot (upgraded)
   ========================= */
.binw-comp-snapshot{
  margin-top: 10px;
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.binw-comp-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.binw-comp-card{
  border-radius: 16px;
  border: 1px solid rgba(52,53,56,.10);
  background: rgba(255,255,255,.96);
  box-shadow: 0 12px 26px rgba(52,53,56,.10);
  padding: 12px 12px 10px;
  min-height: 110px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.mi-splitdoc:after{
  content:"";
  position:absolute;
  inset:10px 11px;
  border-radius:7px;
  border:2px solid rgba(52,53,56,.22);
  box-shadow: inset -10px 0 0 rgba(120,162,47,.18);
}
.mi-plain:after{
  content:"";
  position:absolute; left:10px; top:12px;
  width:18px; height:14px;
  border-radius:7px;
  background: rgba(52,53,56,.16);
  box-shadow: 10px 6px 0 rgba(120,162,47,.32);
}
.mi-prep:after{
  content:"";
  position:absolute; left:11px; top:10px;
  width:16px; height:18px;
  border-radius:5px;
  border:2px solid rgba(52,53,56,.20);
}
.mi-prep:before{
  content:"";
  position:absolute; left:16px; top:15px;
  width:10px; height:2px;
  background: rgba(120,162,47,.70);
  box-shadow: 0 6px 0 rgba(120,162,47,.55);
}

.binw-comp-columns{
  display:flex;
  gap: 10px;
  justify-content: space-between;
}
.binw-comp-columns .col{
  width:48%;
  display:flex;
  flex-direction: column;
  gap: 7px;
}
.binw-comp-columns .col span{
  height: 9px;
  border-radius: 999px;
  background: rgba(52,53,56,.14);
}
.binw-comp-columns .col.on span{ background: rgba(120,162,47,.45); }
.binw-comp-columns .col.off span{ background: rgba(52,53,56,.14); opacity:.9; }

.binw-comp-flow{ display:flex; align-items:center; gap:10px; }
.binw-comp-flow .chip{
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(52,53,56,.10);
  color: rgba(52,53,56,.72);
}
.binw-comp-flow .chip.green{
  background: rgba(120,162,47,.16);
  border: 1px solid rgba(120,162,47,.18);
  color: rgba(52,53,56,.78);
}
.binw-comp-flow .arr{ font-weight: 950; color: rgba(52,53,56,.42); }
.binw-comp-micro{
  height: 10px;
  border-radius: 999px;
  background: rgba(52,53,56,.12);
  width: 85%;
}

.binw-comp-checks{ display:flex; flex-direction: column; gap: 9px; }
.binw-comp-checks span{
  height: 10px;
  border-radius: 999px;
  background: rgba(120,162,47,.42);
  width: 92%;
}
.binw-comp-checks span:nth-child(2){ width: 76%; opacity:.9; }
.binw-comp-checks span:nth-child(3){ width: 64%; opacity:.85; }

.binw-comp-risk{
  border-radius: 16px;
  border: 1px solid rgba(52,53,56,.10);
  background: rgba(52,53,56,.03);
  padding: 12px;
}
.binw-comp-risk .top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.binw-comp-risk .lbl{
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(52,53,56,.55);
}
.binw-comp-risk .pill{
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 950;
  background: rgba(197,207,89,.22);
  border: 1px solid rgba(197,207,89,.26);
  color: rgba(52,53,56,.78);
}
.binw-comp-risk .bar{
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(to right,
    rgba(120,162,47,.50),
    rgba(197,207,89,.55),
    rgba(52,53,56,.22)
  );
}
.binw-comp-risk .bar .dot{
  position:absolute;
  top:50%;
  left:50%; /* Medium */
  transform: translate(-50%,-50%);
  width: 18px; height: 18px;
  border-radius: 999px;
  background:#fff;
  border: 4px solid rgba(197,207,89,.90);
  box-shadow: 0 8px 18px rgba(52,53,56,.18);
}
.binw-comp-risk .scale{
  display:flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: .8rem;
  font-weight: 850;
  color: rgba(52,53,56,.52);
}

/* NAV */
.binw-reportnav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
  margin-top: 16px;
}
.binw-navbtn{
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(52,53,56,.20) !important;
  background: #fff !important;
  color: rgba(52,53,56,.85);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--binw-shadow2);
  transition: transform .14s ease, box-shadow .14s ease;
}
.binw-navbtn:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(52,53,56,.12);
}
.binw-dots{ display:flex; gap: 10px; align-items:center; }
.binw-dot{
  width: 48px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(52,53,56,.22) !important;
  background: rgba(52,53,56,.10) !important;
  cursor:pointer;
}
.binw-dot.is-active{
  border-color: rgba(120,162,47,.38) !important;
  background: rgba(120,162,47,.60) !important;
  box-shadow: 0 0 0 4px rgba(120,162,47,.14);
}

/* Desktop widening + bigger report */
@media (min-width: 1100px){
  .binw-outcome__inner{
    width: min(1320px, 94%);
    gap: clamp(28px, 4.2vw, 96px);
    grid-template-columns: 1.05fr 1.45fr;
  }
  .binw-reportstack-back .s,
  .binw-reportpage{
    width: min(720px, 96%);
  }
}

/* Mobile */
@media (max-width: 920px){
  .binw-outcome__inner{ grid-template-columns: 1fr; }
  .binw-reportstage{ height: 520px; }
  .binw-reportpage{ width: 96%; }
  .binw-insights{ grid-template-columns: 1fr; }
  .binw-detailgrid{ grid-template-columns: 1fr; }
  .binw-comp-grid{ grid-template-columns: 1fr; }
}

/* ======================
   MEET ALLISON (Stitched) — FIXED
   Scoped to #meet-allison so it can't break other sections
====================== */

#meet-allison{
  /* slight tuck to visually connect to previous section */
  margin-top: -18px;
}

/* Section wrapper */
#meet-allison.binw-lead{
  padding: clamp(18px, 2.5vw, 44px) 0;

  /* shared “soft product” vibe so it flows with the report area */
  background:
    radial-gradient(900px 520px at 20% 15%, rgba(120,162,47,.06), rgba(255,255,255,0) 60%),
    radial-gradient(900px 520px at 80% 85%, rgba(57,115,110,.05), rgba(255,255,255,0) 62%),
    linear-gradient(180deg, rgba(52,53,56,.02), rgba(255,255,255,0));
}

#meet-allison .binw-lead__inner{
  width: min(1160px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: clamp(22px, 3.2vw, 64px);
  align-items: center;
}

/* IMAGE */
#meet-allison .binw-lead__media{
  position: relative;
  border-radius: 24px;

  /* safety: prevents giant "hero" behavior even if theme CSS is weird */
  max-width: 560px;
}

#meet-allison img.binw-lead__photo{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 26px 70px rgba(52,53,56,.16);
  border: 1px solid rgba(52,53,56,.12);

  /* extra safety */
  max-width: 100%;
  max-height: none;
  object-fit: cover;
  position: static;
}

/* offset “card” backplate */
#meet-allison .binw-lead__media:after{
  content:"";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border-radius: 24px;
  background:
    radial-gradient(900px 520px at 20% 15%, rgba(120,162,47,.10), transparent 60%),
    rgba(255,255,255,.6);
  border: 1px solid rgba(52,53,56,.08);
  z-index: -1;
}

/* TEXT */
#meet-allison .binw-lead__eyebrow{
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  font-size: .85rem;
  color: rgba(52,53,56,.55);
  margin: 0 0 8px;
}

/* the “stitch” line */
#meet-allison .binw-lead__bridge{
  margin: 0 0 14px;
  font-weight: 800;
  color: rgba(52,53,56,.74);
  padding-left: 18px;
  position: relative;
}

#meet-allison .binw-lead__bridge:before{
  content:"";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #78a22f;
  box-shadow: 0 0 0 3px rgba(120,162,47,.16);
}

#meet-allison .binw-lead__title{
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.1;
  color: #78a22f;
  margin: 0 0 6px;
}

#meet-allison .binw-lead__role{
  margin: 0 0 14px;
  font-weight: 800;
  color: rgba(52,53,56,.70);
}

#meet-allison .binw-lead__bio{
  margin: 0 0 18px;
  max-width: 64ch;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(52,53,56,.86);
}

/* quote */
#meet-allison .binw-lead__quote{
  margin: 0 0 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(120,162,47,.08);
  border: 1px solid rgba(120,162,47,.25);
}

#meet-allison .binw-lead__quote blockquote{
  margin: 0;
  font-weight: 900;
  font-size: 1.08rem;
  line-height: 1.35;
  color: rgba(52,53,56,.88);
}

/* HIGH-IMPACT FINAL CTA PANEL */
#meet-allison .binw-lead__next{
  margin-top: 10px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(52,53,56,.10);
  box-shadow: 0 18px 42px rgba(52,53,56,.10);
}

#meet-allison .binw-lead__nextcopy{
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
  color: rgba(52,53,56,.86);
}

#meet-allison .binw-lead__nextcopy strong{
  font-weight: 900;
  font-size: 1.02rem;
}

#meet-allison .binw-lead__nextcopy span{
  color: rgba(52,53,56,.72);
}

#meet-allison .binw-lead__cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

#meet-allison .binw-lead__micro{
  margin: 12px 0 0;
  color: rgba(52,53,56,.62);
  font-weight: 700;
  font-size: .95rem;
}

#meet-allison .binw-lead__micro a{
  color: rgba(52,53,56,.78);
  text-decoration: underline;
  text-underline-offset: 3px;
}
/* Give Allison section more bottom space */
#meet-allison { 
  padding-bottom: clamp(60px, 7vw, 100px);
}

/* Mobile */
@media (max-width: 920px){
  #meet-allison{ margin-top: 0; }
  #meet-allison .binw-lead__inner{ grid-template-columns: 1fr; }
  #meet-allison .binw-lead__media{ max-width: 100%; }
  #meet-allison .binw-lead__media:after{ inset: 12px; }
}

/* ===== Quiet Credibility Block: Contained Card ===== */

.binw-credibility{
  padding: clamp(36px, 4vw, 56px) 0;
  background: transparent; /* remove the big wash */
}

/* Remove yellow tint + make it feel cleaner */
.binw-credibility__inner{
  width: min(980px, 92%);
  margin: 0 auto;
  text-align: left;

  background: #ffffff; /* clean white */
  border: 1px solid rgba(52,53,56,0.08);
  border-radius: 18px;
  padding: clamp(28px, 3.5vw, 40px);
  box-shadow: 0 20px 60px rgba(52,53,56,.06);
}
.binw-credibility__eyebrow{
  font-size: 0.85rem;   /* bigger */
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--binw-gray, #707372);
  margin-bottom: 10px;
}

.binw-credibility__headline{
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--binw-green, #78a22f);
}

.binw-credibility__list{
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  max-width: 840px; /* keeps columns from drifting */
}

.binw-credibility__list li{
  position: relative;
  padding-left: 28px;
  font-size: 0.98rem;
  line-height: 1.35;
  color: var(--binw-ink, #343538);
}

/* Use a “check” feel without looking like a checklist */
.binw-credibility__list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(120,162,47,0.14);
  border: 1px solid rgba(120,162,47,0.35);
}

.binw-credibility__list li::after{
  content: "";
  position: absolute;
  left: 6px;
  top: 0.68em;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--binw-green, #78a22f);
  border-bottom: 2px solid var(--binw-green, #78a22f);
  transform: rotate(-45deg);
}

.binw-credibility__note{
  margin: 0;
  font-size: 0.95rem;
  color: var(--binw-gray, #707372);
  max-width: 760px;
}

/* Mobile */
@media (max-width: 760px){
  .binw-credibility__list{ grid-template-columns: 1fr; }
}
/* Pull the credibility block up toward the section above */
.binw-credibility{
  padding-top: clamp(18px, 2.2vw, 28px) !important;
  margin-top: clamp(-36px, -3vw, -18px) !important;
}

/* Soft fade before footer */
.site-footer{
  position: relative;
}

.site-footer::before{
  content:"";
  position:absolute;
  top:-60px;
  left:0;
  right:0;
  height:60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #f3f3f3);
}

/* Mobile Fixes */
/* =========================================
   MOBILE OVERRIDES — Sustainability Page
   Paste at VERY BOTTOM of Additional CSS
========================================= */
@media (max-width: 768px){

  /* ----- HERO: stop mid-word breaks + widen the overlay card ----- */
  #sc-hero .so-panel.widget:first-of-type{
    max-width: none !important;
    margin-left: 14px !important;
    margin-right: 14px !important;
    padding: 20px 18px !important;
    text-align: left !important; /* key: your desktop is right-aligned */
  }

  #sc-hero h1{
    font-size: clamp(30px, 8.5vw, 44px) !important;
    line-height: 1.08 !important;

    /* prevent the “Operati / ng” type splits */
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  #sc-hero .sc-hero-actions{
    justify-content: flex-start !important;
  }

  /* ----- OUTCOME SECTION spacing (reduces big blank band) ----- */
  .binw-outcome{
    padding: 34px 0 !important;
  }

  /* ----- REPORT VISUAL: keep only active page + avoid overlap artifacts ----- */
  .binw-reportstage{
    height: auto !important;          /* stop forcing tall canvas */
    padding: 16px !important;
  }

  .binw-reportpages{
    height: auto !important;
  }

  /* Hide non-active pages completely so they don't "ghost" in the stack */
  .binw-reportpage{
    display: none !important;
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    height: auto !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    margin: 0 auto !important;
  }
  .binw-reportpage.is-active{
    display: block !important;
  }

  /* Navigation: optional (I’d hide it on mobile—cleaner) */
  .binw-reportnav{
    display: none !important;
  }

  /* ----- CREDIBILITY: stop it from feeling like a huge separate section ----- */
  .binw-credibility{
    margin-top: -12px !important;  /* smaller tuck on mobile */
    padding: 18px 0 28px !important;
  }

  .binw-credibility__inner{
    padding: 18px !important;
  }

  .binw-credibility__list{
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

}
/* =========================================================
   Sustainability bullet/checkmark layout fixes
   Keeps custom bullets from overlapping first letters
   ========================================================= */

/* Outcome mini results */
.binw-miniresults {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 18px !important;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.binw-miniresults li {
  list-style: none !important;
  display: grid;
  grid-template-columns: 12px 1fr;
  column-gap: 8px;
  align-items: start;
  padding-left: 0 !important;
  margin: 0 !important;
}

.binw-miniresults li::before {
  content: "" !important;
  position: static !important;
  display: block;
  width: 8px;
  height: 8px;
  margin-top: 0.55em;
  border-radius: 999px;
  background: var(--binw-green, #78a22f);
  box-shadow: 0 0 0 3px rgba(120,162,47,.16);
}


/* Credibility list */
.binw-credibility__list {
  list-style: none !important;
  padding: 0 !important;
}

.binw-credibility__list li {
  list-style: none !important;
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 10px;
  align-items: start;
  padding-left: 0 !important;
  margin: 0 !important;
}

.binw-credibility__list li::before {
  content: "" !important;
  position: static !important;
  display: block;
  width: 18px;
  height: 18px;
  margin-top: 0.2em;
  border-radius: 999px;
  background: rgba(120,162,47,0.14);
  border: 1px solid rgba(120,162,47,0.35);
  grid-column: 1;
  grid-row: 1;
}

.binw-credibility__list li::after {
  content: "" !important;
  position: static !important;
  display: block;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--binw-green, #78a22f);
  border-bottom: 2px solid var(--binw-green, #78a22f);
  transform: rotate(-45deg);
  grid-column: 1;
  grid-row: 1;
  margin-left: 6px;
  margin-top: 0.57em;
}


/* Question card detail list */
.scq-detail-list {
  list-style: none !important;
  padding: 0 !important;
}

.scq-detail-list li {
  list-style: none !important;
  display: grid;
  grid-template-columns: 12px 1fr;
  column-gap: 8px;
  align-items: start;
  padding-left: 0 !important;
  margin: 10px 0 !important;
}

.scq-detail-list li::before {
  content: "" !important;
  position: static !important;
  display: block;
  width: 8px;
  height: 8px;
  margin-top: 0.65em;
  border-radius: 999px;
  background: rgba(120,162,47,.65);
}