/* ═══════════════════════════════════════
   CLIENTS PAGE — clients.css
═══════════════════════════════════════ */

/* ── Hero ───────────────────────────── */
.cl-hero {
  position: relative;
  /* min-height: 370px; */
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  /* background: #07090d; */
  background: linear-gradient(135deg, #031a30, #0b1d3a, #031a30);
}

.cl-hero__bg {
  position: absolute;
  inset: 0;
  background: url('../assets/img/clients-hero.jpg') center/cover no-repeat;
  filter: brightness(.38) saturate(1.1);
}

.cl-hero__inner {
  position: relative;
  padding: 70px 0 56px;
}

.cl-hero__kicker {
  color: #c9a84c;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
  display: block;
}

.cl-hero h1 {
  font-size: clamp(24px, 4vw, 46px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 12px;
}

.cl-hero p {
  color: rgba(255,255,255,.70);
  font-size: 15px;
  max-width: 56ch;
  margin: 0;
}

.breadcrumb-item,
.breadcrumb-item a { color: rgba(255,255,255,.55); font-size: 13px; }
.breadcrumb-item.active { color: #c9a84c; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.30); }

/* ── Stat Strip ─────────────────────── */
.cl-strip {
  background: #040b17;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.cl-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 12px;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: .2s ease;
}

.cl-strip__item:last-child { border-right: none; }
.cl-strip__item:hover { background: rgba(201,168,76,.08); }

.cl-strip__num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #c9a84c;
  line-height: 1;
}

.cl-strip__label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-top: 5px;
}

/* ── Marquee Section ────────────────── */
.cl-marquee-section {
  padding: 64px 0 48px;
  background: #f8f9fb;
}

.cl-kicker {
  display: block;
  color: #c9a84c;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 8px;
}

.cl-h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #0b1d3a;
  margin: 0 0 12px;
  line-height: 1.2;
}

.cl-lead {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  max-width: 60ch;
  margin: 0 auto 36px;
}

/* Marquee wrapper */
.cl-marquee-wrap {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right, transparent 0%, #000 6%, #000 94%, transparent 100%
  );
  mask-image: linear-gradient(
    to right, transparent 0%, #000 6%, #000 94%, transparent 100%
  );
}

.cl-marquee-track {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.cl-marquee-inner {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}

/* Logo tile in marquee */
.cl-logo-tile {
  flex-shrink: 0;
  width: 180px;
  background: #fff;
  border: 1px solid rgba(11,29,58,.09);
  border-radius: 14px;
  padding: 16px 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.cl-logo-tile:hover {
  border-color: rgba(201,168,76,.40);
  box-shadow: 0 8px 24px rgba(201,168,76,.12);
  transform: translateY(-2px);
}

.cl-logo-tile img {
  max-width: 100%;
  max-height: 46px;
  object-fit: contain;
  filter: grayscale(10%);
  /* opacity: .65; */
  transition: filter .2s, opacity .2s;
  pointer-events: none;
  -webkit-user-drag: none;
}

.cl-logo-tile:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.cl-logo-tile span {
  font-size: 11px;
  font-weight: 600;
  color: #555;
  text-align: center;
  line-height: 1.3;
}

/* ── Client Cards Grid ──────────────── */
.cl-section {
  padding: 70px 0;
  background: #fff;
}

.cl-card {
  background: #fff;
  border: 1px solid rgba(11,29,58,.09);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 42px rgba(0,0,0,.11);
  border-color: rgba(201,168,76,.35);
}

/* Logo area */
.cl-card__logo {
  height: 120px;
  background: #f8f9fb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-bottom: 1px solid rgba(11,29,58,.07);
  transition: background .2s ease;
}

.cl-card__logo--dark {
  background: #111;
}

.cl-card:hover .cl-card__logo {
  background: rgba(201,168,76,.06);
}

.cl-card:hover .cl-card__logo--dark {
  background: #1a1a1a;
}

.cl-card__logo img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter .25s ease, transform .25s ease;
}

.cl-card:hover .cl-card__logo img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Body */
.cl-card__body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cl-card__body h5 {
  font-size: 14px;
  font-weight: 700;
  color: #0b1d3a;
  margin: 0;
  line-height: 1.3;
}

.cl-card__body span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #888;
}

.cl-card__body span i {
  color: #c9a84c;
  font-size: 11px;
}

/* ── CTA ────────────────────────────── */
.cl-cta {
  background: #c9a84c;
  padding: 48px 0;
}

.cl-cta h3 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: #111;
  margin: 0;
}

.cl-cta p {
  color: rgba(0,0,0,.65);
  margin: 6px 0 0;
  font-size: 15px;
}

.cl-cta__btn {
  display: inline-flex;
  align-items: center;
  background: #0b1d3a;
  color: #fff;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: .2s ease;
}

.cl-cta__btn:hover {
  background: #0d2347;
  color: #fff;
}

/* ── Responsive ─────────────────────── */
@media (max-width: 991px) {
  .cl-section { padding: 56px 0; }
  .cl-card__logo { height: 100px; }
}

@media (max-width: 767px) {
  /* .cl-hero { min-height: 280px; } */
  .cl-hero__inner { padding: 68px 0 38px; }
  .cl-strip__item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 16px 8px;
  }
  .cl-strip__item:last-child { border-bottom: none; }
  .cl-strip__num { font-size: 1.5rem; }
  .cl-marquee-section { padding: 48px 0 36px; }
  .cl-logo-tile { width: 150px; }
  .cl-cta { padding: 36px 0; }
  .cl-cta__btn { width: 100%; justify-content: center; margin-top: 6px; }
}

@media (max-width: 576px) {
  .cl-section { padding: 44px 0; }
  .cl-card__logo { height: 90px; padding: 14px; }
  .cl-card__logo img { max-height: 55px; }
  .cl-card__body { padding: 12px; }
  .cl-card__body h5 { font-size: 13px; }
  .cl-logo-tile { width: 130px; padding: 12px 10px 10px; }
  .cl-logo-tile img { max-height: 36px; }
  .cl-logo-tile span { font-size: 10px; }
}

@media (max-width: 380px) {
  .cl-card__logo { height: 80px; }
  .cl-logo-tile { width: 115px; }
}