/* ============================================================
   clients.css — TechVahni Clients Page
   Extends style.css tokens. All class names prefixed cl-
   ============================================================ */

/* ── Shared Layout ─────────────────────────────────────────── */
.cl-container {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
}

.cl-section {
  padding: 96px 0;
}

.cl-section-tinted {
  background:
    radial-gradient(circle at 14% 50%, rgba(37,99,235,.06), transparent 42%),
    radial-gradient(circle at 86% 50%, rgba(6,182,212,.05), transparent 40%),
    rgba(247,250,255,.72);
}

.cl-section-dark {
  position: relative;
  background: linear-gradient(135deg, rgba(8,12,28,.99) 0%, rgba(12,34,76,.96) 55%, rgba(6,14,38,.99) 100%);
  overflow: hidden;
}

.cl-section-head {
  max-width: 760px;
  margin-bottom: 52px;
}

.cl-section-head h2 { margin-bottom: 14px; }
.cl-section-head p  { max-width: 560px; }

/* nav-active */
.nav-active { color: var(--blue) !important; }

/* ── SECTION 1: HERO ────────────────────────────────────────── */
.cl-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 72px;
  overflow: hidden;
}

.cl-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.cl-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, black 10%, transparent 80%);
}

.cl-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}

.cl-orb-1 {
  width: 560px; height: 560px;
  top: -160px; left: -160px;
  background: radial-gradient(circle, rgba(37,99,235,.22), transparent 70%);
  animation: clOrbDrift 15s ease-in-out infinite;
}

.cl-orb-2 {
  width: 420px; height: 420px;
  top: 10%; right: -90px;
  background: radial-gradient(circle, rgba(6,182,212,.18), transparent 70%);
  animation: clOrbDrift 20s ease-in-out infinite reverse;
  animation-delay: -7s;
}

.cl-orb-3 {
  width: 360px; height: 360px;
  bottom: 0; left: 30%;
  background: radial-gradient(circle, rgba(124,58,237,.14), transparent 70%);
  animation: clOrbDrift 24s ease-in-out infinite;
  animation-delay: -13s;
}

@keyframes clOrbDrift {
  0%, 100% { transform: translate(0,0); }
  33%       { transform: translate(32px,-24px); }
  66%       { transform: translate(-20px,28px); }
}

.cl-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px,6vw,96px);
  align-items: center;
}

/* breadcrumb */
.cl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
}
.cl-breadcrumb a { color: var(--muted); transition: color 180ms; }
.cl-breadcrumb a:hover { color: var(--blue); }
.cl-breadcrumb span[aria-current] { color: var(--blue); }

.cl-hero-em {
  display: block;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cl-hero-desc {
  max-width: 540px;
  font-size: 1.1rem;
  line-height: 1.75;
}

.cl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.cl-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.cl-hero-trust span {
  border: 1px solid rgba(15,23,42,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  padding: 9px 14px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(16px);
}

/* Floating visual stack */
.cl-hero-visual { perspective: 1400px; }

/* ── Hero float stack: 5-card cluster ──────────────────────── */
.cl-float-stack {
  position: relative;
  height: 640px;
}

/* Wrapper: position + rotation + float animation */
.cl-fw {
  position: absolute;
}

.cl-fw:hover {
  animation-play-state: paused;
  z-index: 20;
}

/* Card: glass visual + hover elevation */
.cl-float-card {
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 22px;
  overflow: hidden;
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(150%);
  transition: transform 300ms ease, box-shadow 300ms ease;
  width: 100%;
}

.cl-fw:hover .cl-float-card {
  transform: translateY(-10px);
  box-shadow: 0 32px 90px rgba(15,23,42,.22), 0 0 0 1px rgba(37,99,235,.14);
}

.cl-float-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.cl-float-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  flex-wrap: wrap;
}

.cl-float-name {
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}

.cl-float-badge {
  display: inline-flex;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  color: var(--blue);
  background: rgba(37,99,235,.09);
  border: 1px solid rgba(37,99,235,.18);
  white-space: nowrap;
  flex-shrink: 0;
}

.cl-badge-health {
  color: var(--green);
  background: rgba(16,185,129,.09);
  border-color: rgba(16,185,129,.22);
}

.cl-badge-tech {
  color: var(--violet);
  background: rgba(124,58,237,.09);
  border-color: rgba(124,58,237,.22);
}

.cl-badge-nutrition {
  color: #d97706;
  background: rgba(217,119,6,.09);
  border-color: rgba(217,119,6,.22);
}

/* Metric badge — revealed on hover */
.cl-float-metric {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 12px 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37,99,235,.1), rgba(6,182,212,.07));
  border: 1px solid rgba(37,99,235,.18);
  font-size: 0.67rem;
  font-weight: 800;
  color: var(--blue);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 240ms ease 60ms, transform 240ms ease 60ms;
}

