.client-page {
  background: var(--surface, #f7f9fc);
}

.client-page-wrap {
  max-width: var(--layout-shell-max);
  margin: 0 auto;
  padding: 40px var(--layout-gutter) 64px;
}

.client-about-card,
.client-logos-section,
.client-faq-section {
  background: var(--white, #fff);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(26, 60, 110, .08);
  padding: 36px 40px;
  margin-bottom: 32px;
}

.client-about-card {
  position: relative;
  overflow: hidden;
}

.client-about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--orange, #ff7600) 0%, var(--navy, #1a3c6e) 100%);
}

.client-section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange, #ff7600);
  margin-bottom: 8px;
}

.client-section-heading {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy, #1a3c6e);
  margin: 0 0 14px;
  line-height: 1.25;
}

.client-about-card p,
.client-section-sub {
  color: #475569;
  font-size: 14.5px;
  line-height: 1.75;
}

.client-about-card p {
  margin: 0 0 12px;
}

.client-about-card p:last-child {
  margin-bottom: 0;
}

.client-section-sub {
  margin: 0 0 28px;
}

.client-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

.client-logo-card {
  background: var(--surface, #f7f9fc);
  border: 1.5px solid var(--border, #dde4f0);
  border-radius: 10px;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  transition: border-color .22s, box-shadow .22s, transform .22s, background-color .22s;
}

.client-logo-card:hover {
  border-color: var(--navy, #1a3c6e);
  box-shadow: 0 4px 18px rgba(26, 60, 110, .10);
  transform: translateY(-2px);
  background: var(--white, #fff);
}

.client-logo-card img {
  max-height: 48px;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(40%);
  opacity: .85;
  transition: filter .22s, opacity .22s;
}

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

.client-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.client-faq-item {
  border: 1.5px solid var(--border, #dde4f0);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s;
}

.client-faq-item:hover {
  border-color: #b3c4dc;
}

.client-faq-q {
  width: 100%;
  padding: 15px 18px;
  border: 0;
  background: var(--white, #fff);
  color: #1e293b;
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
  transition: background-color .2s, color .2s;
}

.client-faq-q:hover,
.client-faq-item.open .client-faq-q {
  background: var(--surface, #f7f9fc);
  color: var(--navy, #1a3c6e);
}

.client-faq-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.client-faq-num {
  background: var(--navy, #1a3c6e);
  color: var(--white, #fff);
  font-size: 10.5px;
  font-weight: 700;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.client-faq-arr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted, #64748b);
  line-height: 1;
  transition: transform .2s;
  flex-shrink: 0;
}

.client-faq-item.open .client-faq-arr {
  transform: rotate(180deg);
}

.client-faq-a {
  display: none;
  padding: 10px 18px 14px 50px;
  font-size: 13.5px;
  color: var(--muted, #64748b);
  background: var(--surface, #f7f9fc);
  border-top: 1px solid var(--border, #dde4f0);
  line-height: 1.65;
}

.client-faq-item.open .client-faq-a {
  display: block;
}

.client-cta {
  background: linear-gradient(135deg, var(--navy-deep, #0f2444) 0%, #2563b0 100%);
  border-radius: 16px;
  padding: 30px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.client-cta-text h3 {
  color: var(--white, #fff);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
}

.client-cta-text p {
  color: #8aabcc;
  font-size: 13.5px;
  margin: 0;
}

.client-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.client-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 20px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 700;
  transition: background-color .18s, color .18s;
  white-space: nowrap;
  text-decoration: none;
}

.client-btn-orange {
  background: var(--orange, #ff7600);
  color: var(--white, #fff);
}

.client-btn-orange:hover {
  background: var(--orange2, #ff9033);
  color: var(--white, #fff);
}

.client-btn-light {
  background: var(--white, #fff);
  color: var(--navy, #1a3c6e);
}

.client-btn-light:hover {
  background: #f0f6ff;
  color: var(--navy, #1a3c6e);
}

@media (max-width: 640px) {
  .client-page-wrap {
    padding: 28px var(--layout-gutter) 46px;
  }

  .client-about-card,
  .client-logos-section,
  .client-faq-section {
    padding: 24px 20px;
  }

  .client-section-heading {
    font-size: 23px;
  }

  .client-logos-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 10px;
  }

  .client-faq-left {
    align-items: flex-start;
  }

  .client-faq-a {
    padding-left: 18px;
  }

  .client-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 24px 20px;
  }

  .client-cta-actions {
    width: 100%;
  }

  .client-btn {
    flex: 1;
  }
}
