/* =====================================================================
   Crescendo Lab — Section Library
   ---------------------------------------------------------------------
   Reusable page sections, built on top of cl.css. Each section is
   a self-contained block: include cl.css + cl-sections.css, drop
   the section's markup into your page, and it works.

   Naming:
   - Section root class:    .cls-<name>          (e.g. .cls-hero)
   - Section direct child:  .cls-<name>__<part>  (e.g. .cls-hero__inner)
   - Deeper helpers:        unchanged (e.g. .hm-stat, .ts-stat)
   - Shared base:           .section / .section__head / .section__eyebrow

   Sections in this file:
     1. Shared base (.section, .section__head, etc.)
     2. .cls-hero          — Centered hero with blobs + product mock
     3. .cls-metrics       — 3-up KPI grid (uses .cl-card--metric)
     4. .cls-testimonial   — Story card + stats card, with carousel control
   ===================================================================== */


/* =====================================================================
   1. SHARED SECTION BASE
   ===================================================================== */

.section            { padding: 128px 96px; }
.section--tight     { padding: 96px 96px; }
.section--tint      { background: var(--cl-bg-tint); }
.section--wash      { background: var(--cl-blue-bg); }

.section__head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15.6px;
  font-weight: var(--cl-w-semibold);
  color: var(--cl-blue);
  letter-spacing: 0.01em;
  margin: 0;
  padding: 7px 17px 7px 14px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(80,144,255,0.10), 0 1px 2px rgba(80,144,255,0.06);
  border-radius: var(--cl-radius-full);
  line-height: 1;
}
.section__eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cl-blue);
  flex-shrink: 0;
}
.section__title {
  margin: 0;
  font-size: 40px;
  font-weight: var(--cl-w-bold);
  line-height: 1.3;
  color: var(--cl-fg-1);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.section__desc {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--cl-fg-2);
  max-width: 640px;
}
.section__head-cta { margin-top: 12px; }


/* =====================================================================
   2. .cls-hero — Centered hero with blobs + product mock
   ---------------------------------------------------------------------
   Establishes the page voice: soft purple-blue blob field,
   bold zh title with gradient highlight, English subtitle,
   two CTAs, and a product mock with a soft gradient frame.
   ===================================================================== */

.cls-hero {
  position: relative;
  padding: 140px 96px 64px;
  overflow: hidden;
  background: #fff;
}
.cls-hero__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}
.cls-hero__eyebrow {
  display: inline-block;
  font-size: 18px;
  font-weight: var(--cl-w-semibold);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  background: var(--cl-gradient-blue-h);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cls-hero__title {
  margin: 0 0 20px;
  font-family: var(--cl-font-sans);
  font-weight: var(--cl-w-bold);
  font-size: 64px;
  line-height: 1.35;
  padding: 0.1em 0;
  color: var(--cl-fg-1);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.cls-hero__title em {
  font-style: normal;
  background: var(--cl-gradient-blue-h);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cls-hero__sub {
  margin: 0 auto 32px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--cl-fg-2);
  max-width: 640px;
}
.cls-hero__ctas {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Soft blue blobs behind the hero copy */
.cls-hero__blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}
.cls-hero__blob--a { left: -160px; bottom: -160px; width: 620px; height: 420px;
                     background: rgba(80,144,255,0.38); }
.cls-hero__blob--b { right: -180px; bottom: -180px; width: 620px; height: 420px;
                     background: rgba(164,156,255,0.34); }
.cls-hero__blob--c { left: 30%;     bottom: -240px; width: 640px; height: 420px;
                     background: rgba(120,150,255,0.22); }

/* Product mock — sits BELOW the copy, framed by a subtle gradient ring */
.cls-hero__mock {
  position: relative;
  margin: 56px auto 0;
  max-width: 1080px;
  border-radius: 28px;
  padding: 12px;
  background: linear-gradient(135deg, #DCE8FB 0%, #E2DDF8 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.95),
    0 30px 60px rgba(40,55,100,.10),
    0 6px 14px rgba(40,55,100,.06);
}
.cls-hero__mock-inner {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background-image:
    radial-gradient(120% 100% at 30% 0%, #FFFFFF 0%, #F4F7FE 55%, #EAF1FE 100%);
  display: grid;
  grid-template-columns: 220px 1fr;
}

/* Mock — sidebar */
.hm-side {
  background: #F4F6FB;
  border-right: 1px solid #EEF1F8;
  padding: 18px 14px;
  display: flex; flex-direction: column; gap: 12px;
}
.hm-side__logo {
  height: 14px; width: 88px; border-radius: 4px;
  background: var(--cl-gradient-blue-h);
  margin-bottom: 8px;
}
.hm-side__nav {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--cl-fg-3);
  padding: 8px 10px; border-radius: 8px;
}
.hm-side__nav i { width: 14px; height: 14px; border-radius: 4px; background: #D4D8E1; }
.hm-side__nav.is-active {
  background: rgba(80,144,255,0.10);
  color: var(--cl-blue);
  font-weight: var(--cl-w-semibold);
}
.hm-side__nav.is-active i { background: var(--cl-blue); }

/* Mock — main */
.hm-main { padding: 24px 28px; }
.hm-main__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.hm-main__title {
  font-size: 18px; font-weight: var(--cl-w-bold); color: var(--cl-fg-1);
}
.hm-main__pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--cl-blue-10); color: var(--cl-blue);
  font-size: 11px; font-weight: var(--cl-w-semibold);
  padding: 4px 10px; border-radius: 999px;
}
.hm-main__pill::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cl-blue);
}
.hm-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-bottom: 20px;
}
.hm-stat {
  border: 1px solid #EEF1F8; border-radius: 12px;
  padding: 14px 16px;
  background: #fff;
}
.hm-stat__label { font-size: 11px; color: var(--cl-fg-3); margin-bottom: 4px; }
.hm-stat__num {
  font-family: var(--cl-font-sans);
  font-size: 26px; font-weight: var(--cl-w-bold);
  letter-spacing: -0.02em; color: var(--cl-fg-1);
}
.hm-stat__delta {
  display: inline-block;
  margin-top: 6px;
  font-size: 11px; font-weight: var(--cl-w-semibold);
  color: var(--cl-success);
}
.hm-chart {
  border: 1px solid #EEF1F8; border-radius: 12px;
  padding: 16px; background: #fff;
  height: 180px;
  position: relative;
  overflow: hidden;
}
.hm-chart__svg { position: absolute; inset: 16px; }
.hm-chart__legend {
  position: absolute; top: 16px; right: 18px;
  display: flex; gap: 12px;
  font-size: 11px; color: var(--cl-fg-3);
}
.hm-chart__legend i {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  margin-right: 5px; vertical-align: middle;
}
.hm-chart__legend .l-1 i { background: var(--cl-blue); }
.hm-chart__legend .l-2 i { background: #C9D6F5; }


/* =====================================================================
   3. .cls-metrics — 3-up KPI grid
   ---------------------------------------------------------------------
   Wraps three .cl-card--metric cards in a responsive 3-column grid.
   Wrap the whole thing in <section class="section cls-metrics">.
   ===================================================================== */

.cls-metrics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}