.cl-float-metric-icon { font-size: 0.85rem; flex-shrink: 0; }

.cl-fw:hover .cl-float-metric {
  opacity: 1;
  transform: translateY(0);
}

/* Individual wrapper positions, rotations, animations */

/* Card 1: Blue Bird — top-left, –3 deg */
.cl-fw-1 {
  left: 0; top: 16px;
  width: 252px;
  z-index: 5;
  animation: clFw1 7s ease-in-out infinite;
}
@keyframes clFw1 {
  0%,100% { transform: rotate(-3deg) translateY(0); }
  50%      { transform: rotate(-2.5deg) translateY(-14px); }
}

/* Card 2: KHT — top-right, +2 deg */
.cl-fw-2 {
  right: 0; top: 0;
  width: 238px;
  z-index: 4;
  animation: clFw2 8.5s ease-in-out infinite;
  animation-delay: -2s;
}
@keyframes clFw2 {
  0%,100% { transform: rotate(2deg) translateY(0); }
  50%      { transform: rotate(1.5deg) translateY(-18px); }
}

/* Card 3: Insight — center, –2 deg */
.cl-fw-3 {
  left: 50%; top: 185px;
  width: 244px;
  z-index: 3;
  animation: clFw3 9.5s ease-in-out infinite;
  animation-delay: -4s;
}
@keyframes clFw3 {
  0%,100% { transform: translateX(-50%) rotate(-2deg) translateY(0); }
  50%      { transform: translateX(-50%) rotate(-1.5deg) translateY(-12px); }
}

/* Card 4: Malik — lower-right, +4 deg */
.cl-fw-4 {
  right: 8px; bottom: 36px;
  width: 232px;
  z-index: 2;
  animation: clFw4 10s ease-in-out infinite;
  animation-delay: -6.5s;
}
@keyframes clFw4 {
  0%,100% { transform: rotate(4deg) translateY(0); }
  50%      { transform: rotate(3.5deg) translateY(-10px); }
}

/* Card 5: Athlete — lower-left, –4 deg */
.cl-fw-5 {
  left: 4px; bottom: 22px;
  width: 240px;
  z-index: 1;
  animation: clFw5 7.5s ease-in-out infinite;
  animation-delay: -9s;
}
@keyframes clFw5 {
  0%,100% { transform: rotate(-4deg) translateY(0); }
  50%      { transform: rotate(-3.5deg) translateY(-16px); }
}

/* Impact chips */
.cl-impact-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 14px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 40px rgba(15,23,42,.14);
  backdrop-filter: blur(20px);
  z-index: 10;
}

.cl-impact-chip div strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}

.cl-impact-chip div small {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
}

.cl-chip-icon { font-size: 1.1rem; }

.cl-chip-1 {
  left: -20px;
  bottom: 240px;
  animation: clChipFloat 6s ease-in-out infinite;
}

