/* =============================================================
   Clockworks Analytics — Homepage Redesign
   Companion stylesheet for the Elementor template
   Prefix: .cw-   |  Font: Montserrat
   Breakpoints match Elementor defaults: 1024px / 767px
   ============================================================= */

:root {
  --cw-blue: #004EEA;
  --cw-blue-600: #0040c4;
  --cw-blue-300: #66A1F4;
  --cw-blue-100: #E7EFFE;
  --cw-light: #F3F7FD;
  --cw-black: #000;
  --cw-ink: #0A0F1C;
  --cw-card: #1B1C21;
  --cw-card-head: #141519;
  --cw-navy: #152649;
  --cw-navy-soft: #182033;
  --cw-red: #E04A2F;
  --cw-amber: #F5A623;
  --cw-gray: #6B7280;
  --cw-gray-400: #9CA3AF;
  --cw-line: #E5E7EB;
  --cw-radius: 10px;
  --cw-maxw: 1200px;
}

/* ---------- typography base ---------- */
.cw-page,
.cw-page .elementor-widget-container {
  font-family: 'Montserrat', -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.cw-page h1,
.cw-page h2,
.cw-page h3,
.cw-page h4,
.cw-page .elementor-heading-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: -.01em;
  margin: 0;
}

/* Eyebrow / kicker label */
.cw-eyebrow,
.cw-eyebrow .elementor-heading-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cw-blue);
  margin: 0 0 14px;
}

.cw-eyebrow--rule .elementor-heading-title::before,
.cw-eyebrow--rule::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 2px;
  background: var(--cw-blue);
  vertical-align: middle;
  margin-right: 14px;
}

/* Section headings */
.cw-h2,
.cw-h2 .elementor-heading-title {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
  text-transform: uppercase;
  color: var(--cw-ink);
}

.cw-h2--light,
.cw-h2--light .elementor-heading-title {
  color: #fff;
}

.cw-lead,
.cw-lead p {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--cw-gray);
  margin: 0;
}

.cw-lead--light,
.cw-lead--light p {
  color: rgba(255, 255, 255, .82);
}

/* ---------- layout scaffold ----------
   Every container in the template is a FULL-WIDTH Elementor container, so these
   classes land directly on the element that lays its children out.
   .cw-wrap is the centered content column; all section spacing lives here.     */
.cw-section {
  padding: 104px 0;
}

.cw-section--tight {
  padding: 72px 0;
}

.cw-section--flush {
  padding: 0;
}

.cw-wrap {
  width: 100%;
  max-width: var(--cw-maxw);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  gap: 0;
}

.cw-wrap--narrow {
  max-width: 860px;
}

.cw-stack {
  gap: 18px;
}

.cw-stack--lg {
  gap: 34px;
}

.cw-center {
  text-align: center;
}

.cw-grid-2,
.cw-grid-3,
.cw-grid-4 {
  display: grid;
}

.cw-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.cw-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
}

.cw-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
}

.cw-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.cw-row>* {
  width: auto;
  flex: 0 0 auto;
}

.cw-hero-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 38px;
}

/* vertical rhythm between the stacked containers inside one section */
.cw-found-cards {
  margin-top: 46px;
}

.cw-block-w {
  margin-top: 34px;
}

.cw-benefits {
  gap: 44px;
}

.cw-hero-actions>* {
  width: auto;
  flex: 0 0 auto;
}

/* ---------- 1. HERO ---------- */
.cw-hero {
  position: relative;
  padding: 104px 0;
  background-color: #0b0d10;
  background-size: cover;
  background-position: center center;
  min-height: 640px;
}

.cw-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 8, 12, .86) 0%, rgba(6, 8, 12, .62) 55%, rgba(6, 8, 12, .35) 100%);
  pointer-events: none;
}

.cw-hero>* {
  position: relative;
  z-index: 1;
}

.cw-hero-title,
.cw-hero-title .elementor-heading-title {
  font-size: clamp(44px, 5vw, 96px);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: .015em;
  max-width: 1100px;
  color: white;
}

.cw-hero-title .cw-hl {
  color: var(--cw-blue);
  display: block;
}

.cw-hero-sub,
.cw-hero-sub p {
  font-size: clamp(18px, 1.4vw, 26px);
  line-height: 1.45;
  font-weight: 500;
  max-width: 800px;
  margin: 32px 0 0;
  color: white;
}

