/* ==========================================================
   MANOBAL HR SERVICES — MASTER STYLESHEET v3.0
   Single file. No conflicts. Full responsive system.
   ========================================================== */

/* ── 1. CSS CUSTOM PROPERTIES ── */
:root {
  --navy:         #0F172A;
  --navy-dark:    #020617;
  --blue:         #007CC2;
  --gold:         #D4AF37;
  --gold-bright:  #FACC15;
  --orange:       #E67E22;
  --text:         #1E293B;
  --text-light:   #64748B;
  --text-muted:   #94A3B8;
  --bg:           #F8FAFC;
  --white:        #FFFFFF;
  --gray:         #E2E8F0;
  --gray-light:   #F1F5F9;
  --shadow-sm:    0 2px 8px rgba(15,23,42,0.06);
  --shadow-md:    0 4px 16px rgba(15,23,42,0.10);
  --shadow-lg:    0 8px 32px rgba(15,23,42,0.14);
  --tr:           all 0.3s cubic-bezier(0.4,0,0.2,1);
  --max-w:        1200px;
  --pad:          clamp(16px, 4vw, 40px);
  --touch:        44px;
  --fs-xl:        clamp(2rem,   5vw,   3.8rem);
  --fs-lg:        clamp(1.5rem, 3.5vw, 2.6rem);
  --fs-md:        clamp(1.1rem, 2vw,   1.6rem);
  --fs-base:      clamp(0.9rem, 1.4vw, 1rem);
  --fs-sm:        clamp(0.8rem, 1.2vw, 0.88rem);
}

/* ── 2. RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img, picture, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; }
ul, ol { list-style: none; padding: 0; }
a { color: inherit; }
h1,h2,h3,h4,h5,h6 { overflow-wrap: break-word; line-height: 1.2; color: var(--navy); font-weight: 700; }
h1 { font-size: var(--fs-xl); }
h2 { font-size: var(--fs-lg); }
h3 { font-size: var(--fs-md); }
p  { font-size: var(--fs-base); line-height: 1.7; color: var(--text-light); }

/* ── 3. LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); width: 100%; }
.site { display: flex; flex-direction: column; min-height: 100vh; }
.site-main { flex: 1; }

.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--blue); color: #fff;
  padding: 8px 16px; border-radius: 4px; z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── 4. HEADER ── */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 2000;
  width: 100%;
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
  flex-wrap: nowrap;
}

.site-logo { flex-shrink: 0; }
.site-logo a { display: flex; align-items: center; }
.site-logo img, .site-logo .custom-logo {
  max-height: clamp(48px, 7vw, 90px);
  width: auto; object-fit: contain; display: block;
}

/* ── 5. DESKTOP NAVIGATION ── */
.main-navigation {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: clamp(14px, 2vw, 32px);
  align-items: center;
  flex-wrap: nowrap;
  margin: 0; padding: 0;
}
.nav-menu li { position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center;
  min-height: var(--touch); padding: 8px 0;
  color: var(--navy); text-decoration: none;
  font-weight: 700;
  font-size: clamp(0.78rem, 1.1vw, 0.92rem);
  text-transform: uppercase; letter-spacing: 0.5px;
  white-space: nowrap; transition: color 0.2s;
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a { color: var(--blue); }

.nav-menu .sub-menu {
  position: absolute; top: calc(100% + 4px); left: 0;
  min-width: 220px; list-style: none; padding: 8px 0;
  background: var(--white); box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--blue);
  border-radius: 0 0 6px 6px;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 3000; pointer-events: none;
}
.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: all;
}
.nav-menu .sub-menu li { border-bottom: 1px solid var(--gray-light); }
.nav-menu .sub-menu li:last-child { border-bottom: none; }
.nav-menu .sub-menu li a {
  display: block; padding: 10px 20px;
  font-size: 0.87rem; font-weight: 500;
  color: var(--text); text-decoration: none;
  text-transform: none; letter-spacing: normal;
  white-space: normal; min-height: unset;
  transition: background 0.15s, color 0.15s, padding-left 0.18s;
}
.nav-menu .sub-menu li a:hover { background: var(--gray-light); color: var(--blue); padding-left: 26px; }