.cl-chip-2 {
  right: -12px;
  bottom: 300px;
  animation: clChipFloat 8s ease-in-out infinite reverse;
  animation-delay: -2s;
}

.cl-chip-3 {
  left: 30%;
  top: 12px;
  animation: clChipFloat 7s ease-in-out infinite;
  animation-delay: -4s;
}

@keyframes clChipFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ── SECTION 2: TRUST STRIP ─────────────────────────────────── */
.cl-trust {
  padding: 40px 0 52px;
  border-top: 1px solid rgba(15,23,42,.07);
  border-bottom: 1px solid rgba(15,23,42,.07);
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(12px);
}

.cl-trust-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

/* scrolling ticker */
.cl-trust-ticker {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  margin-bottom: 36px;
}

.cl-ticker-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  width: max-content;
  animation: clTickerScroll 28s linear infinite;
}

.cl-ticker-track span {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
}

.cl-ticker-dot {
  width: 5px !important;
  height: 5px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, var(--blue), var(--cyan)) !important;
  display: inline-block !important;
  flex-shrink: 0;
}

@keyframes clTickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.cl-trust-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cl-trust-metric {
  text-align: center;
  padding: 22px 16px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 20px;
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(150%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cl-trust-metric strong {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cl-trust-metric sup {
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  vertical-align: super;
}

.cl-trust-metric span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}

/* ── SECTION 3: KPI DASHBOARD ───────────────────────────────── */
/* .cl-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cl-kpi-card {
  position: relative;
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(150%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.cl-kpi-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37,99,235,.24);
  box-shadow: var(--shadow-hover);
}

.cl-kpi-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.18), transparent 70%);
  pointer-events: none;
  filter: blur(28px);
}

.cl-kpi-glow-cyan   { background: radial-gradient(circle, rgba(6,182,212,.18),  transparent 70%); }
.cl-kpi-glow-green  { background: radial-gradient(circle, rgba(16,185,129,.18), transparent 70%); }
.cl-kpi-glow-violet { background: radial-gradient(circle, rgba(124,58,237,.18), transparent 70%); }

.cl-kpi-num {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--ink), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cl-kpi-sfx {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: -8px;
  margin-left: 2px;
}

.cl-kpi-text {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cl-kpi-card > p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
} */




/* ── SECTION 3: KPI DASHBOARD ───────────────────────────────── */
/* =========================================
   SECTION : KPI GRID
========================================= */

.cl-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* =========================================
   SECTION : KPI CARD
========================================= */

.cl-kpi-card {
  position: relative;
  height: 240px; /* Same height for all cards */
  padding: 36px 28px;

  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);

  background: var(--glass);
  backdrop-filter: blur(24px) saturate(150%);

  box-shadow: var(--shadow);
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  gap: 10px;

  transition:
    transform 280ms ease,
    box-shadow 280ms ease,
    border-color 280ms ease;
}

.cl-kpi-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow: var(--shadow-hover);
}

/* =========================================
   SECTION : KPI GLOW EFFECTS
========================================= */

.cl-kpi-glow {
  position: absolute;
  top: -60px;
  right: -60px;

  width: 160px;
  height: 160px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.18),
    transparent 70%
  );

  filter: blur(28px);

  pointer-events: none;
}

.cl-kpi-glow-cyan {
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.18),
    transparent 70%
  );
}

.cl-kpi-glow-green {
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.18),
    transparent 70%
  );
}

.cl-kpi-glow-violet {
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.18),
    transparent 70%
  );
}

/* =========================================
   SECTION : KPI NUMBERS
========================================= */