.cw-hero-actions {
  align-items: center;
}

/* ---------- buttons ---------- */
.cw-btn .elementor-button,
a.cw-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: var(--cw-blue);
  color: #fff;
  padding: 18px 30px;
  border-radius: 2px;
  border: 0;
  transition: background .18s ease, transform .18s ease;
  display: inline-block;
  text-decoration: none;
}

.cw-btn .elementor-button:hover,
a.cw-btn:hover {
  background: var(--cw-blue-600);
  color: #fff;
}

.cw-btn--ghost .elementor-button,
a.cw-btn--ghost {
  background: transparent;
  color: #fff;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  border-radius: 0;
}

.cw-btn--ghost .elementor-button:hover,
a.cw-btn--ghost:hover {
  background: transparent;
  border-bottom-color: #fff;
}

.cw-btn--white .elementor-button,
a.cw-btn--white {
  background: #fff;
  color: var(--cw-blue);
}

.cw-btn--white .elementor-button:hover,
a.cw-btn--white:hover {
  background: var(--cw-light);
  color: var(--cw-blue);
}

/* ---------- 3. BENEFIT ROW ---------- */
.cw-benefit {
  gap: 0;
}

.cw-benefit__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cw-blue-100);
  color: var(--cw-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.cw-benefit__icon svg {
  width: 24px;
  height: 24px;
}

.cw-benefit-title,
.cw-benefit-title .elementor-heading-title {
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--cw-ink);
  margin: 22px 0 10px;
}

.cw-benefit-desc,
.cw-benefit-desc p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--cw-gray);
  margin: 0;
}

.cw-benefit--div {
  border-left: 1px solid var(--cw-line);
  padding-left: 0;
}

/* ---------- 4. QUOTE BAND ---------- */
.cw-quote-band {
  background: var(--cw-black);
}

.cw-quote-rule {
  width: 40px;
  height: 3px;
  background: var(--cw-blue);
  margin: 0 auto 34px;
}

.cw-quote,
.cw-quote .elementor-heading-title {
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 800;
  line-height: 1.45;
  color: #fff;
  text-align: center;
  max-width: 24em;
  margin: 0 auto;
}

/* ---------- 6. FOUNDATION CARDS ---------- */
.cw-found-card {
  background: var(--cw-light);
  border-top: 3px solid var(--cw-blue);
  border-radius: 4px;
  padding: 34px 32px 38px;
  height: 100%;
}

.cw-found-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cw-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex: 0 0 auto;
}

.cw-found-card__icon svg {
  width: 22px;
  height: 22px;
}

.cw-found-card__kicker {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cw-blue);
  margin: 0 0 14px;
}

.cw-found-card__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 6px;
}

.cw-found-card__head>* {
  width: auto;
  flex: 1 1 auto;
  min-width: 0;
}

.cw-found-card__head .cw-found-card__kicker {
  margin: 0;
}

.cw-found-card__title,
.cw-found-card h3 {
  font-size: clamp(19px, 1.7vw, 23px);
  font-weight: 800;
  line-height: 1.28;
  color: var(--cw-ink);
  margin: 8px 0 14px;
  text-transform: none;
}

.cw-found-card__body {
  font-size: 15.5px;
  line-height: 1.7;
  color: #374151;
  margin: 0 0 22px;
}

.cw-stat-chip {
  background: #fff;
  border: 1px solid #DCE6F6;
  border-radius: 6px;
  padding: 14px 16px;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: #374151;
}

.cw-stat-chip b {
  color: var(--cw-blue);
  font-weight: 800;
  font-size: 17px;
}

/* ---------- 7. AI COMPARISON ----------
   Rebuilt from the AI-Forward design. The building schematic and both stacks are
   plain elements, not artwork, so every string in them stays editable and the
   whole thing scales with the type rather than a fixed viewBox.              */
.cw-ai {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  align-items: stretch;
}

.cw-ai__rule {
  background: #E5E5E5;
}

