﻿/* â”€â”€â”€ Section Base â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sec-clients {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 120px 0 110px;
  background: #06091e;
}

.sec-clients::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 55% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(58,141,255,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.sec-clients::after {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.25), transparent);
}

.clients-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 2;
}

/* â”€â”€â”€ Our Clients Header â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.clients-header {
  text-align: center;
  margin-bottom: 52px;
}

.clients-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 30px;
  padding: 7px 20px;
  margin-bottom: 22px;
}

.clients-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

.clients-eyebrow-text {
  font-size: 11px; font-weight: 700;
  color: var(--gold); letter-spacing: 2.5px;
  text-transform: uppercase;
}

.clients-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.clients-headline .hl-gold {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.clients-subhead {
  font-size: 14.5px;
  color: rgba(255,255,255,0.42);
  max-width: 480px; margin: 0 auto;
  line-height: 1.75;
}

/* â”€â”€â”€ Logo Grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.clients-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.client-logo-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 32px 24px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative; overflow: hidden;
  min-height: 140px;
}

.client-logo-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
  transition: background 0.3s;
}

.client-logo-card:hover {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.client-logo-card:hover::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Featured logo cards (United Group + HMD â€” from screenshot) */
.client-logo-card.featured-client {
  border-color: rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.04);
}

.client-logo-card.featured-client:hover {
  border-color: rgba(201,168,76,0.45);
  background: rgba(201,168,76,0.09);
}

/* Logo icon block */
.clc-logo-block {
  width: 64px; height: 64px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  position: relative;
  flex-shrink: 0;
}