/* =====================================================================
   3b. .cls-cycle — Channel header + 3-step product cycle cards
   ---------------------------------------------------------------------
   Centered eyebrow + heading, a strip of channel icon tiles, then a
   3-up grid of large product cards. Each card stacks a tall image
   header over a body with a numbered step badge, bold title and a
   simple bullet list. Designed to communicate a 3-stage flow.
   ===================================================================== */

.cls-cycle__channels {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 12px 0 0;
  flex-wrap: wrap;
}
.cls-cycle__chip {
  width: 72px;
  height: 72px;
  border: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
  display: inline-block;
  flex-shrink: 0;
}
.cls-cycle__chip img {
  width: 100%;
  height: 100%;
  display: block;
}

.cls-cycle__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1440px;
  margin: 64px auto 0;
}
.cls-cycle__card {
  position: relative;
  border-radius: 32px;
  background: #fff;
  border: 1px solid #E4E4E4;
  box-shadow: 0 0 15px rgba(0,64,193,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.cls-cycle__card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 459 / 344;
  background: #F8F9FC center / cover no-repeat;
}
.cls-cycle__card-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
}
.cls-cycle__step.section__eyebrow {
  align-self: flex-start;
  font-size: 14px;
  padding: 8px 16px 8px 14px;
}
.cls-cycle__card-title {
  margin: 0;
  font-size: 30px;
  font-weight: var(--cl-w-bold);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--cl-fg-1);
}
.cls-cycle__card-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cls-cycle__card-list li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  line-height: 1.6;
  color: #4D5977;
}
.cls-cycle__card-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #4D5977;
}


/* =====================================================================
   4. .cls-testimonial — Story card + stats card
   ---------------------------------------------------------------------
   Centered eyebrow + heading, then a 3:1 grid: wide story card on
   the left (logo, quote, attribution, read-more link) and a narrow
   stats card on the right (two metrics divided by a hairline).
   Optional carousel pagination row below (uses .cl-carousel-* in cl.css).
   ===================================================================== */

.cls-testimonial { max-width: 1180px; margin: 0 auto; }

.cls-testimonial__head {
  text-align: center;
  margin: 0 auto 48px;
  display: flex; flex-direction: column; align-items: center;
}
.cls-testimonial__head .section__eyebrow { margin-bottom: 20px; }
.cls-testimonial__head .section__title { margin: 0; }

.cls-testimonial__grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* --- Story card (left) --- */
.ts-story {
  background: #F8F9FC;
  border-radius: 24px;
  padding: 56px 64px 48px;
  display: flex; flex-direction: column;
  min-height: 100%;
}
.ts-story__logo {
  height: 64px;
  margin-bottom: 36px;
  font-family: var(--cl-font-sans);
  font-weight: 800;
  font-size: 64px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #5090ff;
}
.ts-story__logo img { height: 100%; width: auto; display: block; }
.ts-story__mark {
  color: var(--cl-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px; line-height: 1;
  margin-bottom: 12px;
}
.ts-story__body {
  margin: 0 0 24px;
  font-size: 18.7px;
  line-height: 1.85;
  font-weight: var(--cl-w-bold);
  color: var(--cl-fg-1);
  letter-spacing: 0;
  max-width: 680px;
}
.ts-story__attr {
  display: flex; align-items: center;
  gap: 12px;
  font-size: 12.6px; color: var(--cl-fg-2);
  margin-bottom: 32px;
}
.ts-story__name    { font-weight: var(--cl-w-semibold); color: var(--cl-fg-1); }
.ts-story__sep     { color: var(--cl-fg-3); }
.ts-story__brand   { color: var(--cl-fg-2); font-weight: var(--cl-w-semibold); }
.ts-story__divider { color: rgba(31,41,59,0.18); }
.ts-story__role    { color: var(--cl-fg-2); }
.ts-story__more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: var(--cl-w-semibold);
  color: var(--cl-fg-1); text-decoration: none;
  transition: color .2s, gap .2s;
  margin-top: auto;
}
.ts-story__more svg { width: 16px; height: 16px; transition: transform .2s; }
.ts-story__more:hover { color: var(--cl-blue); gap: 12px; }
.ts-story__more:hover svg { transform: translateX(2px); }

/* --- Stats card (right) --- */
.ts-stats {
  background: #F8F9FC;
  border-radius: 24px;
  padding: 56px 36px;
  display: flex; flex-direction: column;
  justify-content: center;
  gap: 32px;
}
.ts-stat {
  display: flex; flex-direction: column;
  gap: 10px;
}
.ts-stat__num {
  font-family: var(--cl-font-sans);
  font-weight: var(--cl-w-bold);
  font-size: 53px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cl-fg-1);
  display: inline-flex; align-items: baseline;
}
.ts-stat__arrow {
  font-weight: var(--cl-w-bold);
  margin-right: 4px;
  color: var(--cl-fg-1);
}
.ts-stat__label {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--cl-fg-2);
  max-width: 18ch;
}
.ts-stats__rule {
  height: 1px;
  background: rgba(31,41,59,0.10);
  border: 0; margin: 0;
}

.cls-testimonial__controls { margin-top: 40px; display: flex; justify-content: center; }


/* =====================================================================
   4b. .cls-hero-split — Left-text / right-image product hero
   ---------------------------------------------------------------------
   Two-column hero: copy stack on the left, full-bleed product image
   (or rich mock) on the right. Used for product-page heroes (MAAC, CAAC).
   ===================================================================== */