.cl-kpi-num {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;

  background: linear-gradient(
    135deg,
    var(--ink),
    var(--blue)
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cl-kpi-sfx {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;

  background: linear-gradient(
    135deg,
    var(--blue),
    var(--cyan)
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  margin-top: -6px;
}

/* =========================================
   SECTION : KPI TEXT CARDS
========================================= */

.cl-kpi-text {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;

  background: linear-gradient(
    135deg,
    var(--blue),
    var(--cyan)
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =========================================
   SECTION : KPI DESCRIPTIONS
========================================= */

.cl-kpi-card > p {
  margin: 0;

  font-size: 0.95rem;
  font-weight: 700;

  color: var(--muted);
}

/* =========================================
   SECTION : TABLET RESPONSIVE
========================================= */

@media (max-width: 991px) {
  .cl-kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cl-kpi-card {
    height: 220px;
  }
}

/* =========================================
   SECTION : MOBILE RESPONSIVE
========================================= */

@media (max-width: 767px) {
  .cl-kpi-grid {
    grid-template-columns: 1fr;
  }

  .cl-kpi-card {
    height: auto;
    min-height: 200px;
  }
}


/* ── SECTION 4: SUCCESS STORIES ─────────────────────────────── */
.cl-story {
  margin-bottom: 64px;
}

.cl-story:last-child { margin-bottom: 0; }

.cl-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,5vw,80px);
  align-items: center;
  padding: 48px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,255,255,.48)),
    radial-gradient(circle at 8% 20%, rgba(37,99,235,.1), transparent 36%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(26px) saturate(150%);
  transition: box-shadow 360ms ease, border-color 360ms ease;
  overflow: hidden;
  position: relative;
}

.cl-story-inner::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 100%;
  border-radius: 999px 0 0 999px;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
}

.cl-story-inner:hover {
  border-color: rgba(37,99,235,.2);
  box-shadow: var(--shadow-hover);
}

.cl-story-reverse .cl-story-inner {
  direction: rtl;
}

.cl-story-reverse .cl-story-inner > * {
  direction: ltr;
}

.cl-story-reverse .cl-story-inner::before {
  left: auto; right: 0;
  border-radius: 0 999px 999px 0;
}

.cl-story-media {
  position: relative;
}

/* .cl-story-img-wrap {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 18px 60px rgba(15,23,42,.14);
  background: linear-gradient(135deg, #f0f4ff, #f8faff);
}

.cl-story-img-wrap img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
  transition: transform 400ms ease;
}

.cl-story-inner:hover .cl-story-img-wrap img {
  transform: scale(1.04);
} */

/* =========================================
   SECTION : SUCCESS STORY IMAGE
========================================= */

.cl-story-img-wrap {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 18px 60px rgba(15,23,42,.14);
  background: linear-gradient(135deg, #f0f4ff, #f8faff);

  display: flex;
  align-items: center;
  justify-content: center;
}

.cl-story-img-wrap img {
  display: block;

  width: 100%;
  height: 300px; /* SAME HEIGHT */

  object-fit: contain; /* FULL IMAGE SHOW */

  object-position: center;

  padding: 10px;

  transition: transform 400ms ease;
}

.cl-story-inner:hover .cl-story-img-wrap img {
  transform: scale(1.02);
}

.cl-story-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 7px;
}

.cl-story-badge {
  display: inline-flex;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--blue);
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(37,99,235,.18);
  backdrop-filter: blur(10px);
}

.cl-badge-year {
  color: var(--muted);
  border-color: rgba(15,23,42,.14);
}

.cl-story-content { display: flex; flex-direction: column; gap: 16px; }

.cl-story-content h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
}

.cl-story-sub {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.5;
}

.cl-story-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cl-story-block {
  padding: 16px;
  border: 1px solid rgba(15,23,42,.07);
  border-radius: 16px;
  background: rgba(255,255,255,.62);
}

.cl-story-block strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 7px;
}

.cl-story-block p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--muted);
}

.cl-story-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.cl-story-tech span {
  display: inline-flex;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--ink-soft);
  background: rgba(37,99,235,.06);
  border: 1px solid rgba(37,99,235,.14);
}

.cl-story-outcome {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(16,185,129,.08), rgba(6,182,212,.06));
  border: 1px solid rgba(16,185,129,.18);
}