/* United Group â€” dark red brand */
.clc-logo-block.united {
  background: linear-gradient(135deg, #8b1a1a, #c0392b);
  box-shadow: 0 6px 20px rgba(192,57,43,0.35);
  border: 1px solid rgba(255,100,100,0.2);
}

/* HMD â€” navy brand */
.clc-logo-block.hmd {
  background: linear-gradient(135deg, #0d2040, #1a3a6b);
  box-shadow: 0 6px 20px rgba(26,58,107,0.4);
  border: 1px solid rgba(58,141,255,0.2);
}

/* Generic clients */
.clc-logo-block.green-brand  { background: linear-gradient(135deg, #0d3b1e, #1a7a3a); box-shadow: 0 4px 16px rgba(26,122,58,0.3); }
.clc-logo-block.purple-brand { background: linear-gradient(135deg, #1a0d3b, #3a1a7a); box-shadow: 0 4px 16px rgba(58,26,122,0.3); }
.clc-logo-block.teal-brand   { background: linear-gradient(135deg, #0d2e3b, #1a6a7a); box-shadow: 0 4px 16px rgba(26,106,122,0.3); }
.clc-logo-block.gold-brand   { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); box-shadow: 0 4px 16px rgba(201,168,76,0.35); }

.clc-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.clc-sector {
  font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* â”€â”€â”€ "More clients" row â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.clients-more-row {
  display: flex; align-items: center;
  justify-content: center; gap: 12px;
  margin-bottom: 80px;
  font-size: 13px; color: rgba(255,255,255,0.35);
}

.clients-more-row .more-dots {
  display: flex; gap: 5px;
}

.clients-more-row .more-dots span {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(201,168,76,0.3);
}

/* â”€â”€â”€ Divider â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.clients-divider {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 72px;
}

.cd-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
}

.cd-label {
  font-size: 11px; font-weight: 700;
  color: rgba(201,168,76,0.5); letter-spacing: 2px;
  text-transform: uppercase; white-space: nowrap;
}

/* â”€â”€â”€ AI Partner Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.partner-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 64px;
}

.partner-left {}

.partner-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 18px;
}

.partner-eyebrow-line {
  width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.partner-eyebrow-text {
  font-size: 11px; font-weight: 700;
  color: var(--gold); letter-spacing: 2.5px;
  text-transform: uppercase;
}

.partner-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 700; line-height: 1.2;
  color: var(--white); letter-spacing: -1.2px;
  margin-bottom: 20px;
}

.partner-headline .hl-blue {
  background: linear-gradient(90deg, #3a8dff, #00c6ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.partner-body {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8; margin-bottom: 16px;
}

.partner-body strong {
  color: var(--gold-light); font-weight: 600;
}

.partner-highlight-text {
  font-size: 16px; font-weight: 600;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  padding: 20px 24px;
  background: rgba(201,168,76,0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  margin-bottom: 28px;
}

.partner-highlight-text em {
  color: var(--gold-light); font-style: normal; font-weight: 700;
}

/* Partner feature pills */
.partner-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 32px;
}

.partner-pill {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 12.5px; font-weight: 600;
  color: rgba(255,255,255,0.65);
  transition: all 0.2s ease;
  cursor: default;
}

.partner-pill:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.3);
  color: var(--gold-light);
}

.partner-pill .pp-icon { font-size: 14px; }

/* CTA Button */
.btn-partner-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--navy); border: none;
  padding: 16px 36px; border-radius: 50px;
  font-size: 15px; font-weight: 800; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
  font-family: 'Space Grotesk', sans-serif;
  position: relative; overflow: hidden;
}

.btn-partner-gold::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0; transition: opacity 0.3s;
}

.btn-partner-gold:hover::before { opacity: 1; }
.btn-partner-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(201,168,76,0.55);
}

.btn-partner-gold span { position: relative; z-index: 1; }

/* â”€â”€â”€ Right Side: Visual Card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.partner-right {}

.partner-visual-card {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.03));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 24px;
  padding: 40px 36px;
  position: relative; overflow: hidden;
}

.partner-visual-card::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.pvc-icon {
  font-size: 42px; margin-bottom: 20px;
  display: block;
  animation: floatEmoji 3.5s ease-in-out infinite;
}

.pvc-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px; font-weight: 700;
  color: var(--white); margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.pvc-steps {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 28px;
}

.pvc-step {
  display: flex; align-items: flex-start; gap: 14px;
}

.pvc-step-num {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900;
  color: var(--navy); flex-shrink: 0;
  font-family: 'Space Grotesk', sans-serif;
}

.pvc-step-content {}

.pvc-step-title {
  font-size: 13px; font-weight: 700;
  color: var(--white); margin-bottom: 2px;
}

.pvc-step-desc {
  font-size: 11.5px; color: rgba(255,255,255,0.42);
  line-height: 1.5;
}

.pvc-footer {
  display: flex; align-items: center; gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.pvc-footer-icon {
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.12);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}

.pvc-footer-text {
  font-size: 12.5px; color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.pvc-footer-text strong { color: var(--gold-light); font-weight: 700; }

/* â”€â”€â”€ Bottom CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.clients-cta-bar {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
  background: linear-gradient(135deg, rgba(58,141,255,0.07), rgba(58,141,255,0.03));
  border: 1px solid rgba(58,141,255,0.18);
  border-radius: 20px;
  padding: 32px 40px;
  position: relative; overflow: hidden;
}

.clients-cta-bar::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(58,141,255,0.5), transparent);
}

.ccb-left { position: relative; z-index: 1; }

.ccb-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
  letter-spacing: -0.4px;
}

.ccb-sub {
  font-size: 14px; color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.ccb-right {
  display: flex; gap: 12px; align-items: center;
  flex-shrink: 0; position: relative; z-index: 1;
}

.btn-ccb-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy); border: none;
  padding: 13px 26px; border-radius: 50px;
  font-size: 13.5px; font-weight: 800; cursor: pointer;
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  transition: all 0.3s ease; font-family: 'Space Grotesk', sans-serif;
  box-shadow: 0 6px 22px rgba(201,168,76,0.35);
  white-space: nowrap;
}

.btn-ccb-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201,168,76,0.5);
}

.btn-ccb-ghost {
  background: transparent; color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.13);
  padding: 12px 24px; border-radius: 50px;
  font-size: 13.5px; font-weight: 600; cursor: pointer;
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  transition: all 0.3s ease; font-family: 'Space Grotesk', sans-serif;
  white-space: nowrap;
}

.btn-ccb-ghost:hover {
  border-color: rgba(201,168,76,0.4);
  color: var(--gold-light);
  background: rgba(201,168,76,0.06);
  transform: translateY(-2px);
}

/* â”€â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  .clients-logo-grid { grid-template-columns: repeat(3, 1fr); }
  .partner-block { grid-template-columns: 1fr; gap: 40px; }
  .clients-cta-bar { flex-direction: column; text-align: center; }
  .ccb-right { justify-content: center; }
}

@media (max-width: 680px) {
  .clients-container { padding: 0 20px; }
  .clients-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .sec-clients { padding: 80px 0 70px; }
}
