/* =============================================================
   Site Hub — Custom Elementor Widgets  |  v1.6
   Pinned Services Slider
   Layout: 70% main (slides) / 30% side (scroll cue)
   ============================================================= */

/* ── Shared ──────────────────────────────────────────────────── */
.sh-psw .acc {
  color: #99b640;
}

/* ── Section shell ───────────────────────────────────────────── */
.sh-psw {
  position: relative;
  background: #fff;
  font-family: 'Roboto', sans-serif;
  /* height set inline: n × height-per-slide */
}

/* ── Sticky viewport: 70 / 30 split ─────────────────────────── */
.sh-psw__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 7fr 3fr;   /* 70% main / 30% side */
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

/* ── Main column (70%) ───────────────────────────────────────── */
.sh-psw__main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 60px 80px 60px 0;
}

/* Eyebrow */
.sh-psw__ey {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #99b640;
}
.sh-psw__ey::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: currentColor;
  flex-shrink: 0;
}

/* ── Slides container ─────────────────────────────────────────
   CSS grid overlap: all .sh-psw__sv share the same grid cell
   so the container auto-sizes to the tallest slide.
   ─────────────────────────────────────────────────────────── */
.sh-psw__slides {
  display: grid;
}

/* ── Individual slide ────────────────────────────────────────── */
.sh-psw__sv {
  grid-area: 1 / 1;          /* all in the same cell → overlap  */
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .45s ease, transform .45s ease;
  pointer-events: none;
  /* prevent hidden slides from stealing layout height */
  visibility: hidden;
}
.sh-psw__sv.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  visibility: visible;
}

/* Tag row: "01  SMARTSITES" */
.sh-psw__sv-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .22em;
  color: #99b640;
  text-transform: uppercase;
}
.sh-psw__sv-n {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #0e0f10;
  letter-spacing: 0;
}

/* Big heading */
.sh-psw__sv-line {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -.03em;
  margin: 0;
  color: #0e0f10;
}

/* Description */
.sh-psw__sv-blurb {
  font-size: 16px;
  line-height: 1.65;
  color: #3d4245;
  max-width: 52ch;
  margin: 0;
}

