/* =============================================
   AURA 919 — Clients Page Styles
   ============================================= */

.page-hero { padding: 160px 0 80px; border-bottom: 1px solid var(--bd); }
.ph-lbl { font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--t); display: flex; align-items: center; gap: 9px; margin-bottom: 16px; }
.ph-lbl::before { content: ''; width: 18px; height: 2px; background: var(--t); }
.ph-h { font-size: clamp(40px,6vw,80px); font-weight: 800; letter-spacing: -.03em; line-height: .95; color: var(--ink); margin-bottom: 20px; }
.ph-s { font-size: 15px; color: var(--gm); max-width: 600px; line-height: 1.7; }

/* ── SECTOR GROUPS ── */
#clients-grid { padding: 80px 0 100px; }

.sector-group { margin-bottom: 72px; }
.sector-group:last-child { margin-bottom: 0; }

.sector-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--t);
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bd);
}
.sector-lbl::before { content: ''; width: 18px; height: 2px; background: var(--t); }

.logos-g {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--bd);
}

.logo-card {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--bd);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background .2s;
}
.logo-card:last-child { border-right: none; }
.logo-card:nth-child(5n) { border-right: none; }
.logo-card:hover { background: var(--bg2); }

.logo-card img {
  height: 40px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(1) opacity(.5);
  transition: filter .25s;
}
.logo-card:hover img { filter: grayscale(0) opacity(1); }

.logo-card-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
}
.logo-card-sub {
  font-size: 10px;
  color: var(--gm);
}

/* ── TESTIMONIALS ── */
#testimonials { background: var(--bg2); padding: 80px 0; border-top: 1px solid var(--bd); }
.test-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.test-c {
  background: #fff;
  padding: 36px 28px;
}
.test-q {
  font-size: 40px;
  font-weight: 800;
  color: var(--t);
  line-height: .8;
  margin-bottom: 16px;
}
.test-txt {
  font-size: 13px;
  line-height: 1.75;
  color: var(--gd);
  margin-bottom: 24px;
}
.test-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
}
.test-co {
  font-size: 10px;
  color: var(--gm);
  margin-top: 2px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .logos-g { grid-template-columns: repeat(3, 1fr); }
  .logo-card:nth-child(5n) { border-right: 1px solid var(--bd); }
  .logo-card:nth-child(3n) { border-right: none; }
  .test-g { grid-template-columns: 1fr; gap: 2px; }
}
@media (max-width: 560px) {
  .logos-g { grid-template-columns: repeat(2, 1fr); }
  .logo-card:nth-child(3n) { border-right: 1px solid var(--bd); }
  .logo-card:nth-child(2n) { border-right: none; }
  .page-hero { padding: 120px 0 48px; }
}
