/* ═══════════════════════════════════════════════════════════════
   about.css — About Us page
   Palette: #E05B0F (orange), #2D2D2D (card bg), #222222 (page bg),
            #1a1a1a (dark panel), #ffffff (text)
   Fonts loaded via master: procom-ds.css tokens — var(--font-sans) (Aspira,
   body) and var(--font-heading) (Boris Black Bloxx, headings).
   WCAG AA targets:
     body text on #1a1a1a / #222222 / #2D2D2D ≥ 4.5 : 1
     large text (≥ 18px normal or ≥ 14px bold) ≥ 3 : 1
═══════════════════════════════════════════════════════════════ */

/* ── Legacy classes referenced by other pages ───────────────── */
.orange-text {
  background: linear-gradient(90deg, var(--procom-orange), var(--orange-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.black-text  { color: #ffffff; }
.procom-title {
  font-family: 'BorisBlackBloxx', sans-serif;
  font-weight: 400;
  font-size: 50px;
  background: linear-gradient(90deg, var(--procom-orange), var(--orange-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Scroll-reveal animation ─────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
[data-reveal].au-revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ── Shared utilities ────────────────────────────────────────── */
.au-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Orange gradient text — WCAG: large-text decorative use only */
.au-orange {
  background: linear-gradient(90deg, var(--procom-orange), var(--orange-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section eyebrow label */
.au-section-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-300);
  margin-bottom: 10px;
}

/* Section h2 — white on dark backgrounds: 15.91:1 on #222222, never below 13:1 ✓ */
.au-section-h2 {
  font-family: 'BorisBlackBloxx', var(--font-sans);
  font-weight: 400;
  font-size: clamp(26px, 4vw, 40px);
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.au-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.au-section-header .au-section-badge { display: block; }

/* Body copy
   #9ca3af on #222222 → 6.27:1 ≥ 4.5:1 AA normal text ✓ */
.au-body-text {
  font-size: 15px;
  line-height: 1.8;
  color: #9ca3af;
  margin-bottom: 18px;
}

/* CTA buttons */
.au-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
  white-space: nowrap;
}
/* White on the orange gradient → 3.70:1 at #E05B0F, 4.78:1 at #C24E0C.
   Label is 14px/600 — NOT large text (that needs 18.66px bold), so 4.5:1
   applies and the lighter end of the gradient fails. ✗ */
.au-btn--fill {
  background: linear-gradient(90deg, var(--procom-orange), var(--orange-600));
  color: #ffffff;
  border: 2px solid transparent;
}
.au-btn--fill:hover { background: var(--orange-600); color: #fff; transform: translateY(-2px); }
.au-btn--outline {
  background: transparent;
  color: var(--orange-300);
  border: 2px solid var(--orange-300);
}
.au-btn--outline:hover { background: var(--procom-orange); color: #ffffff; transform: translateY(-2px); }

/* ── Decorative hex shapes ───────────────────────────────────── */
.au-hex-deco,
.au-mv-hex,
.au-cta-hex {
  position: absolute;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(224, 91, 15, 0.06);
  pointer-events: none;
  z-index: 0;
}


/* ═══════════════════════════════════════════════════════════════
   1. HERO BANNER
═══════════════════════════════════════════════════════════════ */
.au-hero {
  position: relative;
  background: #2D2D2D;
  border-radius: 0 0 50px 50px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

/* Top-right: large, bottom-left: medium — both 6% orange base */
.au-hex-deco--1 { width: 520px; height: 520px; top: -120px; right: -100px; opacity: 1; }
.au-hex-deco--2 { width: 300px; height: 300px; bottom: -80px; left: -80px; opacity: 1; }

.au-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 40px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.au-hero-content { width: 100%; }

/* #ED8E4E on #2D2D2D → 5.63:1 ≥ 4.5:1 AA normal text ✓ */
.au-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--orange-300);
  margin-bottom: 14px;
}

/* White on #2D2D2D → 13.77:1 ✓ */
.au-hero-h1 {
  font-family: 'BorisBlackBloxx', var(--font-heading);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 64px);
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 16px;
}

/* #ED8E4E on #2D2D2D → 5.63:1 ≥ 4.5:1 AA normal text ✓ */
.au-hero-sub {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--orange-300);
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* #c0c0c0 on #2D2D2D → 7.57:1 ≥ 4.5:1 AA normal text ✓ */
.au-hero-body {
  font-size: 16px;
  line-height: 1.75;
  color: #c0c0c0;
  max-width: 100%;
  margin-bottom: 36px;
}

/* ── Hero inline stats ─────────────────────────────────────── */
.au-hs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
}

.au-hs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 0 36px;
}

.au-hs-num {
  font-family: 'BorisBlackBloxx', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  color: #ffffff;
}

.au-hs-lbl {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: .04em;
  white-space: nowrap;
}

.au-hs-div {
  width: 1px;
  height: 44px;
  background: rgba(224,91,15,0.4);
  flex-shrink: 0;
}

.au-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}


/* ═══════════════════════════════════════════════════════════════
   2. OUR STORY
═══════════════════════════════════════════════════════════════ */
.au-story { padding: 80px 0 16px; background: #222222; }

.au-story-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}

/* Stat cards — orange gradient background */
.au-stats {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.au-stat {
  flex: 1;
  min-width: 90px;
  background: linear-gradient(135deg, var(--procom-orange), var(--orange-600));
  border-radius: 14px;
  padding: 16px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.2s;
}
.au-stat:hover { transform: translateY(-4px); }

/* White on the orange gradient → 3.70:1 at #E05B0F. 32px = large text, needs 3:1 ✓ */
.au-stat-num {
  font-family: 'BorisBlackBloxx', sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: #ffffff;
  line-height: 1;
}

/* White on orange at 13px bold: supporting context for large stat number above. */
.au-stat-lbl {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: .05em;
  line-height: 1.3;
}

/* Brands panel */
.au-brands-panel {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 28px 24px;
}

.au-brands-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.au-brand-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

/* #ED8E4E on #2a2a2a → 5.86:1 ≥ 4.5:1 AA normal text ✓ */
.au-brand-pill {
  display: inline-block;
  background: #2a2a2a;
  border: 1px solid rgba(224,91,15,0.3);
  color: var(--orange-300);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: .04em;
}

/* #9ca3af on #1a1a1a → 6.86:1 ≥ 4.5:1 AA normal text ✓ */
.au-brands-footnote {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}


/* ═══════════════════════════════════════════════════════════════
   3. MISSION & VISION
═══════════════════════════════════════════════════════════════ */
.au-mv {
  position: relative;
  background: #1a1a1a;
  padding: 64px 0;
  overflow: hidden;
}

.au-mv-hex--l { width: 500px; height: 500px; left:  -200px; top: -100px; }
.au-mv-hex--r { width: 360px; height: 360px; right: -140px; bottom: -80px; }

.au-mv-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  align-items: start;
}

/* Mission card — no left border (it's first) */
.au-mv-card {
  padding: 0 52px 0 0;
}

.au-mv-card + .au-mv-sep + .au-mv-card {
  padding: 0 0 0 52px;
}

.au-mv-sep {
  background: rgba(224,91,15,0.45);
  align-self: center;
  height: 140px;   /* decorative ~80% height, vertically centred */
  min-height: unset;
  margin: 0;
}

.au-mv-icon {
  width: 52px;
  height: 52px;
  background: rgba(224,91,15,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* White on #1a1a1a → 17.40:1 ✓ */
.au-mv-label {
  font-family: 'BorisBlackBloxx', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: .04em;
}

/* #9ca3af on #1a1a1a → 6.86:1 ≥ 4.5:1 AA normal text ✓ */
.au-mv-text {
  font-size: 15px;
  line-height: 1.8;
  color: #9ca3af;
}


/* ═══════════════════════════════════════════════════════════════
   4. VALUES
═══════════════════════════════════════════════════════════════ */
.au-values { padding: 80px 0; background: #222222; }

.au-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.au-value-card {
  background: #2D2D2D;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: border-color .2s ease, transform .2s ease;
}
.au-value-card:hover {
  border-color: rgba(224,91,15,0.45);
  transform: translateY(-4px);
}

/* Hexagonal icon — orange gradient fill */
.au-value-hex {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--procom-orange), var(--orange-600));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
}

/* White on #2D2D2D → 13.77:1 ✓ */
.au-value-label {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: .03em;
  line-height: 1.3;
}


/* ═══════════════════════════════════════════════════════════════
   5. MEET THE TEAM
═══════════════════════════════════════════════════════════════ */
.au-team { padding: 88px 0; background: #1a1a1a; }

.au-team-row {
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: center;
}
.au-team-row--4 { grid-template-columns: repeat(4, minmax(0, 240px)); }
.au-team-row--2 { grid-template-columns: repeat(2, minmax(0, 240px)); }

.au-team-card {
  background: #2D2D2D;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px 20px 24px;
  text-align: center;
  transition: border-color .2s ease, transform .2s ease;
}
.au-team-card:hover {
  border-color: rgba(224,91,15,0.4);
  transform: translateY(-4px);
}

/* Photo container — always shows #FF6600 fallback behind the image */
.au-team-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: #FF6600;        /* fallback when image absent */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid rgba(255, 102, 0, 0.28);
}

/* Actual photo — sits on top of initials; hidden via onerror if missing */
.au-team-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Initials fallback — always rendered, visible only when image is absent */
.au-team-initials {
  font-family: 'BorisBlackBloxx', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: .05em;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* Orange gradient on #2D2D2D — large decorative text ✓ */
.au-team-name {
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--procom-orange), var(--orange-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
  line-height: 1.3;
}

/* #aaaaaa on #2D2D2D → 5.93:1 ≥ 4.5:1 AA normal text ✓ */
.au-team-role {
  font-size: 12px;
  font-weight: 500;
  color: #aaaaaa;
  letter-spacing: .04em;
}


/* ═══════════════════════════════════════════════════════════════
   6. INDUSTRIES WE SERVE
═══════════════════════════════════════════════════════════════ */
.au-industries {
  position: relative;
  padding: 80px 0;
  background: #222222;
  overflow: hidden;
}

.au-hex-deco--ind {
  width: 600px;
  height: 600px;
  right: -200px;
  top: -100px;
}

.au-industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.au-industry-tag {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255,102,0,0.4);
  background: transparent;
  color: var(--orange-300);
  font-size: 14px;
  font-weight: 500;
  cursor: default;
  transition: background .2s, border-color .2s, color .2s;
}
.au-industry-tag:hover {
  background: var(--procom-orange);
  border-color: var(--procom-orange);
  color: #ffffff;
}


/* ═══════════════════════════════════════════════════════════════
   7. CTA BAND
═══════════════════════════════════════════════════════════════ */
.au-cta-band {
  position: relative;
  background: #2D2D2D;
  padding: 80px 0;
  overflow: hidden;
}

.au-cta-hex--l { width: 460px; height: 460px; left:  -160px; top: -100px; }
.au-cta-hex--r { width: 320px; height: 320px; right: -100px; bottom: -60px; }

.au-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

/* White on #2D2D2D → 13.77:1 ✓ */
.au-cta-h2 {
  font-family: 'BorisBlackBloxx', sans-serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 24px;
}

.au-cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* #c0c0c0 on #2D2D2D → 7.57:1 ✓ · hover #F4B488 → 7.69:1 ✓ (lifts, not drops) */
.au-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #c0c0c0;
  text-decoration: none;
  transition: color .2s;
}
.au-contact-link:hover { color: var(--orange-200); }

.au-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   Mobile  < 768px:    1-column; hero stacks; stats 3-across
   Tablet  768–1024px: team 2-across; values 4-across (full layout kept)
   Desktop > 1024px:   full layout as designed
═══════════════════════════════════════════════════════════════ */

/* ── Tablet: 768px – 1024px ─────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1024px) {
  .au-hero-inner   { padding: 72px 40px 64px; }
  .au-container    { padding: 0 32px; }

  /* Story: single-column at tablet */
  .au-story-grid   { grid-template-columns: 1fr; gap: 40px; }
  .au-story-right  { max-width: 560px; }

  /* Values: stay 4-across per spec */
  /* (no change needed — desktop rule already sets repeat(4,1fr)) */

  /* Team: 2-across per spec */
  .au-team-row--4  { grid-template-columns: repeat(2, minmax(0, 260px)); }
  .au-team-row--2  { grid-template-columns: repeat(2, minmax(0, 260px)); }
}

/* ── Mobile: < 768px ────────────────────────────────────────── */
@media (max-width: 767px) {
  .au-container { padding: 0 20px; }

  /* Hero: single column centred, smaller heading */
  .au-hero { border-radius: 0 0 32px 32px; min-height: auto; }
  .au-hero-inner { padding: 52px 20px 48px; }
  .au-hero-h1    { font-size: clamp(36px, 10vw, 48px); }
  .au-hero-body  { font-size: 15px; }

  /* Hero stats: reduce side padding so they fit */
  .au-hs-item { padding: 0 20px; }
  .au-hs-num  { font-size: 30px; }
  .au-hs-lbl  { font-size: 11px; }

  /* Story: single column */
  .au-story        { padding: 48px 0 12px; }
  .au-story-grid   { grid-template-columns: 1fr; gap: 36px; }

  /* Stat cards: 3-across using flex (nowrap forces 3 side-by-side) */
  .au-stats        { flex-wrap: nowrap; gap: 10px; margin-top: 28px; }
  .au-stat         { min-width: 0; flex: 1; padding: 12px 8px; }
  .au-stat-num     { font-size: 22px; }
  .au-stat-lbl     { font-size: 11px; }

  /* Mission & Vision: single column, both get left border */
  .au-mv           { padding: 48px 0; }
  .au-mv-grid      { grid-template-columns: 1fr; gap: 32px; }
  .au-mv-sep       { display: none; }
  .au-mv-card      { padding: 0 0 0 20px; border-left: 3px solid var(--procom-orange); }
  /* Override the sibling selector that styles the second card */
  .au-mv-card + .au-mv-sep + .au-mv-card { padding: 0 0 0 20px; }

  /* Values: 2-column (8 single-col cards would be impractically tall) */
  .au-values       { padding: 48px 0; }
  .au-values-grid  { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .au-value-card   { padding: 20px 14px; }
  .au-value-hex    { width: 44px; height: 44px; }

  /* Team: single column per spec */
  .au-team         { padding: 48px 0; }
  .au-team-row     { margin-bottom: 16px; }
  .au-team-row--4,
  .au-team-row--2  { grid-template-columns: 1fr; }
  /* Centre 2-col row on mobile */
  .au-team-row--2  { max-width: 280px; margin-left: auto; margin-right: auto; }

  /* Industries */
  .au-industries   { padding: 48px 0; }
  .au-industry-tag { padding: 9px 18px; font-size: 13px; }

  /* CTA band */
  .au-cta-band     { padding: 48px 0; }
  .au-cta-inner    { flex-direction: column; text-align: center; align-items: center; }
  .au-cta-contacts { align-items: center; }
  .au-cta-btns     { flex-direction: row; justify-content: center; flex-wrap: wrap; width: 100%; }

  /* Section headers */
  .au-section-header { margin-bottom: 32px; }
}

/* ── Very small: < 420px ────────────────────────────────────── */
@media (max-width: 419px) {
  .au-hero-btns   { flex-direction: column; align-items: flex-start; }
  .au-btn         { width: 100%; text-align: center; }
  .au-stats       { gap: 8px; }
  .au-stat-num    { font-size: 20px; }
  .au-team-row--2 { max-width: 240px; }
  .au-cta-btns    { flex-direction: column; align-items: center; }
  .au-cta-btns .au-btn { width: 260px; text-align: center; }
}