.cl-outcome-icon { font-size: 1.5rem; flex-shrink: 0; }

.cl-story-outcome div strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 4px;
}

.cl-story-outcome div p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--muted);
}

.cl-story-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--blue);
  transition: gap 240ms ease, color 240ms ease;
  align-self: flex-start;
}

.cl-story-cta span { display: inline-block; transition: transform 240ms ease; }
.cl-story-cta:hover { color: var(--cyan); gap: 10px; }
.cl-story-cta:hover span { transform: translateX(4px); }

/* ── SECTION 5: PROJECT SHOWCASE WALL (premium bento) ──────── */

/* Bento grid */
.pw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 210px 210px 230px 260px;
  gap: 14px;
}

/* Grid placement */
.pw-bbgs    { grid-column: 1 / 3; grid-row: 1 / 3; }
.pw-kht     { grid-column: 3;     grid-row: 1;     }
.pw-malik   { grid-column: 3;     grid-row: 2;     }
.pw-insight { grid-column: 1;     grid-row: 3;     }
.pw-sht     { grid-column: 2;     grid-row: 3;     }
.pw-drsunil { grid-column: 3;     grid-row: 3 / 5; }
.pw-athlete { grid-column: 1 / 3; grid-row: 4;     }

/* Card */
.pw-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(18px) scale(.98);
  transition: opacity 560ms ease, transform 560ms ease;
}

.pw-item.pw-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Image wrapper */
.pw-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #eef2ff, #f0f9ff 50%, #f5f0ff);
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 4px 24px rgba(15,23,42,.08), inset 0 1px 0 rgba(255,255,255,.5);
  transition: box-shadow 380ms ease, border-color 380ms ease;
}

.pw-item:hover .pw-img-wrap {
  box-shadow: 0 22px 64px rgba(15,23,42,.18), 0 0 0 1px rgba(37,99,235,.18);
  border-color: rgba(37,99,235,.22);
}

.pw-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 480ms cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

.pw-item:hover .pw-img-wrap img {
  transform: scale(1.03);
}

/* Mouse-follow glow */
.pw-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
  background: radial-gradient(
    280px circle at var(--gx, 50%) var(--gy, 50%),
    rgba(37,99,235,.18),
    rgba(6,182,212,.08) 42%,
    transparent 68%
  );
  opacity: 0;
  transition: opacity 260ms ease;
}

.pw-item:hover .pw-glow { opacity: 1; }

/* Overlay */
.pw-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
  /* subtle top vignette for badge legibility */
  background:
    linear-gradient(180deg, rgba(8,12,28,.4) 0%, transparent 30%),
    linear-gradient(0deg,   rgba(8,12,28,.1) 0%, transparent 40%);
}

.pw-item:hover .pw-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Top row: badges */
.pw-overlay-top {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

/* Bottom glass panel */
.pw-overlay-bottom {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 13px 15px;
  border-radius: 13px;
  background: rgba(7,11,26,.75);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255,255,255,.1);
  transform: translateY(8px);
  transition: transform 340ms cubic-bezier(.25,.46,.45,.94);
}

.pw-item:hover .pw-overlay-bottom { transform: translateY(0); }

.pw-name {
  margin: 0;
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.01em;
}

.pw-bbgs .pw-name,
.pw-athlete .pw-name {
  font-size: 1.1rem;
}

.pw-type {
  margin: 0;
  font-size: 0.73rem;
  font-weight: 600;
  color: rgba(255,255,255,.52);
  line-height: 1.3;
}

.pw-result-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(37,99,235,.28);
  border: 1px solid rgba(37,99,235,.38);
  backdrop-filter: blur(8px);
  font-size: 0.68rem;
  font-weight: 800;
  color: rgba(255,255,255,.9);
  width: fit-content;
  white-space: nowrap;
}

.pw-result-tag svg {
  width: 9px; height: 9px;
  stroke: #34d399;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Badges */
.pw-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1.4;
}