.cw-ai__col {
  padding: 0 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cw-ai__h {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #000;
  margin: 0 0 4px;
}

.cw-ai__sub {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin: 0 0 32px;
}

.cw-ai__foot-rule {
  width: 44px;
  height: 3px;
  margin: 0 auto 14px;
}

.cw-ai__col--bad .cw-ai__foot-rule {
  background: var(--cw-red);
}

.cw-ai__col--good .cw-ai__foot-rule {
  background: var(--cw-blue);
}

.cw-ai__caption {
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.55;
  color: #333;
  max-width: 32em;
  margin: 0 auto;
}

.cw-ai__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.cw-ai__foot {
  margin-top: 28px;
}

/* --- the building schematic, shared by both panels --- */
.cw-ai-b {
  margin-bottom: 6px;
  position: relative;
}

.cw-ai-b__row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 44px;
}

.cw-ai-b__tower {
  width: 14px;
  height: 36px;
  border: 1.5px solid #000;
  border-bottom: 0;
}

.cw-ai-b__block {
  width: 48px;
  height: 24px;
  border: 1.5px solid #000;
}

.cw-ai-b__ai {
  width: 42px;
  height: 22px;
  background: #00236A;
  color: #fff;
  border-radius: 2px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cw-ai-b__coils {
  width: 44px;
  height: 30px;
  border: 1.5px solid #000;
  padding: 3px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.cw-ai-b__coils span {
  border: 1px solid #000;
  border-radius: 50%;
}

.cw-ai-b__floors {
  width: 160px;
  height: 30px;
  border: 1.5px solid #000;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.cw-ai-b__floors span {
  border: 1px solid #000;
}

.cw-ai-b__alert {
  position: absolute;
  top: -16px;
  left: 16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #DD3928;
}

.cw-ai-b__alert::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 3px;
  width: 2px;
  height: 9px;
  background: #DD3928;
}

/* --- left: unstable foundation --- */
.cw-ai__wobble {
  animation: cw-wobble 2.4s ease-in-out infinite;
}

.cw-ai__pylons {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}

.cw-ai__pylons span {
  width: 3px;
  height: 60px;
  background: #BBB;
  animation: cw-layer-in .4s ease-out both;
}

.cw-ai__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 8px;
  margin-top: 20px;
}

.cw-ai__tag {
  background: #F57F27;
  color: #000;
  border-radius: 2px;
  padding: 7px 12px;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.2;
  animation: cw-tag-in .5s ease-out both;
}

/* --- right: the validated stack --- */
.cw-ai__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  max-width: 420px;
}

.cw-ai__bar {
  width: 60%;
  background: var(--cw-blue);
  color: #fff;
  text-align: center;
  padding: 11px 10px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: cw-layer-in .45s ease-out both;
}

.cw-layer {
  border: 1.5px solid #000;
  border-radius: 2px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
  font-size: 12.5px;
  line-height: normal;
  color: #000;
  animation: cw-layer-in .45s ease-out both;
}

.cw-layer svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

/* Line height is set explicitly on both lines. Left to inherit, a theme with a
   loose body line-height pushes the title and its description apart — which is
   what opens this block up on the live site. */
.cw-layer .cw-layer__t {
  display: block;
  font-weight: 700;
  font-size: 12.5px;
  line-height: 1.2;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin: 0;
}

.cw-layer .cw-layer__s {
  display: block;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.27;
  letter-spacing: normal;
  color: #666;
  margin: 0;
}

@keyframes cw-layer-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes cw-tag-in {
  0% {
    opacity: 0;
    transform: rotate(-4deg) translateY(10px);
  }

  60% {
    opacity: 1;
    transform: rotate(2deg) translateY(-2px);
  }

  100% {
    opacity: 1;
    transform: rotate(var(--cw-tilt, -1deg)) translateY(0);
  }
}

@keyframes cw-wobble {
  0% {
    transform: rotate(-1.4deg) translate(-1px, 0);
  }

  25% {
    transform: rotate(1deg) translate(1px, -2px);
  }

  50% {
    transform: rotate(-.8deg) translate(-1px, 1px);
  }

  75% {
    transform: rotate(1.3deg) translate(1px, -1px);
  }

  100% {
    transform: rotate(-1.4deg) translate(-1px, 0);
  }
}