/* ── 6. HEADER CTA ── */
.header-actions { flex-shrink: 0; }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; min-height: var(--touch);
  padding: clamp(10px,1.4vw,13px) clamp(16px,2vw,26px);
  background: var(--blue); color: var(--white) !important;
  font-weight: 800; font-size: clamp(0.75rem, 1vw, 0.87rem);
  text-transform: uppercase; letter-spacing: 0.5px;
  text-decoration: none; border-radius: 4px;
  white-space: nowrap; border: none; cursor: pointer;
  transition: var(--tr); flex-shrink: 0;
}
.btn-primary:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,124,194,0.35); }

/* ── 7. HAMBURGER BUTTON ── */
.mobile-menu-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  width: 44px; height: 44px; min-width: 44px;
  background: transparent;
  border: 1.5px solid rgba(15,23,42,0.18);
  border-radius: 6px; cursor: pointer;
  padding: 0; gap: 5px; flex-shrink: 0;
  transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none;
}
.mobile-menu-toggle:hover { border-color: var(--blue); }
.mobile-menu-toggle .bar {
  display: block; width: 20px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
.mobile-menu-toggle.is-active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.is-active .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 8. OVERLAY ── */
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(15,23,42,0.55); z-index: 1850;
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  cursor: pointer;
}
.nav-overlay.active { display: block; }

/* ── 9. MOBILE NAV (≤992px) ── */
@media (max-width: 992px) {
  .mobile-menu-toggle { display: flex; }
  .header-actions { display: none; }

  .main-navigation {
    position: fixed !important;
    top: 0 !important; right: -110% !important;
    bottom: 0 !important; left: auto !important;
    width: min(300px, 85vw) !important;
    height: 100vh !important; height: 100dvh !important;
    background: var(--white) !important;
    box-shadow: -6px 0 32px rgba(15,23,42,0.18) !important;
    padding: 70px 20px 40px !important;
    overflow-y: auto !important; overflow-x: hidden !important;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1) !important;
    z-index: 1900 !important;
    display: block !important;
    flex: none !important;
    justify-content: flex-start !important;
    overscroll-behavior: contain;
  }
  .main-navigation.nav-open { right: 0 !important; }

  .nav-menu {
    flex-direction: column !important; gap: 0 !important;
    align-items: stretch !important; width: 100% !important;
  }
  .nav-menu li { border-bottom: 1px solid var(--gray-light) !important; width: 100% !important; }
  .nav-menu > li > a {
    display: flex !important; justify-content: space-between !important;
    align-items: center !important; padding: 14px 8px !important;
    font-size: 0.95rem !important; min-height: var(--touch) !important; width: 100% !important;
  }
  .menu-item-has-children > a::after {
    content: '›'; font-size: 1.3rem; line-height: 1;
    margin-left: auto; padding-left: 8px;
    transition: transform 0.2s ease; flex-shrink: 0;
  }
  .menu-item-has-children.sub-open > a::after { transform: rotate(90deg); }

  .nav-menu .sub-menu {
    position: static !important; opacity: 1 !important;
    visibility: visible !important; transform: none !important;
    box-shadow: none !important; border-top: none !important;
    border-radius: 0 !important; background: var(--gray-light) !important;
    padding: 0 !important; display: none !important;
    pointer-events: all !important; min-width: unset !important; width: 100% !important;
  }
  .nav-menu .sub-menu.sub-open { display: block !important; }
  .nav-menu .sub-menu li { border-bottom: 1px solid var(--gray) !important; }
  .nav-menu .sub-menu li a {
    padding: 12px 20px !important; font-size: 0.88rem !important;
    color: var(--text) !important; min-height: var(--touch) !important;
    display: flex !important; align-items: center !important;
  }
  .nav-menu .sub-menu li a:hover { padding-left: 28px !important; }
}