.pw-badge-edu    { color: #93c5fd; background: rgba(37,99,235,.38);  border-color: rgba(37,99,235,.5); }
.pw-badge-health { color: #6ee7b7; background: rgba(16,185,129,.34); border-color: rgba(16,185,129,.5); }
.pw-badge-hm     { color: #67e8f9; background: rgba(6,182,212,.34);  border-color: rgba(6,182,212,.5); }
.pw-badge-tech   { color: #c4b5fd; background: rgba(124,58,237,.34); border-color: rgba(124,58,237,.5); }
.pw-badge-nut    { color: #fcd34d; background: rgba(217,119,6,.36);  border-color: rgba(217,119,6,.52); }

/* Featured pill */
.pw-featured-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 3px 12px rgba(37,99,235,.38);
}

.pw-featured-tag::before {
  content: "★";
  font-size: 0.56rem;
}

/* Responsive */
@media (max-width: 980px) {
  .pw-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px 200px 240px;
    gap: 12px;
  }
  .pw-bbgs    { grid-column: 1 / 3; grid-row: 1; }
  .pw-kht     { grid-column: 1;     grid-row: 2; }
  .pw-malik   { grid-column: 2;     grid-row: 2; }
  .pw-insight { grid-column: 1;     grid-row: 3; }
  .pw-sht     { grid-column: 2;     grid-row: 3; }
  .pw-drsunil { grid-column: 1;     grid-row: 4; }
  .pw-athlete { grid-column: 1 / 3; grid-row: 5; }
}

@media (max-width: 720px) {
  .pw-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px 180px 200px;
    gap: 10px;
  }
  .pw-bbgs    { grid-column: 1 / 3; grid-row: 1; }
  .pw-kht     { grid-column: 1;     grid-row: 2; }
  .pw-malik   { grid-column: 2;     grid-row: 2; }
  .pw-insight { grid-column: 1;     grid-row: 3; }
  .pw-sht     { grid-column: 2;     grid-row: 3; }
  .pw-drsunil { grid-column: 1;     grid-row: 4; }
  .pw-athlete { grid-column: 1 / 3; grid-row: 5; }
  .pw-name    { font-size: 0.8rem; }
  .pw-bbgs .pw-name, .pw-athlete .pw-name { font-size: 0.9rem; }
  .pw-result-tag { font-size: 0.62rem; }
  .pw-overlay-bottom { padding: 10px 12px; }
}

@media (max-width: 480px) {
  .pw-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
  }
  .pw-bbgs,.pw-kht,.pw-malik,.pw-insight,
  .pw-sht,.pw-drsunil,.pw-athlete {
    grid-column: auto;
    grid-row: auto;
  }
  .pw-item    { min-height: 200px; }
  /* always show overlay on mobile (no hover on touch) */
  .pw-overlay { opacity: 1; }
  .pw-overlay-bottom { transform: none; }
}

/* ── SECTION 7: BENTO GRID ──────────────────────────────────── */
.cl-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 18px;
}

.cl-bento-card {
  position: relative;
  padding: 32px 28px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(150%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  overflow: hidden;
}

.cl-bento-card::before {
  content: "";
  position: absolute;
  bottom: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.1), transparent 70%);
  pointer-events: none;
  transition: transform 400ms ease;
}

.cl-bento-card:hover::before {
  transform: scale(1.8);
}

.cl-bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37,99,235,.22);
  box-shadow: var(--shadow-hover);
}

.cl-bento-large { grid-row: span 2; }
.cl-bento-wide  { grid-column: span 2; }

.cl-bento-icon {
  font-size: 2.4rem;
  line-height: 1;
}

.cl-bento-card h3 {
  margin: 0;
  font-size: 1.14rem;
  font-weight: 900;
  color: var(--ink);
}

.cl-bento-card p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--muted);
  flex: 1;
}