@media (prefers-reduced-motion:reduce) {

  .cw-ai__wobble,
  .cw-ai__pylons span,
  .cw-ai__tag,
  .cw-ai__bar,
  .cw-layer {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .cw-ai__tag {
    transform: rotate(var(--cw-tilt, -1deg));
  }
}

/* ---------- 8. DARK ASSET-INTELLIGENCE SECTION ---------- */
.cw-dark {
  background: var(--cw-black);
}

.cw-dark-head {
  border-left: 3px solid var(--cw-blue);
  padding-left: 26px;
}

.cw-capgrid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.cw-cap {
  background: var(--cw-navy-soft);
  border-top: 2px solid var(--cw-blue-300);
  padding: 20px 10px 18px;
  display: flex;
  flex-direction: column;
}

.cw-cap__icon {
  color: var(--cw-blue-300);
  margin-bottom: 16px;
}

.cw-cap__icon svg {
  width: 20px;
  height: 20px;
}

.cw-cap__title {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.35;
  margin: 0 0 14px;
}

.cw-cap__body {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .72);
  margin: 0 0 20px;
}

.cw-cap__who {
  margin-top: auto;
  border-top: 1px solid rgba(102, 161, 244, .35);
  padding-top: 12px;
}

.cw-cap__who-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cw-blue-300);
  display: block;
  margin-bottom: 5px;
}

.cw-cap__who-val {
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .82);
}

.cw-aiband {
  margin-top: 0;
  border: 1px solid rgba(102, 161, 244, .4);
}

.cw-aiband__top {
  background: var(--cw-blue);
  padding: 16px 20px;
  text-align: center;
  font-size: clamp(18px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}

.cw-aiband__bottom {
  background: var(--cw-navy-soft);
  padding: 14px 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  line-height: 1.8;
}

.cw-aiband__note {
  text-align: center;
  color: rgba(255, 255, 255, .7);
  font-size: 15.5px;
  margin: 26px auto 0;
  max-width: 40em;
}

/* ---------- 10-12. OUTPUT BLOCKS (01-04) ---------- */
.cw-block {
  background: var(--cw-card);
  border-top: 3px solid var(--cw-blue);
  border-radius: 6px;
  overflow: hidden;
}

.cw-block__head {
  background: var(--cw-card-head);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
}

.cw-block__num {
  background: var(--cw-navy);
  color: var(--cw-blue-300);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  padding: 12px 14px;
  border-radius: 5px;
  flex: 0 0 auto;
}

.cw-block__title {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  line-height: 1.35;
}

.cw-block__body {
  padding: 26px;
}

.cw-ask-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cw-blue-300);
  margin: 0 0 12px;
}

.cw-ask {
  border-left: 3px solid var(--cw-blue);
  padding-left: 22px;
  font-size: clamp(19px, 2.2vw, 29px);
  font-weight: 800;
  line-height: 1.35;
  color: #fff;
  margin: 0;
}

/* stacked share bar */
.cw-sharebar {
  display: flex;
  height: 14px;
  border-radius: 3px;
  overflow: hidden;
  margin: 28px 0 20px;
}

.cw-sharebar span {
  display: block;
  height: 100%;
}

.cw-sharebar .s1 {
  background: var(--cw-blue);
}

.cw-sharebar .s2 {
  background: var(--cw-blue-300);
}

.cw-sharebar .s3 {
  background: var(--cw-amber);
}

.cw-sharebar .s4 {
  background: #6B7280;
}

.cw-quad {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.cw-quad__item {
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 6px;
  padding: 18px;
}

.cw-quad__pct {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.cw-quad__dot {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  flex: 0 0 auto;
}

.cw-quad__label {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.35;
}

.cw-quad__note {
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .6);
  margin: 0;
}

.cw-callout {
  margin-top: 22px;
  background: var(--cw-navy);
  border-radius: 6px;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.cw-callout__big {
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800;
  color: var(--cw-blue-300);
  line-height: 1;
  flex: 0 0 auto;
}

.cw-callout__text {
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  margin: 0;
}

/* chat mockups (02 / 03) */
.cw-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.cw-bubble {
  background: #2A2C33;
  border-radius: 10px;
  padding: 22px 24px;
  margin: 0 0 22px auto;
  max-width: 88%;
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
}

.cw-reply {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.cw-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
}

.cw-avatar--sprocket {
  background: var(--cw-blue);
}

.cw-avatar--claude {
  background: #1B1C21;
  border: 1px solid rgba(255, 255, 255, .35);
}

.cw-reply__card {
  flex: 1 1 auto;
  background: #141C2E;
  border: 1px solid rgba(102, 161, 244, .35);
  border-radius: 8px;
  padding: 18px 20px;
}

.cw-reply__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cw-blue-300);
  margin: 0 0 14px;
}