/* CTA button */
.sh-psw__sv-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px 16px 26px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  background: #0e0f10;
  color: #fff;
  transition: background .25s ease, color .25s ease, transform .2s ease,
              box-shadow .25s ease;
  box-shadow: 0 4px 16px rgba(14, 15, 16, .15);
}
.sh-psw__sv-cta .sh-arr {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #99b640;
  color: #0e0f10;
  flex-shrink: 0;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.sh-psw__sv-cta:hover {
  background: #99b640;
  color: #0e0f10;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -6px rgba(153, 182, 64, .5);
}
.sh-psw__sv-cta:hover .sh-arr {
  background: #0e0f10;
  color: #99b640;
  transform: translateX(3px);
}

/* Counter */
.sh-psw__ctr {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: #3d4245;
}
.sh-psw__ctr em {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  color: #0e0f10;
}

/* ── Side column (30%): scroll cue ──────────────────────────── */
.sh-psw__side {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-bottom: 60px;
}

.sh-psw__scrollnext {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.sh-psw__scrollnext-label {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #5c6064;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ── Elementor editor: stack slides vertically ───────────────── */
.elementor-editor-active .sh-psw,
.elementor-editor-active .sh-psw__sticky {
  height: auto !important;
  min-height: 0;
}
.elementor-editor-active .sh-psw__sticky {
  position: relative;
  overflow: visible;
}
.elementor-editor-active .sh-psw__slides {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.elementor-editor-active .sh-psw__sv {
  grid-area: unset;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  visibility: visible;
  padding-bottom: 40px;
  border-bottom: 1px dashed rgba(153, 182, 64, .3);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .sh-psw__main {
    padding-right: 40px;
  }
}

@media (max-width: 900px) {
  /* Keep sticky + crossfade on mobile — just collapse to single column */
  .sh-psw__sticky {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .sh-psw__main {
    padding: 40px 0;
  }
  .sh-psw__side {
    display: none;
  }
  /* Tighten font sizes a bit on very small screens */
  .sh-psw__sv-line {
    font-size: clamp(28px, 8vw, 48px);
  }
  .sh-psw__sv-blurb {
    font-size: 15px;
  }
}

/* =============================================================
   Site Hub — Ticker / Marquee  |  v1.1
   Seamless right-to-left scroll.

   Structure:
     .sh-ticker                   ← overflow: hidden wrapper
       .sh-ticker__inner          ← full-width flex row, animated
         .sh-ticker__pass × 2    ← two identical copies
           .sh-ticker__unit × n  ← [padding-left][text][dot]

   Seam fix: every .sh-ticker__unit carries its own padding-left
   equal to the gap. The gap between the last item of pass-1 and
   the first item of pass-2 is therefore identical to the gap
   between any two items inside a pass → zero visible seam.

   Animation: translateX(0) → translateX(-50%).
   At -50% the second pass is pixel-identical to where pass-1
   started, so the loop is invisible.
   ============================================================= */

/* ── Outer shell ─────────────────────────────────────────────── */
.sh-ticker {
  overflow: hidden;
  background: var(--sh-tk-bg, #f3f3f3);
  padding: var(--sh-tk-py, 28px) 0;
}

/* ── Scrolling row ───────────────────────────────────────────── */
.sh-ticker__inner {
  display: flex;
  width: max-content;          /* shrink-wraps exactly 2 passes */
  animation: sh-tk-scroll var(--sh-tk-dur, 38s) linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Pause on hover (opt-in via .sh-ticker--pause) */
.sh-ticker--pause:hover .sh-ticker__inner {
  animation-play-state: paused;
}

/* ── One full pass ───────────────────────────────────────────── */
.sh-ticker__pass {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* ── Item unit: text + dot in one flex cell ──────────────────── */
.sh-ticker__unit {
  display: inline-flex;
  align-items: center;
  gap: var(--sh-tk-gap, 60px);
  /* Leading gap — this creates the space after the previous dot */
  padding-left: var(--sh-tk-gap, 60px);
  white-space: nowrap;
}

/* ── Text span ───────────────────────────────────────────────── */
.sh-ticker__text {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 76px);
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--sh-tk-tc, #3e4245);
  line-height: 1;
}

/* ── Animated lime → teal gradient on accent items ───────────── */
.sh-ticker__text--grad {
  background: linear-gradient(
    90deg,
    #9db253  0%,
    #51b3af 25%,
    #9db253 50%,
    #51b3af 75%,
    #9db253 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: sh-tk-gradient 6s linear infinite;
}

/* ── SVG dot separator ───────────────────────────────────────── */
.sh-ticker__dot {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--sh-tk-dc, #9db253);
}

/* ── Keyframes ───────────────────────────────────────────────── */
@keyframes sh-tk-scroll {
  to { transform: translateX(-50%); }
}

@keyframes sh-tk-gradient {
  0%   { background-position:   0% 50%; }
  100% { background-position: 300% 50%; }
}

/* ── Elementor editor: freeze scroll so items are readable ───── */
.elementor-editor-active .sh-ticker__inner {
  animation-play-state: paused;
}

/* =============================================================
   Site Hub — Selected Work  |  v1.0
   Filterable case-study grid + slide-up modal
   ============================================================= */

/* ── Section shell ───────────────────────────────────────────── */
.sh-sw {
  padding: 120px 40px;
  font-family: 'Roboto', sans-serif;
}
.sh-sw__inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* ── Section header ──────────────────────────────────────────── */
.sh-sw__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}
.sh-sw__eyebrow {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--sh-sw-acc, #99b640);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 8px;
}
.sh-sw__title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -2px;
  color: #0e0f10;
  margin: 0;
}
.sh-sw__title .acc {
  color: var(--sh-sw-acc, #99b640);
}
.sh-sw__intro p {
  font-size: 16px;
  line-height: 1.6;
  color: #3d4245;
  margin: 0 0 24px;
}

/* ── Filter buttons ──────────────────────────────────────────── */
.sh-sw__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sh-sw__filter button {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(61, 66, 69, .2);
  background: transparent;
  color: #3d4245;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.sh-sw__filter button.is-active,
.sh-sw__filter button:hover {
  background: #0e0f10;
  color: #fff;
  border-color: #0e0f10;
}

/* ── 12-col grid ─────────────────────────────────────────────── */
.sh-sw__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  align-items: start;
}
.sh-sw__case--lg { grid-column: span 7; }
.sh-sw__case--md { grid-column: span 5; }
.sh-sw__case--sm { grid-column: span 4; }

/* ── Case card ───────────────────────────────────────────────── */
.sh-sw__case {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  height: 360px;
  transition: transform .3s ease, box-shadow .3s ease;
  outline: none;
}
.sh-sw__case:hover,
.sh-sw__case:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(14, 15, 16, .22);
}
.sh-sw__case.is-hidden { display: none; }

/* Hue gradient base */
.sh-sw__hue { position: absolute; inset: 0; }
.hue-lime   { background: linear-gradient(135deg, #4a7c00, #99b640); }
.hue-teal   { background: linear-gradient(135deg, #005f5c, #08b5af); }
.hue-pink   { background: linear-gradient(135deg, #8b0031, #ee2960); }
.hue-yellow { background: linear-gradient(135deg, #8b7200, #dbc126); }
.hue-slate  { background: linear-gradient(135deg, #1a1c1e, #3d4245); }

/* Optional background image — layered over gradient */
.sh-sw__bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .55;
  mix-blend-mode: luminosity;
}

/* SVG art layer */
.sh-sw__art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}

/* Overlay: badge top-left, name + metric bottom-left */
.sh-sw__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, .55) 100%);
}
.sh-sw__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.sh-sw__badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  backdrop-filter: blur(4px);
}
.sh-sw__arrow {
  color: #fff;
  font-size: 18px;
  opacity: .8;
  transition: transform .25s ease, opacity .25s ease;
}
.sh-sw__case:hover .sh-sw__arrow {
  transform: translate(3px, -3px);
  opacity: 1;
}
.sh-sw__name {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 2.5vw, 34px);
  letter-spacing: -.5px;
  color: #fff;
  margin: 0 0 6px;
}
.sh-sw__metric {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.sh-sw__metric-n {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 3vw, 40px);
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}
.sh-sw__metric-l {
  font-size: 12px;
  color: rgba(255, 255, 255, .75);
}

/* ── Modal ───────────────────────────────────────────────────── */
.sh-sw-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(14, 15, 16, .88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.sh-sw-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.sh-sw-modal__inner {
  background: #fff;
  border-radius: 24px;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px) scale(.97);
  transition: transform .35s ease;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .4);
}
.sh-sw-modal.is-open .sh-sw-modal__inner {
  transform: none;
}
.sh-sw-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, .08);
  color: #0e0f10;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background .2s;
}
.sh-sw-modal__close:hover { background: rgba(0, 0, 0, .15); }

/* Modal hero strip (uses hue class) */
.sh-sw-modal__hero {
  padding: 40px 36px 28px;
  border-radius: 24px 24px 0 0;
}
.sh-sw-modal__hero .sh-sw__badge {
  display: inline-block;
  margin-bottom: 12px;
}
.sh-sw-modal__hero h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: #fff;
  letter-spacing: -1px;
  margin: 0;
}

/* Modal body */
.sh-sw-modal__body {
  padding: 28px 36px 36px;
}
.sh-sw-modal__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.sh-sw-modal__metrics dt {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: var(--sh-sw-acc, #99b640);
  letter-spacing: -1px;
  line-height: 1;
}
.sh-sw-modal__metrics dd {
  font-size: 13px;
  color: #3d4245;
  margin: 4px 0 0;
}
.sh-sw-modal__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.sh-sw-modal__cols h4 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #0e0f10;
  margin: 0 0 10px;
}
.sh-sw-modal__cols p {
  font-size: 14px;
  line-height: 1.6;
  color: #3d4245;
  margin: 0;
}
.sh-sw-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.sh-sw-modal__tags span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f0f1eb;
  color: #3d4245;
}
.sh-sw-modal__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: #0e0f10;
  color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: background .2s, transform .2s;
}
.sh-sw-modal__cta:hover {
  background: var(--sh-sw-acc, #99b640);
  color: #0e0f10;
  transform: translateY(-2px);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  .sh-sw { padding: 80px 24px; }
  .sh-sw__head { grid-template-columns: 1fr; gap: 24px; }
  .sh-sw__grid { grid-template-columns: 1fr; }
  .sh-sw__case--lg,
  .sh-sw__case--md,
  .sh-sw__case--sm { grid-column: span 1; }
  .sh-sw-modal__metrics { grid-template-columns: repeat(3, 1fr); }
  .sh-sw-modal__cols { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .sh-sw-modal__metrics { grid-template-columns: 1fr 1fr; }
  .sh-sw-modal__body { padding: 20px 20px 28px; }
  .sh-sw-modal__hero { padding: 28px 20px 20px; }
}

/* =============================================================
   Site Hub — Why Site Hub  |  v1.1
   Sticky two-column layout.
   Left:  heading + counter — stays sticky the full scroll distance.
   Right: reason steps — inactive dimmed/shifted, active lifted in.

   Trigger logic (JS): fires when a step's top crosses 40% from the
   top of the viewport. No synthetic section height needed.
   --sh-why-step-pad controls per-step vertical padding (default 15vh).
   ============================================================= */

/* ── Section shell ───────────────────────────────────────────── */
.sh-why {
  position: relative;
  font-family: 'Roboto', sans-serif;
  /* height is content-driven — no inline height override */
}

/* ── Two-column grid ─────────────────────────────────────────── */
.sh-why__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

/* ── Sticky left column ──────────────────────────────────────── */
.sh-why__sticky {
  position: sticky;
  top: 80px;            /* sits 80px from viewport top when pinned */
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* align-self keeps it at the top of the grid cell */
  align-self: start;
}

/* Eyebrow */
.sh-why__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--sh-why-acc, #7f9834);
  text-transform: uppercase;
}

/* Big heading — h3 tag, h2-scale size */
.sh-why__heading {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -1.5px;
  color: #0e0f10;
  margin: 0;
}
.sh-why__heading .acc {
  color: var(--sh-why-acc, #99b640);
}

/* Counter */
.sh-why__ctr {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  color: #3d4245;
  margin-top: 12px;
}
.sh-why__ctr em {
  font-style: italic;
  color: #0e0f10;
  font-size: 28px;
  font-weight: 700;
}

/* ── Right column: steps list ────────────────────────────────── */
.sh-why__steps {
  padding: 80px 0;      /* matches left column top offset */
  display: flex;
  flex-direction: column;
}

/* ── Individual step ─────────────────────────────────────────── */
.sh-why__step {
  /* Vertical padding from slider — gives sticky column scroll time */
  padding: var(--sh-why-step-pad, 15vh) 0;
  border-top: 1px solid rgba(61, 66, 69, .12);
  opacity: .4;
  transform: translateY(10px);
  transition: opacity .45s ease, transform .45s ease;
}
.sh-why__step.is-active {
  opacity: 1;
  transform: none;
}
/* First step: no top border */
.sh-why__step:first-child {
  border-top: none;
}

/* Step number row */
.sh-why__step-n {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: #6a6f72;
  text-transform: uppercase;
  margin-bottom: 20px;
  transition: color .4s ease;
}
.sh-why__step.is-active .sh-why__step-n {
  color: var(--sh-why-acc, #7f9834);
}

/* Green dot pin */
.sh-why__pin {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sh-why-acc, #99b640);
  display: inline-block;
  flex-shrink: 0;
}

/* Step title */
.sh-why__step-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -.5px;
  color: #0e0f10;
  margin: 0 0 16px;
}

/* Step body */
.sh-why__step-body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #3d4245;
  margin: 0 0 24px;
  max-width: 52ch;
}
.sh-why__step-body p          { margin: 0 0 12px; }
.sh-why__step-body p:last-child { margin-bottom: 0; }
.sh-why__step-body strong     { color: #0e0f10; }

/* ── Chip pills ──────────────────────────────────────────────── */
.sh-why__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sh-why__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f1f2ee;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  color: #0e0f10;
  border: 1px solid rgba(61, 66, 69, .12);
}
.sh-why__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.sh-why__dot--lime  { background: #99b640; }
.sh-why__dot--teal  { background: #08b5af; }
.sh-why__dot--pink  { background: #ee2960; }

/* ── Elementor editor: unstickyify, show all steps ───────────── */
.elementor-editor-active .sh-why__sticky {
  position: relative;
  top: auto;
}
.elementor-editor-active .sh-why__step {
  opacity: 1 !important;
  transform: none !important;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .sh-why__inner { gap: 48px; }
}

@media (max-width: 900px) {
  .sh-why__inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 24px;
  }
  .sh-why__sticky {
    position: relative;
    top: auto;
    padding: 48px 0 24px;
  }
  .sh-why__steps {
    padding: 0 0 48px;
  }
  /* All steps visible at full opacity on mobile */
  .sh-why__step {
    padding: 32px 0;
    opacity: 1 !important;
    transform: none !important;
  }
  .sh-why__ctr {
    display: none; /* counter irrelevant when all steps show */
  }
}

/* =============================================================
   CLIENTS WALL  v1.0
   Multi-row client name ticker — alternating scroll directions
   ============================================================= */

/* ── Section shell ───────────────────────────────────────────── */
.sh-cl {
  padding: 40px 0;
  overflow: hidden;
  font-family: 'Roboto', sans-serif;
}

/* ── Rows container ──────────────────────────────────────────── */
.sh-cl__rows {
  display: flex;
  flex-direction: column;
  gap: var(--sh-cl-rgap, 16px);
}

/* ── Single scrolling row ────────────────────────────────────── */
.sh-cl__row {
  display: flex;            /* inline row of two passes side-by-side */
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  animation: sh-cl-scroll linear infinite;
  /* animation-duration & animation-direction set inline per row */
}

/* ── One full pass (duplicated for seamless loop) ────────────── */
.sh-cl__pass {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* ── Single client name item ─────────────────────────────────── */
.sh-cl__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-left: var(--sh-cl-gap, 60px);  /* leading gap before each item */
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 50px);
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--sh-cl-tc, #b8bdb8);
  white-space: nowrap;
  cursor: default;
  transition: color .2s ease;
}

.sh-cl__item:hover {
  color: var(--sh-cl-thc, #3d4245);
}

/* ── Square mark prefix ──────────────────────────────────────── */
.sh-cl__mark {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: var(--sh-cl-mc, #d4d6cf);
  flex-shrink: 0;
  transition: background .2s ease;
}

.sh-cl__item:hover .sh-cl__mark {
  background: var(--sh-cl-mhc, #99b640);
}

/* ── Scroll keyframe ─────────────────────────────────────────── */
@keyframes sh-cl-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Pause on hover (whole section) ─────────────────────────── */
.sh-cl:hover .sh-cl__row {
  animation-play-state: paused;
}

/* ── Elementor editor: freeze animation ─────────────────────── */
.elementor-editor-active .sh-cl__row {
  animation-play-state: paused;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .sh-cl {
    padding: 28px 0;
  }
}

/* =============================================================
   WIREFRAME → WEBSITE STAGE  v1.0
   Scroll-sticky laptop animation widget
   ============================================================= */

/* ── Outer scroll container ──────────────────────────────────── */
.sh-stage__outer {
  position: relative;
  /* height set inline per widget instance (e.g. 360vh) */
}

/* ── Sticky viewport panel ───────────────────────────────────── */
.sh-stage__panel {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 10;
  pointer-events: none;
  perspective: 1200px;
  /* CSS var defaults — JS overrides these on scroll */
  --p: 0; --p-flatten: 0; --p-fade: 0; --p-zoom: 0;
  --p-fill: 0; --p-results: 0; --p-bg: 0; --p-base: 0; --p-cap: 1;
}

/* ── Background layers ───────────────────────────────────────── */
.sh-stage__bg {
  position: absolute; inset: 0; z-index: 0; background: #fff;
}
.sh-stage__bg::before {
  content: ""; position: absolute; inset: 0;
  background: #25282a; opacity: var(--p-bg); pointer-events: none;
}
.sh-stage__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 400px at 80% 0%, rgba(154,181,63,.18), transparent 60%),
    radial-gradient(ellipse 600px 400px at 10% 100%, rgba(8,181,175,.14), transparent 60%);
  opacity: var(--p-bg); pointer-events: none;
}

/* ── Laptop assembly ─────────────────────────────────────────── */
.sh-stage__laptop {
  position: absolute; left: 50%;
  top: calc(68% - 22% * var(--p-zoom));
  width: calc(72vw + (100vw - 72vw) * var(--p-zoom));
  --rot:  calc(50deg * (1 - var(--p-flatten)));
  --lift: calc(-50% + 2vh * (1 - var(--p-flatten)));
  transform: translate(-50%, var(--lift)) rotateX(var(--rot));
  transform-style: preserve-3d;
  transform-origin: 50% 60%;
  will-change: transform, width;
  z-index: 2;
}
.sh-stage__lid {
  position: relative;
  border-radius: calc(18px * (1 - var(--p-fill)));
  background: #0a0a0a;
  padding: calc(12px * (1 - var(--p-fill)));
  box-shadow:
    0 50px 80px rgba(0,0,0,calc(.45*(1 - var(--p-fill)))),
    0 6px 0 #1a1c1d inset;
  transform-style: preserve-3d;
}
.sh-stage__lid::before {
  content: ""; position: absolute; top: 4px; left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 5px; background: #1a1c1d;
  border-radius: 0 0 4px 4px;
  opacity: calc(1 - var(--p-fill));
}
.sh-stage__screen {
  aspect-ratio: calc(16 / (10 - var(--p-fill) * 3));
  border-radius: calc(8px * (1 - var(--p-fill)));
  background: #fff; overflow: hidden; position: relative;
}
.sh-stage__layer { position: absolute; inset: 0; overflow: hidden; }
.sh-stage__layer--wire { opacity: calc(1 - var(--p-fade)); }
.sh-stage__layer--site { opacity: var(--p-fade); }

.sh-stage__hinge {
  position: absolute; left: 6%; right: 6%; bottom: -8px; height: 8px;
  background: linear-gradient(180deg, #2a2c2e, #0a0a0a);
  border-radius: 0 0 4px 4px; transform: translateZ(-1px);
  opacity: calc(1 - var(--p-base));
}
.sh-stage__base {
  position: absolute; left: 0; right: 0; top: 100%;
  height: 22px; margin-top: 8px;
  background: linear-gradient(180deg, #d7dbda, #aab0af);
  border-radius: 4px 4px 16px 16px;
  transform-origin: 50% 0%; transform: rotateX(-92deg);
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
  opacity: calc(1 - var(--p-base));
}
.sh-stage__keyboard {
  position: absolute; inset: 4px 18% 4px 18%;
  background:
    repeating-linear-gradient(90deg, #8b9090 0 6%, transparent 6% 8%),
    linear-gradient(180deg, #c5c9c8, #9ea3a2);
  background-size: 100% 4px, 100% 100%;
  background-repeat: repeat-y, no-repeat;
  border-radius: 2px; opacity: .6;
}

/* ── Results slide-in panel ──────────────────────────────────── */
.sh-stage__results {
  position: absolute; right: 4vw; top: 50%; z-index: 5;
  width: min(340px, 80vw);
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-radius: 16px; padding: 20px 22px;
  box-shadow: 0 30px 60px rgba(0,0,0,.32), 0 0 0 1px rgba(154,181,63,.4);
  font-family: 'Roboto Condensed', sans-serif; color: #3d4245;
  transform: translateY(-50%) translateX(calc(130% * (1 - var(--p-results))));
  opacity: var(--p-results);
  pointer-events: none;
}
.sh-stage__results-ey {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 11px; font-weight: 800; color: #7f9834;
  text-transform: uppercase; letter-spacing: .12em;
  display: block; margin-bottom: 6px;
}
.sh-stage__results h3 {
  font-size: 19px; font-weight: 900; letter-spacing: -.01em;
  margin: 6px 0 14px; line-height: 1.15; color: #0e0f10;
}
.sh-stage__results-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 12px;
}
.sh-stage__results-n {
  font-size: 26px; font-weight: 900;
  letter-spacing: -.02em; line-height: 1; color: #0e0f10;
}
.sh-stage__results-n small { font-size: 12px; font-weight: 700; color: #5c6064; }
.sh-stage__results-l { font-size: 11px; color: #5c6064; margin-top: 3px; line-height: 1.4; }

/* ── Scroll hint ─────────────────────────────────────────────── */
.sh-stage__hint {
  position: absolute; right: 24px; bottom: 56px;
  display: flex; align-items: center; gap: 8px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700; font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase; color: #5c6064;
  opacity: var(--p-cap); z-index: 3;
}

/* ── Wireframe skeleton ──────────────────────────────────────── */
.sh-wf { width:100%;height:100%;background:#fafbf7;padding:16px 22px;display:flex;flex-direction:column;gap:14px;box-sizing:border-box; }
.sh-wf__nav { display:flex;align-items:center;gap:16px;padding-bottom:10px;border-bottom:1.5px dashed #c5c9c8; }
.sh-wf__logo { width:72px;height:18px;background:#d7dbda;border-radius:3px;flex-shrink:0; }
.sh-wf__navlinks { display:flex;gap:12px;flex:1;justify-content:center; }
.sh-wf__navlinks span { width:48px;height:8px;background:#d7dbda;border-radius:2px;display:block; }
.sh-wf__navbtn { width:78px;height:26px;background:#fff;border:1.5px dashed #8c8f92;border-radius:999px;flex-shrink:0; }
.sh-wf__hero { display:grid;grid-template-columns:1.3fr 1fr;gap:18px;flex:1.1;min-height:0; }
.sh-wf__hero-l, .sh-wf__hero-r { display:flex;flex-direction:column;gap:8px; }
.sh-wf__line { background:#c5c9c8;border-radius:2px; }
.sh-wf__line--xl { height:22px;width:100%; }
.sh-wf__line--md { height:8px;width:100%;background:#d7dbda; }
.sh-wf__line--sm { height:6px;width:100%;background:#d7dbda; }
.sh-wf__btnrow { display:flex;gap:10px;margin-top:12px; }
.sh-wf__btn { width:110px;height:32px;background:#8c8f92;border-radius:999px;flex-shrink:0; }
.sh-wf__btn--ghost { background:#fff;border:1.5px dashed #8c8f92; }
.sh-wf__img { flex:1;background:repeating-linear-gradient(45deg,#d7dbda 0 8px,#c5c9c8 8px 16px);border-radius:6px;border:1.5px dashed #8c8f92;min-height:40px; }
.sh-wf__caption { display:flex;flex-direction:column;gap:4px; }
.sh-wf__caption span { height:6px;width:100%;background:#d7dbda;border-radius:2px;display:block; }
.sh-wf__grid { display:grid;grid-template-columns:repeat(4,1fr);gap:12px;flex:.9;min-height:0; }
.sh-wf__card { background:#fff;border:1.5px dashed #8c8f92;border-radius:6px;padding:12px;display:flex;flex-direction:column;gap:6px; }
.sh-wf__icon { width:28px;height:28px;background:#d7dbda;border-radius:4px; }

/* ── Live site mockup ────────────────────────────────────────── */
.sh-is { width:100%;height:100%;background:#fff;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;color:#0a0e2a;display:flex;flex-direction:column;overflow:hidden; }
.sh-is__notice { background:#0a0e2a;color:#cbd2e8;font-size:10px;padding:5px 16px;text-align:center;display:flex;align-items:center;justify-content:center;gap:12px;flex-shrink:0; }
.sh-is__notice b { color:#fff; }
.sh-is__notice-cta { color:#23d18b;font-weight:600;margin-left:8px; }
.sh-is__nav { display:flex;align-items:center;gap:16px;padding:8px 18px;background:#fff;border-bottom:1px solid #e5e8ed;flex-shrink:0; }
.sh-is__brand { display:flex;align-items:center;gap:6px;font-size:10px;font-weight:800;white-space:nowrap; }
.sh-is__brandmark { width:18px;height:18px;background:#23d18b;border-radius:4px;flex-shrink:0; }
.sh-is__navlinks { display:flex;gap:10px;flex:1;justify-content:center;font-size:10px;font-weight:600;color:#0a0e2a; }
.sh-is__navcta { font-size:10px;font-weight:700;background:#0a0e2a;color:#fff;padding:6px 12px;border-radius:999px;white-space:nowrap; }
.sh-is__hero { display:grid;grid-template-columns:1.3fr 1fr;gap:20px;padding:16px 24px;align-items:center;flex:1;min-height:0; }
.sh-is__hero-l { display:flex;flex-direction:column;gap:8px; }
.sh-is__kicker { font-size:9px;font-weight:800;letter-spacing:.16em;color:#23d18b; }
.sh-is__h1 { font-size:clamp(18px,2.2vw,28px);font-weight:500;line-height:1.1;margin:0;color:#0a0e2a; }
.sh-is__h1 em { font-style:italic;color:#23d18b; }
.sh-is__lede { font-size:10px;line-height:1.5;color:#5b6379;margin:0; }
.sh-is__ctas { display:flex;gap:8px;margin-top:4px; }
.sh-is__btn { font-size:10px;font-weight:700;padding:7px 12px;border-radius:999px;border:1px solid #0a0e2a;color:#0a0e2a;white-space:nowrap;cursor:default; }
.sh-is__btn--primary { background:#23d18b;border-color:#23d18b;color:#0a0e2a; }
.sh-is__badges { display:flex;gap:12px;margin-top:8px;padding-top:8px;border-top:1px solid #e5e8ed; }
.sh-is__badge-l { font-size:8px;letter-spacing:.1em;color:#5b6379;font-weight:700; }
.sh-is__badge-v { font-size:13px;font-weight:700;color:#0a0e2a;white-space:nowrap; }
.sh-is__hero-r { height:100%;display:flex;align-items:center;justify-content:center; }
.sh-is__heroimg { width:90%;aspect-ratio:1;max-height:90%;border-radius:8px;overflow:hidden;background:#0a0e2a; }
.sh-is__section { background:#f7f8fa;padding:10px 24px;border-top:1px solid #e5e8ed;flex-shrink:0; }
.sh-is__sectionkicker { font-size:8px;font-weight:800;letter-spacing:.2em;color:#23d18b;margin-bottom:6px; }
.sh-is__quotes { display:grid;grid-template-columns:1fr 1fr;gap:10px; }
.sh-is__quote { background:#fff;border-radius:6px;padding:8px 10px;border:1px solid #e5e8ed; }
.sh-is__quote p { font-size:9px;font-style:italic;line-height:1.4;margin:0 0 6px;color:#0a0e2a; }
.sh-is__quote-a { display:flex;align-items:center;gap:6px; }
.sh-is__avatar { width:20px;height:20px;border-radius:50%;background:#23d18b;color:#0a0e2a;font-size:8px;font-weight:800;display:flex;align-items:center;justify-content:center;flex-shrink:0; }
.sh-is__avatar--alt { background:#ffd166; }
.sh-is__quote-a b { display:block;font-size:9px;font-weight:700;color:#0a0e2a; }
.sh-is__quote-a span { font-size:8px;color:#5b6379; }

/* ── Elementor editor: unstickyify + show at mid-animation ───── */
.elementor-editor-active .sh-stage__outer,
.elementor-editor-preview .sh-stage__outer {
  height: auto !important;
}
.elementor-editor-active .sh-stage__panel,
.elementor-editor-preview .sh-stage__panel {
  position: relative;
  top: auto;
  height: 70vh;
  /* freeze at ~midpoint so the widget is visually meaningful */
  --p: 0.5; --p-flatten: 0.9; --p-fade: 0.5;
  --p-zoom: 0.44; --p-fill: 0; --p-results: 0;
  --p-bg: 0; --p-base: 0; --p-cap: 0;
}
/* always show results panel in editor for reference */
.elementor-editor-active .sh-stage__results--preview,
.elementor-editor-preview .sh-stage__results--preview {
  opacity: 1 !important;
  transform: translateY(-50%) !important;
}

/* =============================================================
   STAGE WIDGET — MOBILE PHONE MOCKUP
   Shown on ≤768 px; replaces the laptop with a phone frame
   ============================================================= */

/* ── Phone outer wrapper ─────────────────────────────────────── */
.sh-stage__phone {
  display: none; /* desktop: hidden — shown via media query below */
  position: absolute;
  left: 50%;
  top: calc(50% - 6% * var(--p-zoom));
  width: calc(52vw + 6vw * var(--p-zoom));
  max-width: 290px;
  transform: translate(-50%, -50%) rotateY(calc(28deg * (1 - var(--p-flatten))));
  transform-style: preserve-3d;
  will-change: transform;
  z-index: 2;
}

/* ── Physical phone body (bezel) ─────────────────────────────── */
.sh-stage__phone-body {
  position: relative;
  background: #0a0a0a;
  border-radius: 40px;
  aspect-ratio: 9/19.5;
  box-sizing: border-box;
  box-shadow:
    0 40px 80px rgba(0,0,0,.5),
    inset 0 0 0 1.5px #333;
}
/* Home-indicator bar */
.sh-stage__phone-body::after {
  content: "";
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 3px;
  background: #2a2c2e;
  border-radius: 999px;
}

/* ── Dynamic Island ──────────────────────────────────────────── */
.sh-stage__phone-island {
  position: absolute;
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 5.5%;
  background: #000;
  border-radius: 999px;
  z-index: 10;
}

/* ── Screen glass ────────────────────────────────────────────── */
.sh-stage__phone-screen {
  position: absolute;
  top: 10.5%;
  left: 4%;
  right: 4%;
  bottom: 5%;
  border-radius: min(28px, 8%);
  background: #fff;
  overflow: hidden;
}

/* =============================================================
   MOBILE WIREFRAME SKELETON  (sh-mwf)
   ============================================================= */
.sh-mwf {
  width: 100%; height: 100%;
  background: #fafbf7;
  display: flex; flex-direction: column;
  overflow: hidden; box-sizing: border-box;
}
.sh-mwf__sb {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 10px;
  font-size: 8px; font-weight: 700; color: #3d4245;
  font-family: -apple-system, sans-serif;
  flex-shrink: 0;
}
.sh-mwf__sb-r { display: flex; gap: 3px; align-items: center; }
.sh-mwf__sb-r span { display: block; width: 9px; height: 7px; background: #8c8f92; border-radius: 1px; }
.sh-mwf__nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 5px 10px 7px;
  border-bottom: 1.5px dashed #c5c9c8;
  flex-shrink: 0;
}
.sh-mwf__logo { width: 56px; height: 13px; background: #d7dbda; border-radius: 3px; }
.sh-mwf__burger { display: flex; flex-direction: column; gap: 3px; }
.sh-mwf__burger span { display: block; width: 16px; height: 2px; background: #8c8f92; border-radius: 2px; }
.sh-mwf__hero {
  padding: 10px 10px 0;
  display: flex; flex-direction: column; gap: 6px;
  flex: 1; overflow: hidden;
}
.sh-mwf__line { background: #c5c9c8; border-radius: 2px; flex-shrink: 0; }
.sh-mwf__line--xl { height: 16px; width: 100%; }
.sh-mwf__line--md { height: 7px; width: 100%; background: #d7dbda; }
.sh-mwf__line--sm { height: 6px; width: 100%; background: #d7dbda; }
.sh-mwf__line--xs { height: 5px; width: 100%; background: #e2e5e3; }
.sh-mwf__btnrow { margin-top: 4px; }
.sh-mwf__btn { width: 80px; height: 24px; background: #8c8f92; border-radius: 999px; }
.sh-mwf__img {
  flex: 1; min-height: 44px;
  background: repeating-linear-gradient(45deg, #d7dbda 0 6px, #c5c9c8 6px 12px);
  border-radius: 6px; border: 1.5px dashed #8c8f92;
  margin-top: 4px;
}
.sh-mwf__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 7px;
  padding: 7px 10px 10px;
  flex-shrink: 0;
}
.sh-mwf__card {
  background: #fff; border: 1.5px dashed #8c8f92;
  border-radius: 6px; padding: 7px;
  display: flex; flex-direction: column; gap: 5px;
}
.sh-mwf__icon { width: 18px; height: 18px; background: #d7dbda; border-radius: 3px; }

/* =============================================================
   MOBILE LIVE SITE MOCKUP  (sh-mis)
   ============================================================= */
.sh-mis {
  width: 100%; height: 100%;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #0a0e2a;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.sh-mis__sb {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 12px;
  font-size: 8px; font-weight: 700;
  flex-shrink: 0;
}
.sh-mis__sb-r { display: flex; gap: 3px; align-items: center; }
.sh-mis__sb-r span { display: block; width: 8px; height: 7px; background: #0a0e2a; border-radius: 1px; }
.sh-mis__nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 5px 12px 6px;
  border-bottom: 1px solid #e5e8ed;
  flex-shrink: 0;
}
.sh-mis__brand { display: flex; align-items: center; gap: 5px; font-size: 9px; font-weight: 800; }
.sh-mis__brandmark { width: 16px; height: 16px; background: #23d18b; border-radius: 3px; flex-shrink: 0; }
.sh-mis__burger { display: flex; flex-direction: column; gap: 3px; }
.sh-mis__burger span { display: block; width: 15px; height: 1.5px; background: #0a0e2a; border-radius: 2px; }
.sh-mis__hero {
  padding: 10px 12px 6px;
  display: flex; flex-direction: column; gap: 5px;
  flex: 1; overflow: hidden;
}
.sh-mis__kicker { font-size: 7px; font-weight: 800; letter-spacing: .14em; color: #23d18b; }
.sh-mis__h2 { font-size: 15px; font-weight: 700; line-height: 1.15; margin: 0; color: #0a0e2a; }
.sh-mis__h2 em { font-style: italic; color: #23d18b; }
.sh-mis__lede { font-size: 8px; line-height: 1.45; color: #5b6379; margin: 0; }
.sh-mis__ctas { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 2px; }
.sh-mis__btn {
  font-size: 8px; font-weight: 700; padding: 5px 10px;
  border-radius: 999px; border: 1px solid #0a0e2a; color: #0a0e2a; white-space: nowrap;
}
.sh-mis__btn--primary { background: #23d18b; border-color: #23d18b; color: #0a0e2a; }
.sh-mis__heroimg {
  flex: 1; min-height: 56px;
  border-radius: 8px; overflow: hidden; background: #0a0e2a;
  margin-top: 4px;
}
.sh-mis__heroimg svg { width: 100%; height: 100%; }
.sh-mis__badges {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
  padding: 7px 12px 9px;
  border-top: 1px solid #e5e8ed;
  flex-shrink: 0;
}
.sh-mis__badges > div { text-align: center; }
.sh-mis__badge-v { font-size: 12px; font-weight: 800; color: #0a0e2a; line-height: 1; }
.sh-mis__badge-l { font-size: 7px; color: #5b6379; margin-top: 2px; font-weight: 600; }

/* =============================================================
   RESPONSIVE SWITCH  —  phone on mobile, laptop on desktop
   ============================================================= */
@media (max-width: 768px) {
  .sh-stage__laptop { display: none; }
  .sh-stage__phone  { display: block; }

  /* Results panel: slide up from bottom instead of in from right */
  .sh-stage__results {
    right: auto !important;
    top: auto !important;
    left: 50%;
    bottom: 4vh;
    width: min(300px, 88vw);
    transform: translateX(-50%) translateY(calc(110% * (1 - var(--p-results))));
    opacity: var(--p-results);
  }

  /* Scroll hint: centre it */
  .sh-stage__hint {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 16px;
  }

  /* Editor: results preview already visible — keep centred */
  .elementor-editor-active .sh-stage__results--preview,
  .elementor-editor-preview .sh-stage__results--preview {
    transform: translateX(-50%) !important;
    top: auto !important;
    bottom: 4vh;
    left: 50%;
    right: auto;
  }
}