.cls-hero-split {
  position: relative;
  padding: 96px 96px 96px;
  background: #fff;
  overflow: hidden;
}
.cls-hero-split__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}
.cls-hero-split__copy { display: flex; flex-direction: column; align-items: flex-start; }
.cls-hero-split__eyebrow {
  font-size: 22px;
  font-weight: var(--cl-w-medium);
  letter-spacing: 0.005em;
  margin: 0 0 20px;
  font-family: var(--cl-font-sans);
  background: var(--cl-gradient-blue-h);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  width: fit-content;
}
.cls-hero-split__title {
  font-size: 56px;
  line-height: 1.25;
  font-weight: var(--cl-w-bold);
  color: var(--cl-fg-1);
  margin: 0 0 28px;
  letter-spacing: -0.01em;
  text-wrap: balance;
  line-break: strict;
  overflow-wrap: normal;
}
.cls-hero-split__sub {
  font-size: 17px;
  line-height: 1.85;
  color: var(--cl-fg-2);
  margin: 0 0 40px;
  max-width: 540px;
}
.cls-hero-split__image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}
.cls-hero-split__image img {
  display: block; width: 100%; height: auto; border-radius: 28px;
}

/* =====================================================================
   5. .cls-logos — Logo trust strip
   ===================================================================== */