.cw-findings {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.cw-findings li {
  position: relative;
  padding: 0 0 14px 18px;
  margin: 0 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .88);
}

.cw-findings li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cw-findings li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.cw-findings li.sev-hi::before {
  background: var(--cw-red);
}

.cw-findings li.sev-md::before {
  background: var(--cw-amber);
}

.cw-findings li.sev-lo::before {
  background: var(--cw-amber);
  opacity: .7;
}

.cw-offenders__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.5;
}

.cw-offender {
  display: grid;
  grid-template-columns: 1fr 100px auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 11px;
}

.cw-offender__name {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.35;
}

.cw-offender__track {
  height: 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .12);
  overflow: hidden;
}

.cw-offender__fill {
  display: block;
  height: 100%;
  border-radius: 4px;
  background: var(--cw-blue-300);
}

.cw-offender__val {
  font-size: 12.5px;
  font-weight: 800;
  color: #fff;
  text-align: right;
}

.cw-reply__prose {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .88);
  margin: 0;
}

.cw-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0 0;
}

.cw-chip {
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, .75);
}

/* 04 dashboard */
.cw-dash {
  background: #fff;
  border-radius: 8px;
  padding: 22px;
  margin-top: 22px;
}

.cw-dash__h {
  font-size: 17px;
  font-weight: 800;
  color: var(--cw-ink);
  margin: 0 0 4px;
}

.cw-dash__sub {
  font-size: 12.5px;
  color: var(--cw-gray);
  margin: 0 0 20px;
}

.cw-kpis {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.cw-kpi {
  border: 1px solid var(--cw-line);
  border-radius: 6px;
  padding: 14px;
}

.cw-kpi__val {
  font-size: 21px;
  font-weight: 800;
  color: var(--cw-ink);
  margin: 0 0 3px;
}

.cw-kpi__label {
  font-size: 11.5px;
  color: var(--cw-gray);
  line-height: 1.4;
  margin: 0 0 10px;
}

.cw-spark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 30px;
}

.cw-spark i {
  display: block;
  flex: 1 1 auto;
  border-radius: 1px;
  background: var(--cw-blue);
}

.cw-spark--warm i {
  background: #E8735A;
}

.cw-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 11px;
  color: var(--cw-gray);
}

.cw-legend li {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.cw-legend em {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  display: block;
}

.cw-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cw-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
  font-size: 13px;
}

.cw-table thead th {
  background: var(--cw-light);
  text-align: left;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cw-gray);
  padding: 12px 14px;
  white-space: nowrap;
}

.cw-table tbody td {
  padding: 14px;
  border-bottom: 1px solid var(--cw-line);
  vertical-align: middle;
}

.cw-table tbody tr.is-active {
  background: #F5F8FF;
}

.cw-table tbody tr.is-active .cw-eq__name {
  color: var(--cw-blue);
}

.cw-eq__name {
  font-weight: 800;
  color: var(--cw-ink);
  display: block;
}

.cw-eq__loc {
  font-size: 11.5px;
  color: var(--cw-gray);
}

.cw-table__diag {
  color: #4B5563;
  min-width: 240px;
}

.cw-table__cost {
  font-weight: 800;
  color: var(--cw-ink);
  white-space: nowrap;
}

.cw-scores {
  display: flex;
  gap: 5px;
}

.cw-score {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10.5px;
  font-weight: 800;
  color: #fff;
}

.cw-score--e {
  background: #0FA789;
}

.cw-score--c {
  background: #7C4DD1;
}

.cw-score--m {
  background: #E58A2E;
}

.cw-status {
  display: inline-block;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 11.5px;
  font-weight: 700;
  margin: 2px 4px 2px 0;
}

.cw-status--open {
  background: #E7EFFE;
  color: var(--cw-blue);
}

.cw-status--hold {
  background: #FDF0D8;
  color: #9A6512;
}

.cw-status--proc {
  background: var(--cw-blue);
  color: #fff;
}

.cw-table__foot {
  text-align: center;
  font-size: 12px;
  font-style: italic;
  color: var(--cw-gray);
  padding: 14px 0 0;
}

.cw-dash__report {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 14px;
  border-radius: 6px;
}

