/* =========================================================================
   about.css
   Page-specific styles for about.html. Header, footer, buttons, cards,
   stats bar, logo strip and final CTA all reuse the shared components in
   nav.css — this file only holds what's unique to About Us.
   ========================================================================= */

/* ---- Hero ---- */
.about-hero {
  margin-top: -84px;
  padding: calc(84px + clamp(48px, 7vw, 90px)) 0 clamp(56px, 8vw, 100px);
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgb(54, 181, 183) 0%,rgb(19, 126, 105) 100%);
}

.about-hero h1 {
  color: #ffffff;
  max-width: 80%;
  margin: 0 auto;
}

.about-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 56ch;
  margin: 18px auto 0;
}

/* ---- Pillars (Trust / Responsibility / Sustainability) ---- */
.pillars-row {
  margin-top: clamp(36px, 6vw, 56px);
}

.pillar-card {
  background: rgb(248 248 248);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 26px 22px;
  height: 100%;
  text-align: left;
}

.pillar-card h3 {
  color: #000;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.pillar-card p {
  color: #000;
  font-size: 0.875rem;
}

/* ---- Who We Are ---- */
.who-we-are {
  padding: clamp(56px, 8vw, 100px) 0;
}

.who-we-are .section-eyebrow {
  display: block;
  margin-bottom: 10px;
}

.who-we-are p + p {
  margin-top: 16px;
}

.who-we-are-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.who-we-are-stats .stat-cell-alt {
  background: #f5f7f8;
  border-radius: 12px;
  padding: 20px;
}

.who-we-are-stats .stat-cell-alt .num {
  font-size: 1.7rem;
  font-weight: 800;
  color: #12181a;
}

.who-we-are-stats .stat-cell-alt .lbl {
  font-size: 0.82rem;
  color: #6b7876;
  margin-top: 2px;
}

/* ---- Meet the Team ---- */
.team-section {
  padding: clamp(56px, 8vw, 100px) 0;
  background: #f9faf9;
}

.team-card {
  text-align: center;
  height: 100%;
}

.team-avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.6rem;
}

.team-card h3 {
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.team-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1a9d63;
  margin-bottom: 10px;
  display: block;
}

.team-card p {
  font-size: 0.85rem;
}

/* ---- Partner CTA banner ---- */
.partner-banner {
  background: #12181a;
  border-radius: 18px;
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: clamp(40px, 6vw, 64px);
}

.partner-banner h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 6px;
  max-width: 480px;
}

.partner-banner p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  max-width: 480px;
}

/* ---- Happy clients logo wall ---- */
.clients-section {
  padding: clamp(56px, 8vw, 100px) 0;
  text-align: center;
}

.clients-section .section-sub {
  margin: 0 auto;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: #e4e7e5;
  border: 1px solid #e4e7e5;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 40px;
}

.clients-grid .logo-placeholder {
  background: #ffffff;
  padding: 26px 10px;
  justify-content: center;
  height: auto;
  font-size: 1rem;
  color: #a6b0ae;
  font-weight: 700;
}

/* ---- Global presence ---- */
.presence-section {
  background-image: linear-gradient(0deg, rgb(113, 136, 223), rgb(17, 213, 207));
  padding: clamp(56px, 8vw, 90px) 0;
  text-align: center;
}

.presence-section h2,
.presence-section p {
  color: #ffffff;
}

.presence-section p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto;
}

.presence-stats {
  margin-top: 40px;
}

.presence-stats .stat-num {
  font-size: 44px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .who-we-are-stats {
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
  }
  .presence-stats .stat-num {
    font-size: 34px;
    font-weight: 600;
}

  .partner-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .pillar-card p {
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid #e4e7e5;
  }
  .clients-grid .logo-placeholder {
    background: #ffffff;
    padding: 26px 10px;
    justify-content: center;
    height: auto;
    font-size: 1rem;
    color: #a6b0ae;
    font-weight: 700;
  }
  
}