/* ── 10. BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; min-height: var(--touch); padding: 12px 28px;
  border-radius: 4px; font-weight: 700; font-size: 0.9rem;
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: var(--tr); white-space: nowrap;
}
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--navy); }
.btn-gold { background: var(--gold-bright); color: var(--navy-dark); }
.btn-gold:hover { background: #fff; box-shadow: var(--shadow-md); }
.btn-outline-gold { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy-dark); }
.btn-manobal {
  background: var(--gold-bright); color: var(--navy-dark);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  border: none;
}
.btn-manobal:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ── 11. HERO SECTIONS ── */
.hero-v2, .services-hero, .about-hero, .page-header-modern {
  min-height: clamp(380px, 55vh, 100vh);
  display: flex; align-items: center;
  padding: clamp(60px, 10vw, 120px) 0;
  position: relative; overflow: hidden;
}

/* ── 12. SECTION UTILITIES ── */
.section-pad { padding: clamp(50px, 8vw, 100px) 0; }
.section-label {
  display: block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  margin-bottom: 12px; color: var(--blue);
}
.section-title { font-size: var(--fs-lg); color: var(--navy); margin-bottom: 12px; }
.section-desc  { font-size: var(--fs-base); color: var(--text-light); max-width: 560px; line-height: 1.7; }
.text-center   { text-align: center; }
.text-center .section-desc { margin: 0 auto; }
.gold-text { color: var(--gold-bright); }

/* ── 13. GRIDS ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px,3vw,40px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px,2.5vw,32px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px,2.5vw,32px); }
.scale-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(10px, 1.5vw, 20px); }
.framework-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: clamp(10px, 1.5vw, 20px); }
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 2vw, 24px); }
.bento-card-large { grid-column: span 2; grid-row: span 2; }
.bento-card-medium { grid-column: span 2; }
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px,2.5vw,30px); }
.programs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px,2.5vw,32px); }
.service-showcase-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,60px); align-items: center; }
.service-showcase-card.reverse .service-showcase-inner { direction: rtl; }
.service-showcase-card.reverse .service-showcase-content { direction: ltr; }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px,2.5vw,30px); }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px,3vw,40px); }
.story-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(30px,5vw,70px); align-items: center; }
.story-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px,2vw,24px); }
.feature-box-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(10px,1.5vw,16px); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px,3vw,36px); }
.stats-float-card { display: grid; grid-template-columns: repeat(3, 1fr); }
.footer-widgets { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(24px,4vw,56px); }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }

/* ── 14. CARDS ── */
.card {
  background: var(--white); border-radius: 8px;
  border: 1px solid var(--gray); padding: clamp(20px,3vw,36px);
  transition: var(--tr);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.scale-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10);
  padding: clamp(24px,3vw,44px) clamp(16px,2vw,28px);
  text-align: center; transition: var(--tr); border-radius: 4px; cursor: default;
}
.scale-card:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-10px); }
.scale-card:hover .scale-letter,
.scale-card:hover .scale-word,
.scale-card:hover .scale-desc { color: var(--navy-dark); }
.scale-letter {
  display: block; font-size: clamp(2.5rem,5vw,4rem); font-weight: 900;
  color: var(--gold-bright); line-height: 1; margin-bottom: 10px; transition: var(--tr);
}
.scale-word { display: block; font-size: clamp(0.85rem,1.3vw,1rem); font-weight: 700; color: #F8FAFC; margin-bottom: 8px; transition: var(--tr); }
.scale-desc { font-size: clamp(0.72rem,1.1vw,0.82rem); color: var(--text-muted); line-height: 1.5; transition: var(--tr); }

.framework-card {
  background: var(--white); padding: clamp(24px,3vw,44px) clamp(14px,2vw,24px);
  border: 1px solid var(--gray); text-align: center;
  border-radius: 4px; transition: var(--tr);
}
.framework-card:hover { border-color: var(--gold); transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.framework-letter {
  width: clamp(52px,7vw,68px); height: clamp(52px,7vw,68px);
  background: var(--navy); color: var(--gold); border: 2px solid var(--gold);
  font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 900;
  margin: 0 auto clamp(14px,2vw,20px);
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px; transition: var(--tr);
}
.framework-card:hover .framework-letter { background: var(--gold); color: var(--navy); border-color: transparent; }

.service-card {
  background: var(--white); padding: clamp(28px,4vw,56px);
  margin-bottom: clamp(24px,3vw,40px);
  border: 1px solid var(--gray); border-left: 5px solid var(--gold);
  border-radius: 0 6px 6px 0; transition: var(--tr);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.service-card:last-child { margin-bottom: 0; }

.partner-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10);
  padding: clamp(24px,3vw,40px); border-radius: 4px; transition: var(--tr);
}
.partner-card:hover { border-color: var(--gold); background: rgba(212,175,55,0.06); }
.partner-card h4 {
  color: var(--gold-bright); font-size: clamp(0.9rem,1.5vw,1.05rem);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px;
}
.partner-card p { color: var(--text-muted); font-size: clamp(0.85rem,1.3vw,0.95rem); line-height: 1.65; }

.team-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--tr); }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-card img { width: 100%; height: clamp(200px,28vw,280px); object-fit: cover; object-position: top; }
.team-card-body { padding: clamp(16px,2.5vw,28px); }