/* ---------- 13. PROVEN AT SCALE ---------- */
.cw-proven {
  background: var(--cw-blue);
}

.cw-counter .elementor-counter-number-wrapper {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(38px, 4.6vw, 60px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.cw-counter .elementor-counter-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  margin-top: 12px;
}

.cw-counter-icon {
  color: #fff;
  margin-bottom: 14px;
}

.cw-counter-icon svg {
  width: 30px;
  height: 30px;
}

/* ---------- 14. CLIENT LOGOS ---------- */
.cw-logos-intro,
.cw-logos-intro p {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
  color: #374151;
  text-align: center;
  max-width: 42em;
  margin: 0 auto 40px;
}

.cw-logogrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.cw-logogrid__cell {
  border: 1px solid var(--cw-line);
  border-radius: 3px;
  background: #fff;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
}

.cw-logogrid__cell img {
  max-width: 160px;
  max-height: 50px;
  height: auto;
  width: auto;
  filter: grayscale(1);
  opacity: .65;
  transition: filter .2s, opacity .2s;
}

.cw-logogrid__cell:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.cw-logogrid__cell span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8A94A6;
}

/* =============================================================
   RESPONSIVE — no mobile comp, so grids stack in source order
   ============================================================= */
@media (max-width:1024px) {
  .cw-section {
    padding: 76px 0;
  }

  .cw-hero {
    padding: 76px 0;
  }

  .cw-grid-3,
  .cw-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }

  .cw-benefit--div {
    border-left: 0;
    padding-left: 0;
  }

  .cw-hero {
    min-height: 520px;
  }

  .cw-capgrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cw-quad {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cw-kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cw-duo {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cw-ai {
    grid-template-columns: 1fr;
  }

  .cw-ai__rule {
    height: 1px;
    width: 100%;
    margin: 40px 0;
  }

  .cw-ai__col {
    padding: 0 0 28px;
  }
}

@media (max-width:767px) {
  .cw-section {
    padding: 58px 0;
  }

  .cw-hero {
    padding: 58px 0;
  }

  .cw-section--tight {
    padding: 48px 0;
  }

  .cw-wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  .cw-grid-2,
  .cw-grid-3,
  .cw-grid-4 {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cw-hero {
    min-height: 0;
  }

  .cw-hero::before {
    background: linear-gradient(180deg, rgba(6, 8, 12, .82) 0%, rgba(6, 8, 12, .72) 100%);
  }

  .cw-hero-title,
  .cw-hero-title .elementor-heading-title {
    max-width: none;
  }

  .cw-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cw-btn .elementor-button,
  a.cw-btn {
    display: block;
    text-align: center;
  }

  .cw-btn--ghost .elementor-button,
  a.cw-btn--ghost {
    text-align: left;
  }

  .cw-capgrid {
    grid-template-columns: 1fr;
  }

  .cw-cap {
    border-top-width: 2px;
  }

  .cw-quad {
    grid-template-columns: 1fr;
  }

  .cw-kpis {
    grid-template-columns: 1fr 1fr;
  }

  .cw-logogrid {
    grid-template-columns: 1fr;
  }

  .cw-block__head {
    gap: 14px;
    padding: 18px;
  }

  .cw-block__body {
    padding: 18px;
  }

  .cw-bubble {
    max-width: 100%;
    margin-left: 0;
  }

  .cw-ask {
    padding-left: 16px;
  }

  .cw-callout {
    gap: 14px;
  }

  .cw-offender {
    grid-template-columns: 1fr 70px auto;
  }

  .cw-dash {
    padding: 14px;
  }

  .cw-aiband__top {
    letter-spacing: .02em;
  }

  .cw-dark-head {
    padding-left: 18px;
  }

  .cw-ai__col {
    padding: 0 0 24px;
  }

  .cw-ai__sub {
    margin-bottom: 24px;
  }
}

/* ---------- load-order hardening ----------
   Elementor's frontend.css sets `.e-con{display:flex}`. These two-class selectors
   win regardless of which stylesheet is enqueued first.                        */
.e-con.cw-grid-2,
.e-con.cw-grid-3,
.e-con.cw-grid-4,
.e-con.cw-duo {
  display: grid;
}

.e-con.cw-hero-actions {
  display: flex;
}

@media (max-width:1024px) {

  .e-con.cw-grid-3,
  .e-con.cw-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:767px) {

  .e-con.cw-grid-2,
  .e-con.cw-grid-3,
  .e-con.cw-grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width:1024px) {
  .e-con.cw-duo {
    grid-template-columns: 1fr;
  }
}

.e-con.cw-found-card__head,
.e-con.cw-hero-actions,
.e-con.cw-row {
  flex-direction: row;
}

/* Elementor ships `.e-con > .elementor-widget{width:100%}`; these match its
   specificity so children of a row container size to their content instead. */
.e-con.cw-hero-actions>.elementor-widget,
.e-con.cw-hero-actions>*,
.e-con.cw-row>.elementor-widget,
.e-con.cw-row>* {
  width: auto;
  flex: 0 0 auto;
}

.e-con.cw-found-card__head>.elementor-widget,
.e-con.cw-found-card__head>* {
  width: auto;
  flex: 1 1 auto;
  min-width: 0;
}

.e-con.cw-found-card__head>.cw-found-card__icon,
.e-con.cw-found-card__head>.elementor-widget-html {
  flex: 0 0 auto;
}

/* keep the wide diagnostics table inside its own scroller instead of the page */
.cw-block-w>.elementor-element,
.cw-block-w>.elementor-widget,
.cw-block-w>.elementor-widget>.elementor-widget-container {
  min-width: 0;
  max-width: 100%;
}

.cw-block,
.cw-block__body,
.cw-dash,
.cw-table-wrap {
  min-width: 0;
  max-width: 100%;
}

/* ---------- naming hooks ----------
   These classes are in the template but carry no styling by default. They exist
   so a later tweak has something to target without touching the markup:
   .cw-hero-wrap  .cw-found-intro  .cw-found-card__chips  .cw-capgrid-w
   .cw-aiband-w   .cw-produces     .cw-logogrid-w         .cw-counter-cell     */
.cw-counters {
  margin-top: 8px;
}

.cw-proven-cta {
  margin-top: 10px;
}

/* ---------- boxed-container safety net ----------
   A container left on Elementor's default "Boxed" width renders an extra
   .e-con-inner wrapper, so the grid ends up with a single child and the items
   stack instead of sitting in a row. These rules move the grid onto that inner
   wrapper, so the layout survives either setting.                            */
.e-con.cw-grid-2>.e-con-inner,
.e-con.cw-grid-3>.e-con-inner,
.e-con.cw-grid-4>.e-con-inner,
.e-con.cw-duo>.e-con-inner {
  display: grid;
}

.e-con.cw-grid-2>.e-con-inner {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.e-con.cw-grid-3>.e-con-inner {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
}

.e-con.cw-grid-4>.e-con-inner {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
}

.e-con.cw-duo>.e-con-inner {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.e-con.cw-hero-actions>.e-con-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
}

.e-con.cw-found-card__head>.e-con-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

@media (max-width:1024px) {

  .e-con.cw-grid-3>.e-con-inner,
  .e-con.cw-grid-4>.e-con-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }

  .e-con.cw-duo>.e-con-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width:767px) {

  .e-con.cw-grid-2>.e-con-inner,
  .e-con.cw-grid-3>.e-con-inner,
  .e-con.cw-grid-4>.e-con-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* =============================================================
   Widget blocks added in 1.0.3 — pillars, foundation cards, stat band.
   Values measured from the AI-Forward design rather than eyeballed.
   ============================================================= */

/* ---------- pillars (Optimize / Improve / Enhance) ---------- */
.cw-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  text-align: left;
}

.cw-pillar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-right: 24px;
  border-right: 1px solid #E5E5E5;
}

.cw-pillar:last-child {
  border-right: 0;
  padding-right: 0;
}

.cw-pillar__ic {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: #E5EEFD;
  color: var(--cw-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cw-pillar__ic svg {
  width: 24px;
  height: 24px;
}

.cw-pillar .cw-pillar__t {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #000;
  margin: 0;
}

.cw-pillar__d {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .03em;
  color: #666;
  margin: 0;
}

/* ---------- foundation cards ---------- */
.cw-fcards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.cw-fcard {
  background: #F4F8FE;
  border-top: 4px solid var(--cw-blue);
  border-radius: 4px;
  padding: 32px;
  box-shadow: 0 2px 4px rgba(0, 35, 106, .08);
}

.cw-fcard__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.cw-fcard__ic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: var(--cw-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cw-fcard__ic svg {
  width: 20px;
  height: 20px;
}

.cw-fcard__kicker {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cw-blue);
  margin: 0;
  line-height: 1.25;
}

.cw-fcard .cw-fcard__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: .01em;
  text-transform: none;
  color: #000;
  margin: 0 0 14px;
}

.cw-fcard__body {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .05em;
  color: #333;
  margin: 0 0 24px;
}

.cw-fchips {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cw-fchip {
  background: #fff;
  border: 1px solid #C2DBFB;
  border-radius: 2px;
  padding: 14px 16px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.cw-fchip b {
  color: var(--cw-blue);
  font-size: 20px;
  font-weight: 700;
}

.cw-fchip span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .05em;
  color: #333;
}

/* ---------- stat band ---------- */
.cw-statband {
  background: var(--cw-blue);
  padding: 104px 0;
}

.cw-statband__inner {
  width: 100%;
  max-width: var(--cw-maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.cw-statband .cw-statband__h {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 48px;
}

.cw-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.cw-stat__ic {
  margin: 0 0 16px;
  color: #fff;
  line-height: 0;
}

.cw-stat__ic svg {
  width: 48px;
  height: 48px;
}

.cw-stat__n {
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.01em;
  color: #fff;
  margin: 0;
}

.cw-stat__l {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  line-height: 1.4;
  color: #fff;
  margin: 8px 0 0;
  display: block;
}

.cw-statband__cta {
  margin-top: 48px;
  text-align: center;
}

@media (max-width:1024px) {
  .cw-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }

  .cw-pillar {
    border-right: 0;
    padding-right: 0;
  }

  .cw-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }

  .cw-statband {
    padding: 76px 0;
  }

  .cw-statband .cw-statband__h {
    margin-bottom: 36px;
  }
}

@media (max-width:767px) {
  .cw-pillars {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .cw-fcards {
    grid-template-columns: 1fr;
  }

  .cw-fcard {
    padding: 24px;
  }

  .cw-stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cw-statband {
    padding: 58px 0;
  }

  .cw-statband__inner {
    padding: 0 18px;
  }

  .cw-stat__n {
    font-size: 46px;
  }
}

/* ---------- 1.0.5 — scrolling logo marquee ----------
   CSS-only: the track holds the same group twice and slides exactly half its
   width, so the loop is seamless with no JavaScript and nothing to initialise.
   The theme's slick carousel is deliberately not used — this block should not
   depend on jQuery load order.                                              */
.cw-marquee-intro {
  font-size: clamp(17px, 1.5vw, 27px);
  line-height: 1.6;
  color: #374151;
  text-align: center;
  max-width: 42em;
  margin: 0 auto 80px;
}

.cw-marquee {
  position: relative;
  overflow: hidden;
  --cw-mq-dur: 40s;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.cw-marquee__track {
  display: flex;
  width: max-content;
  animation: cw-mq var(--cw-mq-dur) linear infinite;
}

.cw-marquee__grp {
  display: flex;
  align-items: center;
  gap: 72px;
  padding-right: 72px;
  flex: 0 0 auto;
}

.cw-marquee__cell {
  flex: 0 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cw-marquee__cell img {
  max-height: 170px;
  max-width: 269px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .7;
  transition: filter .2s ease, opacity .2s ease;
}

.cw-marquee__cell:hover img {
  filter: none;
  opacity: 1;
}

.cw-marquee__cell span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8A94A6;
  white-space: nowrap;
}

.cw-marquee--pause:hover .cw-marquee__track,
.cw-marquee--pause:focus-within .cw-marquee__track {
  animation-play-state: paused;
}

@keyframes cw-mq {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion:reduce) {

  /* No crawl: show one set, wrapped and centred. */
  .cw-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .cw-marquee__track {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cw-marquee__grp {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding-right: 0;
  }

  .cw-marquee__grp[aria-hidden="true"] {
    display: none;
  }
}

@media (max-width:767px) {
  .cw-marquee__grp {
    gap: 48px;
    padding-right: 48px;
  }

  .cw-marquee__cell {
    height: 60px;
  }

  .cw-marquee__cell img {
    max-height: 44px;
    max-width: 150px;
  }
}