.cls-logos {
  padding: 64px 0;
  background: #fff;
  overflow: hidden;
}
.cls-logos__title {
  text-align: center;
  font-size: 14px;
  font-weight: var(--cl-w-medium);
  color: var(--cl-fg-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 32px;
}
.cls-logos__row {
  display: flex; align-items: center; justify-content: space-around;
  gap: 48px; flex-wrap: nowrap; overflow: hidden;
  max-width: 1280px; margin: 0 auto;
  padding: 0 96px;
}
.cls-logos__row span {
  font-family: var(--cl-font-sans);
  font-size: 22px;
  font-weight: var(--cl-w-bold);
  color: #C2C7D0;
  letter-spacing: 0.02em;
  transition: color .2s;
}
.cls-logos__row span:hover { color: var(--cl-fg-2); }


/* =====================================================================
   6. .cls-carousel — Featured-capabilities horizontal card carousel
   ---------------------------------------------------------------------
   Wraps .cl-card--carousel cards in a 3-up horizontal track with
   prev/next + dots (uses .cl-carousel-* from cl.css).
   Includes .cl-mock-* illustrations used inside each card.
   ===================================================================== */

.cls-carousel { max-width: 1280px; margin: 0 auto; }
.cls-carousel__viewport { overflow: hidden; width: 100%; }
.cls-carousel__row {
  display: flex; gap: 32px; align-items: start;
  transition: transform .45s cubic-bezier(.65,.05,.36,1);
  will-change: transform;
}
.cls-carousel__row.no-anim { transition: none; }
.cls-carousel__row > article { flex: 0 0 calc((100% - 64px) / 3); }
.cls-carousel__controls { display: flex; justify-content: center; margin-top: 48px; }

/* Carousel mock illustrations */
.cl-carousel-stage{ position: relative; overflow: hidden; }
.cl-illus{ position: relative; width: 100%; height: 100%; overflow: hidden; background: #F8F9FC; }
.cl-illus--bg1, .cl-illus--bg2, .cl-illus--bg3{ background: #F8F9FC; }
.cl-mock-wrap{
  position: absolute; border-radius: 18px;
  background: linear-gradient(135deg, #DCE8FB 0%, #E2DDF8 100%);
  padding: 10px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.95), 0 12px 28px rgba(40,55,100,.10), 0 2px 6px rgba(40,55,100,.05);
}
.cl-mock{ position: relative; width: 100%; height: 100%; background: #fff; border-radius: 10px; overflow: hidden; font-family: var(--cl-font-sans); }
.cl-mock-wrap--1 { top: 28px; left: 32px; right: -90px; bottom: -40px; }
.cl-mock-1 .m1-topbar { height: 22px; background: #F4F6FB; border-bottom: 1px solid #E8ECF4; display: flex; align-items: center; gap: 4px; padding: 0 8px; }
.cl-mock-1 .m1-topbar i { width: 6px; height: 6px; border-radius: 50%; background: #D4D8E1; }
.cl-mock-1 .m1-body { position: relative; padding: 14px 12px; height: calc(100% - 22px); background: repeating-linear-gradient(0deg, transparent 0 22px, #F1F4FA 22px 23px), #fff; }
.cl-mock-1 .m1-card { position: absolute; background: #fff; border-radius: 10px; padding: 10px 12px 10px 34px; width: 168px; box-shadow: 0 0 0 1px rgba(255,255,255,.95) inset, 0 8px 20px rgba(40,55,100,.10), 0 2px 6px rgba(40,55,100,.05); top: 12px; left: 14px; isolation: isolate; }
.cl-mock-1 .m1-card::before { content: ""; position: absolute; left: 10px; top: 10px; width: 16px; height: 16px; border-radius: 4px; background: var(--cl-gradient-blue-h); }
.cl-mock-1 .m1-h   { font-size: 9px; font-weight: 700; color: #1B1F2A; margin-bottom: 4px; }
.cl-mock-1 .m1-sub { font-size: 7.5px; color: #7A8094; line-height: 1.4; }
.cl-mock-1 .m1-bubble { position: absolute; background: #fff; border-radius: 12px; padding: 8px 10px 8px 28px; font-size: 7.5px; color: #1B1F2A; line-height: 1.45; box-shadow: 0 0 0 1px rgba(255,255,255,.95) inset, 0 8px 20px rgba(40,55,100,.10), 0 2px 6px rgba(40,55,100,.05); width: 168px; bottom: 60px; left: 14px; isolation: isolate; }
.cl-mock-1 .m1-bubble::before { content: "LINE"; position: absolute; left: 8px; top: 8px; width: 14px; height: 14px; border-radius: 50%; background: #06C755; color: #fff; font-size: 5px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.cl-mock-wrap--2 { top: 32px; left: 36px; right: -40px; bottom: -50px; }
.cl-mock-2 .m2-head { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; border-bottom: 1px solid #EEF1F8; }
.cl-mock-2 .m2-title { display: flex; align-items: center; gap: 5px; font-size: 9px; font-weight: 700; color: #1B1F2A; }
.cl-mock-2 .m2-title svg { width: 10px; height: 10px; color: #8020F8; }
.cl-mock-2 .m2-close { width: 12px; height: 12px; color: #9AA0AE; font-size: 11px; line-height: 1; }
.cl-mock-2 .m2-body { padding: 10px 12px; }
.cl-mock-2 .m2-row  { display: flex; align-items: center; gap: 4px; font-size: 8px; font-weight: 600; color: #1B1F2A; margin-bottom: 6px; }
.cl-mock-2 .m2-row .m2-pill { background: #FEF3CD; color: #B26F00; font-size: 6.5px; font-weight: 700; padding: 1px 5px; border-radius: 3px; margin-left: auto; }
.cl-mock-2 .m2-text { font-size: 7.5px; color: #444A5A; line-height: 1.55; margin: 6px 0 10px; }
.cl-mock-2 .m2-input { background: #F4F6FB; border: 1px solid #E8ECF4; border-radius: 6px; padding: 5px 7px; font-size: 7px; color: #9AA0AE; display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.cl-mock-2 .m2-actions { display: flex; gap: 6px; justify-content: flex-end; }
.cl-mock-2 .m2-btn { font-size: 7px; font-weight: 600; padding: 4px 10px; border-radius: 5px; }
.cl-mock-2 .m2-btn--ghost { background: #fff; color: #444A5A; border: 1px solid #DCE0EA; }
.cl-mock-2 .m2-btn--solid { background: var(--cl-blue); color: #fff; }
.cl-mock-wrap--3 { top: 28px; left: 28px; right: -130px; bottom: -50px; }
.cl-mock-3 .m3-grid { display: grid; grid-template-columns: 60px 1fr; height: 100%; }
.cl-mock-3 .m3-side { background: #F4F6FB; border-right: 1px solid #EEF1F8; padding: 10px 8px; display: flex; flex-direction: column; gap: 8px; }
.cl-mock-3 .m3-side .m3-logo { height: 8px; width: 32px; border-radius: 3px; background: var(--cl-gradient-blue-h); margin-bottom: 4px; }
.cl-mock-3 .m3-side .m3-nav { display: flex; align-items: center; gap: 4px; font-size: 6.5px; color: #7A8094; }
.cl-mock-3 .m3-side .m3-nav i { width: 6px; height: 6px; border-radius: 2px; background: #C8CCD3; }
.cl-mock-3 .m3-side .m3-nav.is-active { color: #1B1F2A; font-weight: 600; }
.cl-mock-3 .m3-side .m3-nav.is-active i { background: var(--cl-blue); }
.cl-mock-3 .m3-main { padding: 10px 12px; }
.cl-mock-3 .m3-h    { font-size: 9px; font-weight: 700; color: #1B1F2A; margin-bottom: 8px; }
.cl-mock-3 .m3-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 8px; }
.cl-mock-3 .m3-stat  { border: 1px solid #EEF1F8; border-radius: 6px; padding: 6px 8px; background: #fff; }
.cl-mock-3 .m3-stat .m3-label { font-size: 6px; color: #9AA0AE; margin-bottom: 2px; }
.cl-mock-3 .m3-stat .m3-num { font-size: 12px; font-weight: 800; color: #1B1F2A; letter-spacing: -.3px; }
.cl-mock-3 .m3-stat .m3-bar { height: 3px; border-radius: 999px; background: #EEF1F8; margin-top: 4px; position: relative; overflow: hidden; }
.cl-mock-3 .m3-stat .m3-bar::before { content: ""; position: absolute; inset: 0; background: var(--cl-gradient-blue-h); width: 60%; }
.cl-mock-3 .m3-search { height: 14px; border: 1px solid #EEF1F8; border-radius: 4px; background: #F4F6FB; margin-bottom: 6px; }
.cl-mock-3 .m3-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; padding: 5px 0; border-bottom: 1px solid #F1F4FA; }
.cl-mock-3 .m3-row i { height: 5px; border-radius: 2px; background: #DCE0EA; }
.cl-mock-3 .m3-row.is-tagged i:first-child { background: #FEF3CD; color: #B26F00; height: 7px; }


/* =====================================================================
   7. .cls-pillars — Product-pillar bento (2-up + 3-up grid)
   ---------------------------------------------------------------------
   Top row: 2 wide bento cards with rich UI mocks.
   Bottom row: 3 narrow bento cards.
   Includes .mk-* mock illustrations used inside each card.
   ===================================================================== */

.cls-pillars__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 1280px; margin: 0 auto 24px;
}
.cls-pillars__grid--three { grid-template-columns: 1fr 1fr 1fr; margin-bottom: 0; }
.cls-pillars__card {
  background: #fff;
  border: 1px solid var(--cl-border-soft);
  border-radius: 24px;
  padding: 28px;
  display: flex; flex-direction: column;
}
.cls-pillars__stage {
  background: #F4F6FB; border-radius: 16px;
  padding: 32px; height: 320px; position: relative; overflow: hidden;
  margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center;
}
.cls-pillars__card--narrow .cls-pillars__stage { height: 220px; padding: 22px; }
.cls-pillars__title { margin: 0 0 8px; font-size: 19px; font-weight: var(--cl-w-bold); color: var(--cl-fg-1); letter-spacing: -0.005em; line-height: 1.4; }
.cls-pillars__desc  { margin: 0; font-size: 14px; line-height: 1.7; color: var(--cl-fg-2); }

/* Mock 1: Chat */
.mk-chat { width: 280px; background: #fff; border-radius: 14px; box-shadow: 0 8px 24px rgba(20,30,60,0.08); overflow: hidden; position: relative; font-size: 11px; }
.mk-chat__bar { background: var(--cl-blue); color: #fff; padding: 10px 12px; display: flex; align-items: center; gap: 6px; font-weight: var(--cl-w-semibold); }
.mk-chat__bar svg { width: 12px; height: 12px; }
.mk-chat__bar .spacer { flex: 1; }
.mk-chat__body { padding: 14px 12px 18px; display: flex; flex-direction: column; gap: 8px; }
.mk-chat__row { display: flex; gap: 8px; align-items: flex-end; }
.mk-chat__row--user { justify-content: flex-end; }
.mk-chat__avatar { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, #FFD2B5, #F8AE7E); flex-shrink: 0; position: relative; }
.mk-chat__avatar::after { content: ""; position: absolute; inset: 4px 6px 0; border-radius: 50% 50% 30% 30%; background: rgba(0,0,0,0.18); }
.mk-chat__name { font-size: 10px; color: var(--cl-fg-3); margin-bottom: 2px; }
.mk-chat__bubble { background: #F4F6FB; border-radius: 12px; padding: 8px 12px; color: var(--cl-fg-1); max-width: 72%; line-height: 1.5; }
.mk-chat__bubble--agent { background: #fff; border: 1px solid #E5E9F2; }
.mk-chat__bubble strong { color: var(--cl-blue); display: block; margin-top: 4px; font-weight: var(--cl-w-semibold); }
.mk-chat__agent-tag { font-size: 10px; color: var(--cl-fg-3); margin: 4px 0 -2px 32px; }
.mk-chat__pill { align-self: flex-end; margin-top: 4px; background: var(--cl-blue); color: #fff; padding: 6px 12px 6px 8px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; font-weight: var(--cl-w-semibold); font-size: 11px; box-shadow: 0 4px 10px rgba(80,144,255,0.32); }
.mk-chat__pill::before { content: ""; width: 14px; height: 14px; border-radius: 50%; background: #fff; background-image: radial-gradient(circle, var(--cl-blue) 35%, #fff 36%); }
.mk-chat__bot { position: absolute; left: -22px; bottom: 60px; width: 44px; height: 44px; border-radius: 50%; background: #1F2937; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(0,0,0,0.22); }
.mk-chat__bot svg { width: 22px; height: 22px; }

/* Mock 2: Search */
.mk-search { width: 320px; height: 100%; max-height: 280px; background: #fff; border-radius: 12px; box-shadow: 0 8px 24px rgba(20,30,60,0.08); overflow: hidden; position: relative; display: flex; flex-direction: column; font-size: 10px; }
.mk-search__head { padding: 12px 14px 10px; border-bottom: 1px solid #EEF1F7; }
.mk-search__title { font-weight: var(--cl-w-semibold); color: var(--cl-fg-1); font-size: 12px; margin-bottom: 8px; }
.mk-search__input { background: #F4F6FB; border-radius: 6px; padding: 6px 10px; color: var(--cl-fg-3); display: flex; align-items: center; gap: 6px; }
.mk-search__input::after { content: "▾"; margin-left: auto; opacity: .5; }
.mk-search__rec { margin: 10px 14px 0; background: #fff; border: 1px solid #E5E9F2; border-radius: 8px; padding: 8px 10px; position: relative; }
.mk-search__rec-head { display: flex; align-items: center; gap: 5px; color: var(--cl-blue); font-weight: var(--cl-w-semibold); font-size: 10px; }
.mk-search__rec-head::before { content: "✦"; font-size: 10px; color: var(--cl-blue); }
.mk-search__rec-x { position: absolute; right: 8px; top: 8px; color: var(--cl-fg-3); font-size: 11px; line-height: 1; }
.mk-search__rec-text { color: var(--cl-fg-3); margin-top: 4px; line-height: 1.5; }
.mk-search__list-h { padding: 10px 14px 4px; font-size: 10px; color: var(--cl-fg-3); }
.mk-search__list { padding: 0 14px; flex: 1; overflow: hidden; }
.mk-search__item { display: grid; grid-template-columns: 28px 1fr auto; gap: 8px; align-items: center; padding: 6px 0; border-bottom: 1px solid #EEF1F7; }
.mk-search__thumb { width: 28px; height: 28px; border-radius: 4px; background: linear-gradient(135deg, #E8EEFB, #C9D6F5); }
.mk-search__name { color: var(--cl-fg-1); font-size: 10px; }
.mk-search__name small { display: block; color: var(--cl-fg-3); font-size: 9px; }
.mk-search__price { color: var(--cl-fg-2); font-size: 10px; }
.mk-search__foot { padding: 8px 14px; font-size: 10px; color: var(--cl-fg-3); display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #EEF1F7; }
.mk-search__foot::after { content: "▾"; opacity: .5; }
.mk-search__rail { position: absolute; left: 0; top: 0; bottom: 0; width: 22px; background: #fff; border-right: 1px solid #EEF1F7; display: flex; flex-direction: column; align-items: center; padding-top: 36px; gap: 8px; }
.mk-search__rail i { width: 14px; height: 14px; border-radius: 3px; background: #DCE3F2; display: block; }
.mk-search__rail i.is-on { background: var(--cl-blue); }
.mk-chat-side { position: absolute; right: -10px; top: 70px; width: 200px; background: var(--cl-blue); border-radius: 12px; padding: 12px; color: #fff; box-shadow: 0 12px 28px rgba(80,144,255,0.28); font-size: 10px; }
.mk-chat-side__head { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.85); font-size: 10px; margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.18); }
.mk-chat-side__head::after { content: "▾"; margin-left: auto; opacity: .8; }
.mk-chat-side__row { display: flex; gap: 6px; align-items: flex-start; margin-top: 8px; }
.mk-chat-side__avatar { width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(135deg, #FFD2B5, #F8AE7E); flex-shrink: 0; }
.mk-chat-side__name { font-weight: var(--cl-w-semibold); font-size: 10px; margin-bottom: 2px; }
.mk-chat-side__msg { background: rgba(255,255,255,0.14); border-radius: 8px; padding: 6px 8px; line-height: 1.5; }
.mk-chat-side__msg em { font-style: normal; background: rgba(255,255,255,0.30); padding: 0 2px; border-radius: 2px; }
.mk-chat-side__time { font-size: 9px; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* Mock 3: Inbox */
.mk-inbox { width: 100%; height: 100%; display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; position: relative; }
.mk-inbox__list { background: #fff; border-radius: 10px; box-shadow: 0 6px 18px rgba(20,30,60,0.06); padding: 10px 12px; font-size: 10px; }
.mk-inbox__list-h { font-weight: var(--cl-w-semibold); color: var(--cl-fg-1); font-size: 11px; }
.mk-inbox__tabs { display: flex; gap: 8px; margin: 8px 0 6px; color: var(--cl-fg-3); font-size: 9px; }
.mk-inbox__tabs span:first-child { color: var(--cl-blue); font-weight: var(--cl-w-semibold); }
.mk-inbox__row { display: grid; grid-template-columns: 18px 1fr; gap: 6px; align-items: center; padding: 5px 0; border-top: 1px solid #EEF1F7; }
.mk-inbox__avatar { width: 18px; height: 18px; border-radius: 50%; background: #DCE3F2; }
.mk-inbox__avatar.a-1 { background: linear-gradient(135deg, #FFD2B5, #F8AE7E); }
.mk-inbox__avatar.a-2 { background: linear-gradient(135deg, #C7F0D5, #95D9AC); }
.mk-inbox__avatar.a-3 { background: linear-gradient(135deg, #E8DCFB, #C5B0F2); }
.mk-inbox__row b { color: var(--cl-fg-1); font-size: 10px; display: block; }
.mk-inbox__row span { color: var(--cl-fg-3); font-size: 9px; }
.mk-inbox__channels { display: flex; flex-direction: column; gap: 6px; }
.mk-inbox__chan { background: #fff; border-radius: 999px; padding: 5px 10px 5px 5px; display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: var(--cl-fg-1); font-weight: var(--cl-w-semibold); box-shadow: 0 4px 12px rgba(20,30,60,0.06); }
.mk-inbox__chan i { width: 18px; height: 18px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 9px; font-weight: 700; }
.mk-inbox__chan i.c-line { background: #06C755; }
.mk-inbox__chan i.c-fb { background: #0084FF; }
.mk-inbox__chan i.c-ig { background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF); }
.mk-inbox__chan i.c-wa { background: #25D366; }

/* Mock 4: Profile */
.mk-prof { width: 100%; height: 100%; background: #fff; border-radius: 10px; box-shadow: 0 6px 18px rgba(20,30,60,0.06); padding: 10px 12px; display: flex; flex-direction: column; font-size: 10px; }
.mk-prof__head { display: grid; grid-template-columns: 26px 1fr auto; gap: 8px; align-items: center; padding-bottom: 6px; }
.mk-prof__avatar { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, #C9D6F5, #98B6F2); }
.mk-prof__name b { color: var(--cl-fg-1); font-size: 11px; }
.mk-prof__name span { display: block; font-size: 9px; color: var(--cl-fg-3); }
.mk-prof__edit { width: 18px; height: 18px; border-radius: 4px; background: #F4F6FB; display: inline-flex; align-items: center; justify-content: center; color: var(--cl-fg-3); font-size: 9px; }
.mk-prof__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; flex: 1; min-height: 0; }
.mk-prof__col { border-top: 1px solid #EEF1F7; padding-top: 6px; }
.mk-prof__col h6 { margin: 0 0 4px; font-size: 10px; color: var(--cl-fg-1); font-weight: var(--cl-w-semibold); }
.mk-prof__row { display: flex; justify-content: space-between; padding: 3px 0; border-bottom: 1px solid #F4F6FB; font-size: 9px; }
.mk-prof__row span:first-child { color: var(--cl-fg-3); }
.mk-prof__row span:last-child { color: var(--cl-fg-1); }
.mk-prof__chip { display: inline-flex; align-items: center; gap: 4px; font-size: 9px; padding: 2px 6px; background: #E6F4EA; color: #1F8B45; border-radius: 999px; }
.mk-prof__chip.is-pending { background: #FFF1D6; color: #B07000; }

/* Mock 5: Voice */
.mk-voice { width: 100%; height: 100%; display: flex; flex-direction: column; gap: 10px; }
.mk-voice__call { background: #fff; border-radius: 12px; padding: 10px 12px; display: flex; align-items: center; gap: 10px; box-shadow: 0 6px 18px rgba(20,30,60,0.06); }
.mk-voice__avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, #FFD2B5, #F8AE7E); flex-shrink: 0; }
.mk-voice__name b { color: var(--cl-fg-1); font-size: 11px; display: block; }
.mk-voice__name span { font-size: 9px; color: var(--cl-fg-3); }
.mk-voice__btns { margin-left: auto; display: flex; gap: 6px; }
.mk-voice__btn { width: 24px; height: 24px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 11px; }
.mk-voice__btn--end { background: #E04444; transform: rotate(135deg); }
.mk-voice__btn--call { background: #1FB36C; }
.mk-voice__rec { background: #fff; border-radius: 10px; padding: 10px 12px; box-shadow: 0 6px 18px rgba(20,30,60,0.06); flex: 1; font-size: 10px; display: flex; flex-direction: column; gap: 4px; }
.mk-voice__rec-h { display: flex; align-items: center; gap: 6px; font-weight: var(--cl-w-semibold); color: var(--cl-fg-1); font-size: 11px; padding-bottom: 4px; border-bottom: 1px solid #EEF1F7; margin-bottom: 4px; }
.mk-voice__rec-h::before { content: ""; width: 14px; height: 10px; background: #1F2937; border-radius: 2px; flex-shrink: 0; }
.mk-voice__rec-row { display: flex; justify-content: space-between; color: var(--cl-fg-3); font-size: 9px; }
.mk-voice__rec-row b { color: var(--cl-fg-1); font-weight: var(--cl-w-medium); }
.mk-voice__sum { margin-top: 4px; padding-top: 6px; border-top: 1px solid #EEF1F7; color: var(--cl-fg-2); line-height: 1.55; font-size: 9.5px; }
.mk-voice__sum-h { display: flex; align-items: center; gap: 4px; color: var(--cl-blue); font-weight: var(--cl-w-semibold); font-size: 10px; margin-bottom: 4px; }
.mk-voice__sum-h::before { content: "✦"; font-size: 10px; }


/* =====================================================================
   8. .cls-accordion — Accordion-split (heading head + .cl-accordion-split)
   ---------------------------------------------------------------------
   Wraps .cl-accordion-split (from cl.css) in a centered max-width container.
   ===================================================================== */

.cls-accordion { max-width: 1180px; margin: 0 auto; }


/* =====================================================================
   9. .cls-cta — Final CTA band
   ---------------------------------------------------------------------
   Full-width band with a rounded card (.cl-cta) inside.
   The .cl-cta inner uses an external background image — adjust the
   path or replace with a solid gradient as needed.
   ===================================================================== */

.cls-cta {
  padding: 100px;
  background: #fff;
  display: flex;
  justify-content: center;
}
.cl-cta {
  position: relative;
  width: 100%;
  max-width: 1440px;
  aspect-ratio: 1440 / 497;
  border-radius: 40px;
  overflow: hidden;
  isolation: isolate;
  background:
    url("assets/imagery/cta-bg.png") center/cover no-repeat,
    #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  box-sizing: border-box;
}
/* Soft blue "OverlayBlur" ovals — disabled now that the figma bg image
   carries the full gradient. Keep classes for backward compatibility. */
.cl-cta__blob {
  display: none;
}
/* Tilted multiply pill (kept subtle — disabled by default; the figma bg
   already carries the gradient atmosphere). */
.cl-cta__tilt {
  display: none;
}
.cl-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 0 24px;
  text-align: center;
  max-width: 814px;
}
.cl-cta__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cl-cta__title {
  margin: 0;
  font-family: var(--cl-font-sans);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.4;
  letter-spacing: 0;
  color: rgb(17,31,65);
  text-wrap: balance;
}
.cl-cta__sub {
  margin: 0;
  font-family: var(--cl-font-sans);
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -1px;
  color: rgb(17,31,65);
}
.cl-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}


/* =====================================================================
   9b. .cls-cta-form — CTA band with inline lead-gen form
   ---------------------------------------------------------------------
   Wide rounded card with a layered blue→white gradient. Left column is
   a copy stack (title + checklist), right column is a glassy framed
   panel wrapping the form grid (4 rows: 2-up / 2-up / 1 / 2-up).
   ===================================================================== */

.cls-cta-form {
  padding: 60px 96px;
  background: #fff;
}
.cls-cta-form__card {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 320px;
  border-radius: 40px;
  overflow: hidden;
  padding: 56px 84px;
  background:
    linear-gradient(110deg, #F5F8FF 0%, #F5F8FF 55%, #DCE7FF 78%, #6E9EFF 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr);
  gap: 80px;
  align-items: stretch;
}
.cls-cta-form__copy {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-self: center;
}
.cls-cta-form__panel {
  align-self: start;
  margin-top: -20px;
  margin-bottom: -280px; /* form bleeds past bottom — card clips it */
}
.cls-cta-form__title {
  margin: 0;
  font-family: var(--cl-font-sans);
  font-size: 48px;
  font-weight: var(--cl-w-bold);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000;
  text-wrap: balance;
}
.cls-cta-form__checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cls-cta-form__checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--cl-font-sans);
  font-size: 18px;
  font-weight: var(--cl-w-medium);
  line-height: 1.5;
  color: var(--cl-fg-1);
}
.cls-cta-form__checks li::before {
  content: "";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #EAF1FE;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235090FF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 12.5 10 17.5 19 7.5'/></svg>");
  background-size: 16px 16px;
  background-position: center;
  background-repeat: no-repeat;
}
.cls-cta-form__panel {
  position: relative;
  border-radius: 28px;
  padding: 12px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 18px 50px rgba(80,144,255,0.18);
  backdrop-filter: blur(6px);
}
.cls-cta-form__form {
  background: #fff;
  border-radius: 20px;
  padding: 32px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cls-cta-form__form-title {
  margin: 0 auto 8px;
  padding: 14px 32px;
  border-radius: 12px;
  background: #EEF2FF;
  font-family: var(--cl-font-sans);
  font-size: 20px;
  font-weight: var(--cl-w-bold);
  color: var(--cl-fg-1);
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
.cls-cta-form__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cls-cta-form__field--full { /* legacy hook, no-op in 1-col layout */ }
.cls-cta-form__label {
  font-family: var(--cl-font-sans);
  font-size: 15px;
  font-weight: var(--cl-w-bold);
  line-height: 1.5;
  color: var(--cl-fg-1);
}
.cls-cta-form__label .cl-required { color: #E5484D; margin-left: 2px; }
.cls-cta-form__hint {
  font-size: 13px;
  color: var(--cl-fg-3);
  margin: 0 0 4px;
}
.cls-cta-form__input,
.cls-cta-form__select {
  height: 36px;
  border: 0;
  border-bottom: 1px solid var(--cl-border);
  background: transparent;
  border-radius: 0;
  padding: 0 2px;
  font-family: inherit;
  font-size: 15px;
  color: var(--cl-fg-1);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.cls-cta-form__input::placeholder,
.cls-cta-form__select:invalid { color: var(--cl-fg-3); }
.cls-cta-form__input:focus,
.cls-cta-form__select:focus {
  border-bottom-color: var(--cl-blue);
  box-shadow: 0 1px 0 0 var(--cl-blue);
}
.cls-cta-form__select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--cl-fg-2) 50%),
    linear-gradient(135deg, var(--cl-fg-2) 50%, transparent 50%);
  background-position: calc(100% - 12px) 14px, calc(100% - 6px) 14px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}


/* =====================================================================
   10. .cls-key-feature — Image + copy + bullet rows (Key Features)
   ---------------------------------------------------------------------
   Section header (eyebrow pill + title + desc), then a stack of
   image/text rows. Each row is a 2-col grid (image left, copy right).
   Add .cls-key-feature__row--reverse to flip a row.
   ===================================================================== */

.cls-key-feature {
  padding: 100px 96px 100px;
  background: #fff;
}
.cls-key-feature__inner {
  max-width: 1440px;
  margin: 0 auto;
}
.cls-key-feature__rows {
  display: flex;
  flex-direction: column;
  gap: 156px;
}
.cls-key-feature__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cls-key-feature__row--reverse .cls-key-feature__media { order: 2; }
.cls-key-feature__media {
  position: relative;
  aspect-ratio: 690 / 518;
  border-radius: 32px;
  overflow: hidden;
  background: var(--cl-bg-tint);
}
.cls-key-feature__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cls-key-feature__copy {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 8px;
}
.cls-key-feature__title {
  margin: 0;
  font-size: 40px;
  font-weight: var(--cl-w-bold);
  line-height: 1.3;
  letter-spacing: -0.012em;
  color: var(--cl-fg-1);
  text-wrap: balance;
}
.cls-key-feature__desc {
  margin: 0;
  font-size: 17.6px;
  line-height: 1.6;
  color: var(--cl-fg-2);
}
.cls-key-feature__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cls-key-feature__bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 18px;
  line-height: 2;
  color: var(--cl-fg-1);
}
.cls-key-feature__bullets li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.95em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cl-fg-1);
}

/* =====================================================================
   11. .cls-funnel-grid — 4-up icon card grid (tinted background)
   ---------------------------------------------------------------------
   Light gray section background with 4 (or 3) white cards. Each card
   stacks a small tinted icon tile, a bold H3 title, and a description.
   Designed for funnel / journey-step / category sections. Pairs with
   the standard .section__head (pill + title + desc).
   ===================================================================== */

.cls-funnel-grid {
  background: var(--cl-bg-tint);
}
.cls-funnel-grid__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: stretch;
}
.cls-funnel-grid__grid--three { grid-template-columns: repeat(3, 1fr); }

.cls-funnel-card {
  background: #fff;
  border-radius: 32px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cls-funnel-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(80,144,255,0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cl-blue);
  flex-shrink: 0;
}
.cls-funnel-card__icon svg { width: 28px; height: 28px; }
.cls-funnel-card__title {
  margin: 0;
  font-size: 24px;
  font-weight: var(--cl-w-bold);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--cl-fg-1);
}
.cls-funnel-card__desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--cl-fg-2);
}


/* =====================================================================
   12. .cls-half-icon-grid — Left title+CTA / right 2×2 icon cards
   ---------------------------------------------------------------------
   Asymmetric two-column band: left column is an eyebrow + title +
   description + CTA stack; right column is a 2×2 grid of icon cards.
   Reuses .cls-funnel-card for the cards (drop them in as-is).
   Use on industry pages, channel pages, or any "explore more" band.
   ===================================================================== */

/* Shared utility: gradient text fragment used in section titles.
   Use as <em class="cl-grad-text">…</em>. inline-block + small padding
   prevents background-clip:text from cropping CJK descenders. */
.cl-grad-text {
  font-style: normal;
  display: inline-block;
  padding: 0 0.04em 0.08em;
  background: var(--cl-gradient-blue-h);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.cls-half-icon-grid {
  background: var(--cl-bg-tint);
}
.cls-half-icon-grid__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.cls-half-icon-grid__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 8px 40px 0 0;
}
.cls-half-icon-grid__copy .section__eyebrow { margin-bottom: 4px; }
.cls-half-icon-grid__title {
  margin: 0;
  font-size: 40px;
  font-weight: var(--cl-w-bold);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--cl-fg-1);
  text-wrap: balance;
}
.cls-half-icon-grid__desc {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--cl-fg-2);
  max-width: 480px;
}
.cls-half-icon-grid__cta { margin-top: 12px; }
.cls-half-icon-grid__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}


/* =====================================================================
   13. .cls-pain-points — 3-up problem-statement band (orange icon tiles)
   ---------------------------------------------------------------------
   Centered header (eyebrow + bold title) on a white background, followed
   by three icon-feature cards. The icon tile uses a brand-orange tint
   (10%) with a solid orange glyph to flag "problem / risk" rather than
   "feature". Use early in an industry or solution page to frame why the
   topic matters before the product capabilities.
   ===================================================================== */

.cls-pain-points {
  background: var(--cl-bg, #fff);
}
.cls-pain-points__head {
  max-width: 880px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.cls-pain-points__head .section__eyebrow { margin: 0; }
.cls-pain-points__title {
  margin: 0;
  font-size: 40px;
  font-weight: var(--cl-w-bold);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--cl-fg-1);
  text-wrap: balance;
}
.cls-pain-points__grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.cls-pain-card {
  background: #F8F9FC;
  border-radius: 32px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.cls-pain-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(233, 87, 59, 0.10);
  color: #E9573B;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cls-pain-card__icon svg {
  width: 28px;
  height: 28px;
}
.cls-pain-card__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cls-pain-card__title {
  margin: 0;
  font-size: 32px;
  font-weight: var(--cl-w-bold);
  line-height: 1.2;
  color: var(--cl-fg-1);
  text-wrap: balance;
}
.cls-pain-card__desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--cl-fg-2);
}


/* =====================================================================
   RESPONSIVE
   ===================================================================== */

@media (max-width: 1100px) {
  .section          { padding: 96px 48px; }
  .section--tight   { padding: 64px 48px; }
  .cls-hero         { padding: 96px 48px 48px; }
}

@media (max-width: 1100px) {
  .cls-pillars__grid,
  .cls-pillars__grid--three { grid-template-columns: 1fr; }
  .cls-carousel__row > article { flex-basis: calc((100% - 32px) / 2); }
  .cls-cta { padding: 64px 48px 96px; }
  .cls-cta-form                 { padding: 64px 32px; }
  .cls-cta-form__card           { grid-template-columns: 1fr; padding: 56px 32px; gap: 40px; }
  .cls-cta-form__title          { font-size: 34px; }
  .cls-cta-form__panel          { padding: 16px; border-radius: 32px; margin: 0; align-self: stretch; }
  .cls-cta-form__form           { padding: 28px; border-radius: 22px; gap: 16px; }
  .cls-cta-form__field          { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  .cls-hero__title  { font-size: 44px; }
  .section__title   { font-size: 32px; }
  .cls-key-feature                  { padding: 72px 32px; }
  .cls-key-feature__row             { grid-template-columns: 1fr; gap: 32px; }
  .cls-key-feature__row--reverse .cls-key-feature__media { order: 0; }
  .cls-key-feature__title           { font-size: 30px; }
  .cls-key-feature__copy            { padding: 0; }
  .cls-carousel__row > article { flex-basis: 100%; }
  .cls-logos__row { gap: 28px; padding: 0 32px; }
  .cls-metrics__grid    { grid-template-columns: 1fr; }
  .cls-cycle__grid      { grid-template-columns: 1fr; }
  .cls-testimonial__grid { grid-template-columns: 1fr; }
  .ts-story         { padding: 40px 32px 32px; }
  .ts-stats         { flex-direction: row; gap: 24px; padding: 32px; }
  .ts-stats__rule   { width: 1px; height: auto; }
  .ts-stat          { flex: 1; }
  .cls-funnel-grid__grid { grid-template-columns: repeat(2, 1fr); }
  .cls-half-icon-grid__inner { grid-template-columns: 1fr; gap: 56px; }
  .cls-half-icon-grid__copy { padding-right: 0; max-width: 640px; }
}

@media (max-width: 640px) {
  .cls-funnel-grid__grid,
  .cls-funnel-grid__grid--three,
  .cls-half-icon-grid__grid { grid-template-columns: 1fr; }
  .cls-funnel-card { padding: 36px 28px; }
  .cls-half-icon-grid__title { font-size: 32px; }
  .cls-pain-points__title { font-size: 32px; }
  .cls-pain-card { padding: 36px 28px; gap: 28px; }
  .cls-pain-card__title { font-size: 26px; }
}

@media (max-width: 980px) {
  .cls-pain-points__grid { grid-template-columns: 1fr; }
}
