/* ==========================================================================
   our-client-modern.css — Clean & minimal redesign for the Our Clients page
   Loaded ONLY on our-client.php, AFTER our-client.css, so it overrides the
   page sections without affecting any other page. All selectors are scoped to
   `body.our-client-modern` to keep specificity high and bleed at zero.
   ========================================================================== */

/* ---- Design tokens ---- */
body.our-client-modern {
  --pp-primary: #2563eb;
  --pp-primary-dark: #1d4ed8;
  --pp-primary-soft: #eff6ff;
  --pp-ink: #0f172a;
  --pp-body: #475569;
  --pp-muted: #64748b;
  --pp-line: #e2e8f0;
  --pp-bg: #ffffff;
  --pp-bg-alt: #f8fafc;
  --pp-radius: 18px;
  --pp-radius-sm: 12px;
  --pp-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 12px 32px -12px rgba(15, 23, 42, 0.12);
  --pp-shadow-hover: 0 18px 48px -16px rgba(37, 99, 235, 0.28);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--pp-body);
  -webkit-font-smoothing: antialiased;
}

body.our-client-modern h1,
body.our-client-modern h2,
body.our-client-modern h3,
body.our-client-modern h4 {
  font-family: "Poppins", "Inter", system-ui, sans-serif;
  letter-spacing: -0.01em;
}

/* ==========================================================================
   HERO
   ========================================================================== */
body.our-client-modern .client-hero {
  background: radial-gradient(1200px 600px at 80% -10%, #eef4ff 0%, rgba(238, 244, 255, 0) 60%),
    linear-gradient(180deg, #ffffff 0%, var(--pp-bg-alt) 100%);
  padding: 80px 0 72px;
  min-height: auto;
}

body.our-client-modern .client-hero-content {
  max-width: 760px;
}

/* Pill badge */
body.our-client-modern .client-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pp-primary-soft) !important;
  color: var(--pp-primary-dark) !important;
  padding: 8px 16px;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
body.our-client-modern .client-hero-badge i {
  font-size: 13px;
  color: var(--pp-primary);
}

body.our-client-modern .client-hero-title {
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.08;
  font-weight: 700;
  color: var(--pp-ink);
  margin: 0 0 18px;
}

body.our-client-modern .client-hero-description {
  font-size: 17px;
  color: var(--pp-muted);
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   STATS
   ========================================================================== */
body.our-client-modern .client-stats {
  background: #fff;
  padding: 64px 0;
  border-bottom: 1px solid var(--pp-line);
}
body.our-client-modern .stats-grid {
  gap: 26px;
  max-width: 1100px;
}
body.our-client-modern .stat-card {
  background: #fff;
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  padding: 32px 24px;
  box-shadow: var(--pp-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
body.our-client-modern .stat-card:hover {
  transform: translateY(-6px);
  border-color: #dbeafe;
  box-shadow: var(--pp-shadow-hover);
}
body.our-client-modern .stat-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: var(--pp-primary);
  background: var(--pp-primary-soft);
  border-radius: var(--pp-radius-sm);
}
body.our-client-modern .stat-number {
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 700;
  color: var(--pp-primary) !important;
  font-family: "Poppins", sans-serif;
  margin-bottom: 6px;
  line-height: 1;
}
body.our-client-modern .stat-label {
  font-size: 14px;
  color: var(--pp-muted);
  font-weight: 500;
}

/* ==========================================================================
   CLIENT COMPANIES
   ========================================================================== */
body.our-client-modern .client-companies {
  background: var(--pp-bg-alt);
  padding: 88px 0;
}
body.our-client-modern .section-header {
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
body.our-client-modern .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pp-primary-soft);
  color: var(--pp-primary-dark);
  padding: 8px 16px;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
body.our-client-modern .section-badge i {
  color: var(--pp-primary);
}
body.our-client-modern .section-title {
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--pp-ink);
  font-weight: 700;
  margin: 0;
}
body.our-client-modern .section-description {
  font-size: 16px;
  color: var(--pp-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
}

body.our-client-modern .client-grid {
  gap: 26px;
}
body.our-client-modern .client-card {
  background: #fff;
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  padding: 28px 24px;
  box-shadow: var(--pp-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
body.our-client-modern .client-card:hover {
  transform: translateY(-8px);
  border-color: #dbeafe;
  box-shadow: var(--pp-shadow-hover);
}
body.our-client-modern .client-logo {
  height: 120px;
  margin-bottom: 18px;
  background: var(--pp-bg-alt);
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius-sm);
  padding: 18px;
}
body.our-client-modern .client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
body.our-client-modern .client-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--pp-ink);
  margin: 0 0 8px;
  line-height: 1.3;
}
body.our-client-modern .client-industry {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--pp-primary-dark);
  background: var(--pp-primary-soft);
  padding: 5px 12px;
  border-radius: 999px;
  margin: 0;
}
body.our-client-modern .client-industry-icon {
  display: inline-flex;
  font-size: 11px;
  color: var(--pp-primary);
}

/* ==========================================================================
   CTA
   ========================================================================== */
body.our-client-modern .client-cta {
  padding: 88px 0;
  background: linear-gradient(135deg, var(--pp-primary) 0%, var(--pp-primary-dark) 100%);
}
body.our-client-modern .cta-quote-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 16px;
}
body.our-client-modern .cta-title {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  margin: 0 0 16px;
  color: #fff;
}
body.our-client-modern .cta-description {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  margin: 0 0 32px;
}
body.our-client-modern .cta-buttons {
  gap: 16px;
}
body.our-client-modern .cta-btn {
  padding: 14px 28px !important;
  border-radius: 12px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  min-width: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease !important;
}
body.our-client-modern .cta-btn.primary {
  background: #fff !important;
  color: var(--pp-primary-dark) !important;
  border: 1px solid #fff !important;
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.4) !important;
}
body.our-client-modern .cta-btn.primary:hover {
  background: #f1f5f9 !important;
  transform: translateY(-2px);
}
body.our-client-modern .cta-btn.secondary {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
}
body.our-client-modern .cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
  body.our-client-modern .client-hero {
    padding: 64px 0 56px;
  }
  body.our-client-modern .client-stats {
    padding: 52px 0;
  }
  body.our-client-modern .client-companies {
    padding: 64px 0;
  }
}
@media (max-width: 640px) {
  body.our-client-modern .client-hero {
    padding: 52px 0 44px;
  }
  body.our-client-modern .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  body.our-client-modern .stat-card {
    padding: 26px 16px;
  }
  body.our-client-modern .client-companies,
  body.our-client-modern .client-cta {
    padding: 56px 0;
  }
  body.our-client-modern .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}