/* Program cards */
.program-card {
  position: relative; min-height: clamp(300px,40vw,500px);
  display: flex; align-items: flex-end; overflow: hidden; border-radius: 6px; cursor: pointer;
}
.program-card::before {
  content: ''; position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.25) grayscale(40%);
  transition: filter 0.7s ease, transform 0.7s ease; z-index: 1;
}
.program-card:hover::before { filter: brightness(0.45) grayscale(0%); transform: scale(1.04); }
.bridgeworx-card::before { background-image: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=900&q=75'); }
.elevate-card::before    { background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=900&q=75'); }
.program-inner {
  position: relative; z-index: 2; padding: clamp(24px,3vw,44px); width: 100%;
  background: linear-gradient(to top, rgba(2,6,23,0.95) 0%, rgba(2,6,23,0.6) 60%, transparent 100%);
}
.program-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.program-features { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 6px; }
.program-features li { font-size: clamp(0.78rem,1.2vw,0.88rem); color: rgba(248,250,252,0.75); display: flex; align-items: center; gap: 8px; }
.program-features li::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* VM cards */
.vm-card {
  padding: clamp(32px,4vw,56px); background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.2); border-radius: 4px; transition: var(--tr);
}
.vm-card:hover { border-color: var(--gold-bright); background: rgba(212,175,55,0.06); }
.vm-icon {
  width: clamp(52px,7vw,68px); height: clamp(52px,7vw,68px);
  background: var(--gold-bright); color: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(1.3rem,2.2vw,1.7rem); border-radius: 4px; margin-bottom: clamp(20px,3vw,28px);
}
.vm-card h3 { font-size: clamp(1.1rem,2vw,1.5rem); color: var(--gold-bright); font-weight: 800; margin-bottom: 12px; }
.vm-card p { color: rgba(248,250,252,0.75); font-size: clamp(0.88rem,1.3vw,0.97rem); line-height: 1.7; }

/* Feature box */
.feature-box {
  background: var(--white); padding: clamp(14px,2vw,22px); border: 1px solid var(--gray);
  display: flex; align-items: center; gap: 12px;
  border-radius: 4px; transition: var(--tr);
  font-size: clamp(0.82rem,1.2vw,0.9rem); font-weight: 600; color: var(--navy);
}
.feature-box:hover { border-color: var(--gold); background: var(--navy); color: var(--white); }
.feature-box i { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.feature-box:hover i { color: var(--gold-bright); }

/* ── 15. FOOTER ── */
.site-footer {
  background: var(--navy); color: var(--white);
  padding: clamp(50px,7vw,90px) 0 0;
  border-top: 4px solid var(--gold);
}
.footer-widget h4 {
  color: var(--gold); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  margin-bottom: clamp(16px,2vw,24px);
}
.footer-widget p { color: #94A3B8; line-height: 1.7; font-size: 0.92rem; margin-bottom: 8px; }
.footer-link-list { display: flex; flex-direction: column; gap: 10px; }
.footer-link-list a { color: #94A3B8; text-decoration: none; font-size: 0.93rem; transition: color 0.2s, padding-left 0.2s; display: inline-block; padding: 2px 0; }
.footer-link-list a:hover { color: var(--blue); padding-left: 6px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); text-decoration: none; font-size: 0.95rem; transition: var(--tr);
}
.footer-social a:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-3px); }
.footer-contact { font-style: normal; display: flex; flex-direction: column; gap: 12px; }
.footer-contact p { display: flex; align-items: flex-start; gap: 10px; color: #94A3B8; margin: 0; font-size: 0.92rem; line-height: 1.5; }
.footer-contact i { color: var(--gold); width: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: #94A3B8; text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--blue); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  padding: clamp(16px,2.5vw,24px) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.82rem; color: rgba(255,255,255,0.35);
  margin-top: clamp(40px,6vw,64px);
}
.footer-bottom nav { display: flex; gap: 14px; align-items: center; }
.footer-bottom nav a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-bottom nav a:hover { color: var(--blue); }

/* ── 16. HERO STATS ── */
.hero-stats-strip { display: flex; gap: clamp(24px,4vw,64px); margin-top: clamp(36px,5vw,60px); padding-top: clamp(24px,3vw,36px); border-top: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap; }
.hero-stat-num { display: block; font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 800; color: var(--gold-bright); line-height: 1; margin-bottom: 6px; }
.hero-stat-label { font-size: clamp(0.72rem,1.2vw,0.82rem); color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }

.partner-stats { display: flex; justify-content: center; gap: clamp(30px,6vw,80px); flex-wrap: wrap; margin-top: clamp(48px,7vw,80px); }
.partner-stat-num { display: block; font-size: clamp(2.8rem,6vw,5rem); font-weight: 900; color: var(--gold-bright); line-height: 1; margin-bottom: 10px; }
.partner-stat-label { font-size: clamp(0.72rem,1.2vw,0.82rem); color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700; }

.stat-block { padding: clamp(24px,3.5vw,44px) clamp(16px,2vw,32px); text-align: center; border-right: 1px solid var(--gray); }
.stat-block:last-child { border-right: none; }
.stat-value { display: block; font-size: clamp(2rem,4.5vw,3.2rem); font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: clamp(0.75rem,1.1vw,0.85rem); color: var(--text-light); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }

/* ── 17. FEATURE LIST ── */
.feature-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(8px,1.2vw,12px); margin-bottom: clamp(18px,2.5vw,28px); }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--text); font-size: clamp(0.82rem,1.2vw,0.92rem); line-height: 1.5; }
.feature-list li::before { content: ''; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }

/* ── 18. SERVICE OUTCOME ── */
.service-outcome { background: rgba(15,23,42,0.04); border-left: 4px solid var(--gold); padding: clamp(14px,2vw,20px) clamp(16px,2.5vw,24px); font-weight: 600; color: var(--navy); font-size: clamp(0.85rem,1.2vw,0.95rem); border-radius: 0 4px 4px 0; }
.service-outcome strong { color: var(--blue); }
.service-subtitle { display: inline-block; color: var(--blue); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 8px; }

/* ── 19. CTA SECTIONS ── */
.services-cta, .about-cta, .services-cta-large {
  padding: clamp(60px,10vw,120px) 0;
  text-align: center; background: var(--navy); color: #F8FAFC; border-top: 5px solid var(--gold-bright);
}
.services-cta h2, .about-cta h2, .services-cta-large h2 { font-size: clamp(1.6rem,3.5vw,2.8rem); color: var(--white); margin-bottom: clamp(10px,2vw,18px); }
.services-cta p, .about-cta p, .services-cta-large p { color: rgba(248,250,252,0.75); max-width: 540px; margin: 0 auto clamp(28px,4vw,44px); line-height: 1.65; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── 20. TRUST STRIP ── */
.trust-strip { padding: clamp(36px,5vw,60px) 0; background: var(--navy-dark); text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
.trust-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.25em; font-weight: 600; margin-bottom: 24px; }
.trust-logos { display: flex; justify-content: center; gap: clamp(20px,4vw,56px); flex-wrap: wrap; opacity: 0.45; filter: grayscale(100%) brightness(2); }
.trust-logos span { font-size: clamp(0.85rem,1.5vw,1rem); font-weight: 700; color: #fff; letter-spacing: 0.1em; text-transform: uppercase; }

/* ── 21. TIMELINE ── */
.timeline { position: relative; max-width: 800px; margin: 50px auto 0; }
.timeline::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 4px; height: 100%; background: linear-gradient(to bottom, var(--navy), var(--gold)); border-radius: 2px; }
.timeline-item { position: relative; margin-bottom: 50px; }
.timeline-marker { position: absolute; left: 50%; transform: translateX(-50%); width: 20px; height: 20px; background: var(--gold); border: 4px solid var(--white); border-radius: 50%; z-index: 2; }
.timeline-content { position: relative; width: calc(50% - 40px); padding: 20px; background: var(--bg); border-radius: 8px; box-shadow: var(--shadow-sm); }
.timeline-item:nth-child(odd) .timeline-content  { left: 0; }
.timeline-item:nth-child(even) .timeline-content { left: calc(50% + 40px); }

/* ── 22. FAQ ── */
.faq-item { margin-bottom: 12px; border: 1px solid var(--gray); border-radius: 8px; overflow: hidden; }
.faq-question { padding: 18px 20px; background: var(--white); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question h3 { margin: 0; font-size: 1rem; color: var(--text); font-weight: 600; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; background: var(--bg); padding: 0 20px; }
.faq-item.active .faq-answer { max-height: 300px; padding: 18px 20px; }

/* ── 23. ABOUT HERO SPECIFICS ── */
.about-hero-inner { max-width: 760px; border-left: 5px solid var(--gold-bright); padding-left: clamp(20px,3vw,36px); }
.about-eyebrow { display: inline-block; background: var(--navy-dark); color: var(--gold-bright); padding: 5px 14px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px; }
.story-lead { font-size: clamp(1.1rem,2vw,1.4rem); color: var(--navy); font-weight: 700; line-height: 1.45; border-left: 5px solid var(--gold); padding-left: clamp(16px,2.5vw,28px); margin-bottom: clamp(16px,2.5vw,28px); }
.story-badge { display: inline-block; background: var(--navy); color: var(--gold-bright); padding: 5px 14px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 16px; }
.story-image-wrap { position: relative; }
.story-image-wrap img { width: 100%; height: clamp(300px,40vw,500px); object-fit: cover; border-radius: 6px; }
.story-accent-box { position: absolute; bottom: -20px; left: -20px; background: var(--gold); color: var(--navy-dark); padding: clamp(14px,2vw,20px) clamp(18px,2.5vw,28px); font-weight: 800; font-size: clamp(0.85rem,1.3vw,1rem); border-radius: 4px; max-width: 180px; line-height: 1.3; box-shadow: 0 8px 24px rgba(212,175,55,0.3); }
.story-accent-box strong { display: block; font-size: clamp(1.4rem,2.5vw,2rem); line-height: 1; }
.stats-float-card { background: var(--white); box-shadow: 0 24px 60px rgba(15,23,42,0.14); border-bottom: 4px solid var(--gold); margin-top: -48px; position: relative; z-index: 10; }

/* ── 24. SCROLL REVEAL ── */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ── 25. BREADCRUMBS ── */
.breadcrumbs { font-size: 0.85rem; color: var(--text-light); padding: 12px 0; }
.breadcrumbs a { color: var(--blue); text-decoration: none; }
.breadcrumbs .separator { margin: 0 6px; opacity: 0.5; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .scale-grid { grid-template-columns: repeat(3, 1fr); }
  .bento-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-widgets { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card-large { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 900px) {
  .scale-grid { grid-template-columns: repeat(3, 1fr); }
  .partner-grid { grid-template-columns: 1fr 1fr; }
  .stats-float-card { grid-template-columns: repeat(3, 1fr); }
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .vm-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .service-showcase-inner { grid-template-columns: 1fr; }
  .service-showcase-card.reverse .service-showcase-inner { direction: ltr; }
  .story-highlights { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .scale-grid { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card-large, .bento-card-medium { grid-column: span 1; grid-row: span 1; }
  .partner-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .footer-widgets { grid-template-columns: 1fr; }
  .footer-social { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom nav { justify-content: center; }
  .timeline::before { left: 24px; }
  .timeline-marker  { left: 24px; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { width: calc(100% - 64px); left: 64px !important; }
  .services-cta-large { background-attachment: scroll !important; }
  .feature-list { grid-template-columns: 1fr; }
  .hero-stats-strip { gap: 20px; }
}
@media (max-width: 600px) {
  .scale-grid { grid-template-columns: 1fr 1fr; }
  .story-highlights { grid-template-columns: 1fr; }
  .feature-box-grid { grid-template-columns: 1fr; }
  .stats-float-card { grid-template-columns: 1fr; }
  .stat-block { border-right: none; border-bottom: 1px solid var(--gray); }
  .stat-block:last-child { border-bottom: none; }
}
@media (max-width: 480px) {
  :root { --pad: 16px; }
  .scale-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .framework-grid { grid-template-columns: 1fr 1fr; }
  .partner-stats { gap: 24px; }
  .timeline::before { left: 16px; }
  .timeline-marker  { left: 16px; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { width: calc(100% - 48px); left: 48px !important; padding: 14px; }
  .story-accent-box { left: 0; bottom: 0; }
}
@media (max-width: 360px) {
  :root { --pad: 12px; }
  .framework-grid { grid-template-columns: 1fr; }
}
@media print {
  .site-header, .site-footer, .mobile-menu-toggle, .nav-overlay { display: none !important; }
  .main-navigation { display: none !important; }
  .container { max-width: 100%; padding: 0; }
  body { background: #fff; color: #000; }
}

/* ══════════════════════════════════════════════════════
   SUPPLEMENT v3.1 — Missing classes identified from audit
   ══════════════════════════════════════════════════════ */

/* ── HERO CONTENT BLOCKS ── */
.hero-v2 {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: #F8FAFC;
}
.hero-content { position: relative; z-index: 2; max-width: min(860px, 92vw); }
.hero-eyebrow {
  display: inline-block; color: var(--gold);
  font-size: clamp(0.7rem, 1.8vw, 0.85rem); font-weight: 700;
  letter-spacing: 0.35em; text-transform: uppercase;
  margin-bottom: clamp(14px, 3vw, 24px); opacity: 0.9;
}
.hero-desc {
  max-width: 580px;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: #94A3B8; line-height: 1.7;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.hero-actions {
  display: flex; gap: clamp(12px, 2vw, 20px);
  flex-wrap: wrap; align-items: center;
}
.hero-stat-item { min-width: 100px; }
.hero-stat-item .hero-stat-num { color: var(--gold-bright); }
.hero-stat-item .hero-stat-label { color: #94A3B8; }

/* ── SCALE SECTION (dark navy) ── */
.scale-section {
  background: var(--navy);
  padding: clamp(60px, 9vw, 120px) 0;
  position: relative;
}
.scale-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--blue), var(--gold-bright));
}
.scale-section .section-label { color: var(--gold); }
.scale-section .section-title { color: #F8FAFC; }
.scale-section .section-desc { color: #94A3B8; }

/* ── PROGRAMS SECTION (darkest navy) ── */
.programs-section {
  background: var(--navy-dark);
  padding: clamp(60px, 9vw, 120px) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── PROGRAM CARDS (image cards) ── */
.bridgeworx-card::before {
  background-image: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=900&q=75');
}
.elevate-card::before {
  background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=900&q=75');
}

/* ── PARTNER STAT BLOCK ── */
.partner-stat-block { text-align: center; }

/* ── VM SECTION (vision/mission — dark navy) ── */
.vm-section {
  background: var(--navy);
  padding: clamp(60px, 9vw, 120px) 0;
  color: #F8FAFC;
}
.vm-section .section-label { color: var(--gold); }
.vm-section .section-title { color: #F8FAFC; }

/* ── FOOTER WIDGETS ── */
.footer-widget { }
.footer-widget p {
  color: #94A3B8; line-height: 1.7;
  font-size: 0.92rem; margin-bottom: 8px;
}
.footer-brand img { max-height: 60px; width: auto; }

/* ── SERVICES HERO (dark bg) ── */
.services-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #F8FAFC;
  padding: clamp(60px, 10vw, 120px) 0;
  border-bottom: 5px solid var(--gold);
}

/* ── ABOUT HERO (dark bg with image) ── */
.about-hero {
  background: linear-gradient(rgba(15,23,42,0.88), rgba(15,23,42,0.88)),
    url('../images/about-header.JPG') center/cover no-repeat;
  color: #F8FAFC;
  border-bottom: 5px solid var(--gold);
}

/* ── ABOUT / CONTACT CTA SECTIONS ── */
.about-cta {
  background: linear-gradient(rgba(15,23,42,0.95), rgba(15,23,42,0.95)),
    url('../images/about-header.JPG') center/cover no-repeat;
  padding: clamp(60px, 9vw, 110px) 0;
  text-align: center; color: #F8FAFC;
  border-top: 5px solid var(--gold-bright);
}
.about-cta h2 { color: #F8FAFC; font-size: clamp(1.6rem, 3.5vw, 2.8rem); margin-bottom: clamp(10px,2vw,18px); }
.about-cta p { color: rgba(248,250,252,0.75); max-width: 520px; margin: 0 auto clamp(28px,4vw,44px); line-height:1.65; }

/* ── MANOBAL CONTACT FORM ── */
.manobal-contact-form input:focus,
.manobal-contact-form textarea:focus,
.manobal-contact-form select:focus {
  outline: none;
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 3px rgba(0,124,194,0.15);
}
.manobal-contact-form input.field-error,
.manobal-contact-form textarea.field-error {
  border-color: #ef4444 !important;
}

/* ── STATS FLOAT CARD (about page) ── */
.stats-float-card {
  background: var(--white);
  box-shadow: 0 24px 60px rgba(15,23,42,0.14);
  border-bottom: 4px solid var(--gold);
  margin-top: -48px;
  position: relative;
  z-index: 10;
}

/* ── FIX: Hero heading and text colours on dark hero ── */
.hero-v2 h1,
.hero-v2 h2,
.hero-v2 p,
.scale-section h1,
.scale-section h2,
.scale-section h3,
.programs-section h1,
.programs-section h2,
.programs-section h3,
.vm-section h1,
.vm-section h2,
.vm-section h3 { color: #F8FAFC; }

/* ── FIX: nav-menu link colours on dark sections won't bleed ── */
.hero-v2 .nav-menu li a,
.scale-section .nav-menu li a { color: var(--navy); }

/* ── RESPONSIVE SUPPLEMENTS ── */
@media (max-width: 768px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .about-hero { background-attachment: scroll; }
  .about-cta  { background-attachment: scroll; }
  .stats-float-card { margin-top: 0; }
}
@media (max-width: 480px) {
  .hero-eyebrow { letter-spacing: 0.15em; }
  .stats-float-card { grid-template-columns: 1fr !important; }
  .stats-float-card .stat-block { border-right: none; border-bottom: 1px solid var(--gray); }
}

/* ── FINAL PATCHES v3.1b ── */
.footer-brand { }  /* Exists, styles inherited from .footer-widget */
.manobal-contact-form { width: 100%; }