.cl-bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.cl-bento-tags em {
  display: inline-flex;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(37,99,235,.06);
  border: 1px solid rgba(37,99,235,.13);
}

/* ── SECTION 9: VS COMPARISON ───────────────────────────────── */
.cl-vs-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: start;
}

.cl-vs-col {
  border: 1px solid rgba(255,255,255,.78);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(150%);
}

.cl-vs-col-old {
  background: var(--glass);
}

.cl-vs-col-new {
  background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(6,182,212,.05)), var(--glass);
  border-color: rgba(37,99,235,.22);
  box-shadow: var(--shadow-hover), 0 0 0 1px rgba(37,99,235,.1);
}

.cl-vs-header {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(15,23,42,.07);
}

.cl-vs-col-new .cl-vs-header {
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(6,182,212,.07));
  border-bottom-color: rgba(37,99,235,.14);
}

.cl-vs-label {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.cl-vs-col-new .cl-vs-label {
  color: var(--blue);
}

.cl-vs-list {
  list-style: none;
  margin: 0;
  padding: 18px 0;
}

.cl-vs-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(15,23,42,.05);
  transition: background 200ms ease;
}

.cl-vs-list li:last-child { border-bottom: 0; }
.cl-vs-list li:hover { background: rgba(37,99,235,.04); }

.cl-vs-no::before {
  content: "✕";
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(244,63,94,.1);
  color: var(--rose);
  font-size: 0.68rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cl-vs-yes::before {
  content: "✓";
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(16,185,129,.12);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cl-vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 52px;
}

.cl-vs-divider span {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,99,235,.3);
}

/* ── SECTION 11: TESTIMONIALS ───────────────────────────────── */
.cl-testimonials-track {
  overflow: hidden;
  margin-bottom: 24px;
}

.cl-testimonials-inner {
  display: flex;
  gap: 20px;
  transition: transform 500ms cubic-bezier(.4,0,.2,1);
}

.cl-testi-card {
  flex: 0 0 calc(33.333% - 14px);
  margin: 0;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(150%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  position: relative;
  overflow: hidden;
}

.cl-testi-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37,99,235,.22);
  box-shadow: var(--shadow-hover);
}

.cl-testi-quote {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--blue);
  opacity: .3;
  margin: -8px 0 -16px;
  font-family: Georgia, serif;
}

.cl-testi-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.78;
  color: var(--ink-soft);
  flex: 1;
  font-style: italic;
}

.cl-testi-card footer {
  border-top: 1px solid rgba(15,23,42,.07);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cl-testi-card footer strong {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--ink);
}

.cl-testi-card footer span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
}

/* controls */
.cl-testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.cl-testi-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(15,23,42,.12);
  background: var(--glass);
  backdrop-filter: blur(14px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.cl-testi-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: scale(1.08);
}

.cl-testi-btn svg {
  width: 18px; height: 18px;
  stroke: var(--ink);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 220ms ease;
}

.cl-testi-btn:hover svg { stroke: white; }

.cl-testi-dots {
  display: flex;
  gap: 8px;
}

.cl-testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(15,23,42,.16);
  transition: background 220ms ease, transform 220ms ease;
  cursor: pointer;
  border: 0;
  padding: 0;
}

.cl-testi-dot.active {
  background: var(--blue);
  transform: scale(1.3);
}

/* ── SECTION 12: CTA ────────────────────────────────────────── */
.cl-cta-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.cl-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,12,30,.99), rgba(12,34,76,.96), rgba(6,14,38,.99));
  pointer-events: none;
}

.cl-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.cl-cta-orb-1 {
  width: 360px; height: 360px;
  background: rgba(37,99,235,.26);
  top: -100px; left: -80px;
  animation: clOrbDrift 14s ease-in-out infinite;
}

.cl-cta-orb-2 {
  width: 280px; height: 280px;
  background: rgba(6,182,212,.2);
  bottom: -80px; right: -60px;
  animation: clOrbDrift 18s ease-in-out infinite reverse;
  animation-delay: -5s;
}

.cl-cta-orb-3 {
  width: 200px; height: 200px;
  background: rgba(124,58,237,.16);
  top: 40%; right: 30%;
  animation: clOrbDrift 22s ease-in-out infinite;
  animation-delay: -10s;
}

.cl-cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 52px 52px;
  animation: clGridScroll 20s linear infinite;
}

.cl-cta-beam {
  position: absolute;
  top: 0; left: 0;
  width: 40%; height: 100%;
  background: linear-gradient(108deg, transparent, rgba(255,255,255,.04) 50%, transparent);
  animation: clBeam 9s ease-in-out infinite;
  animation-delay: 2s;
  pointer-events: none;
}

@keyframes clBeam {
  0%,75%,100% { transform: translateX(-150%); opacity: 0; }
  5%           { opacity: 1; }
  60%          { opacity: 1; transform: translateX(320%); }
  61%          { opacity: 0; transform: translateX(320%); }
}

.cl-cta-keywords {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cl-cta-keywords span {
  position: absolute;
  left: var(--kx);
  top: var(--ky);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.1);
  white-space: nowrap;
  animation: clKeyFloat 9s ease-in-out var(--kd, 0s) infinite;
}

@keyframes clKeyFloat {
  0%,100% { transform: translateY(0); opacity: .1; }
  50%      { transform: translateY(-8px); opacity: .2; }
}

.cl-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cl-cta-inner h2 {
  color: white;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

.cl-cta-inner > p {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.cl-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 48px;
}

.cl-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  color: white;
  border: 1px solid rgba(255,255,255,.26);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  transition: background 220ms ease, border-color 220ms ease, gap 220ms ease;
}

.cl-cta-secondary:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.4);
  gap: 10px;
}

.cl-cta-metrics {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.cl-cta-metrics div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cl-cta-metrics strong {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.cl-cta-metrics span {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */

@media (max-width: 980px) {
  .cl-section { padding: 72px 0; }

  .cl-hero-inner { grid-template-columns: 1fr; }
  .cl-hero-visual { display: none; }

  .cl-trust-metrics { grid-template-columns: repeat(2, 1fr); }

  .cl-kpi-grid { grid-template-columns: repeat(2, 1fr); }

  .cl-story-inner { grid-template-columns: 1fr; padding: 32px; gap: 28px; }
  .cl-story-reverse .cl-story-inner { direction: ltr; }

  .cl-bento { grid-template-columns: 1fr 1fr; }
  .cl-bento-large { grid-row: auto; }
  .cl-bento-wide  { grid-column: 1 / 3; }

  .cl-vs-wrap { grid-template-columns: 1fr; gap: 12px; }
  .cl-vs-divider { padding: 0; }
  .cl-vs-divider span { width: 40px; height: 40px; }

  .cl-testi-card { flex: 0 0 calc(50% - 10px); }

  .cl-cta-metrics { gap: 28px; }
}

@media (max-width: 720px) {
  .cl-section { padding: 56px 0; }
  .cl-container { width: min(calc(100% - 28px), var(--max)); }

  .cl-trust { padding: 32px 0 40px; }
  .cl-trust-metrics { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .cl-kpi-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .cl-story-inner { padding: 24px; border-radius: 28px; }
  .cl-story-img-wrap img { height: 220px; }
  .cl-story-blocks { grid-template-columns: 1fr; }

  .cl-bento { grid-template-columns: 1fr; }
  .cl-bento-wide { grid-column: auto; }

  .cl-testi-card { flex: 0 0 100%; }

  .cl-cta-inner h2 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .cl-cta-metrics { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 480px) {
  .cl-trust-metrics { grid-template-columns: 1fr 1fr; }
  .cl-kpi-grid { grid-template-columns: 1fr; }
  .cl-cta-metrics { flex-direction: column; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
