/* ==========================================================================
   phrhome.css  –  Complete stylesheet for PeoplesHR Website
   Includes: Homepage styles + Solutions page styles
   Last updated: April 2026
   ========================================================================== */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
:root{
  --navy:#0d1b3e;
  --blue:#2563eb;
  --blue-light:#3b82f6;
  --blue-bright:#1d9bf0;
  --text-dark:#0d1b3e;
  --text-body:#374151;
  --text-muted:#6b7280;
  --bg-white:#ffffff;
  --bg-light:#f8fafc;
  --bg-card:#f1f5f9;
  --border:#e2e8f0;
  --radius:16px;
}
html{scroll-behavior:smooth;}
body{font-family:'Plus Jakarta Sans',sans-serif;color:var(--text-dark);background:#fff;overflow-x:hidden;}

/* ─── NAV ─── */
nav{
  position:sticky;top:0;z-index:100;
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
  padding:0 48px;
  height:64px;
  display:flex;align-items:center;justify-content:space-between;
}.hero
.nav-logo{display:flex;align-items:center;gap:8px;text-decoration:none;}
.logo-text{font-weight:600;font-size:18px;color:#3d3d3d;letter-spacing:-0.2px;}
.nav-links{display:flex;align-items:center;gap:32px;}
.nav-links a{font-size:14px;font-weight:500;color:var(--text-dark);text-decoration:none;transition:color .2s;}
.nav-links a:hover{color:var(--blue);}
.btn-demo{
  background:var(--blue);color:#fff;
  font-size:14px;font-weight:600;
  padding:10px 22px;border-radius:8px;
  text-decoration:none;border:none;cursor:pointer;
  transition:background .2s,transform .15s;
}
.btn-demo:hover{background:#1d4ed8;transform:translateY(-1px);}

/* ─── MEGA DROPDOWN ─── */
.nav-item{position:relative;display:flex;align-items:center;}
.nav-item > a{display:flex;align-items:center;gap:5px;font-size:14px;font-weight:500;color:var(--text-dark);text-decoration:none;transition:color .2s;padding:4px 0;}
.nav-item > a:hover,.nav-item:hover > a{color:var(--blue);}
.nav-item > a .caret{width:14px;height:14px;transition:transform .25s;opacity:0.5;}
.nav-item:hover > a .caret{transform:rotate(180deg);}

.mega-dropdown{
  position:absolute;top:calc(100% + 14px);left:50%;transform:translateX(-50%);
  background:#fff;border:1px solid #e2e8f0;border-radius:16px;
  box-shadow:0 20px 60px rgba(13,27,62,0.12),0 4px 16px rgba(13,27,62,0.06);
  padding:28px;width:600px;
  opacity:0;visibility:hidden;pointer-events:none;
  transition:opacity .22s ease,transform .22s ease,visibility .22s;
  transform:translateX(-50%) translateY(8px);
  z-index:200;
}
.nav-item:hover .mega-dropdown{
  opacity:1;visibility:visible;pointer-events:all;
  transform:translateX(-50%) translateY(0);
}
.mega-dropdown::before{
  content:'';position:absolute;top:-7px;left:50%;transform:translateX(-50%);
  width:14px;height:14px;background:#fff;
  border-left:1px solid #e2e8f0;border-top:1px solid #e2e8f0;
  border-radius:2px;rotate:45deg;
}
.mega-grid{display:grid;grid-template-columns:1fr 1fr;gap:4px 24px;}
.mega-item{
  display:flex;align-items:flex-start;gap:12px;
  padding:12px;border-radius:10px;cursor:pointer;
  text-decoration:none;transition:background .15s;
}
.mega-item:hover{background:#f0f6ff;}
.mega-icon{
  width:40px;height:40px;border-radius:10px;
  background:#f8fafc;border:1px solid #e2e8f0;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.mega-text h4{font-size:14px;font-weight:700;color:#0d1b3e;margin-bottom:3px;line-height:1.3;}
.mega-text p{font-size:12px;color:var(--text-muted);line-height:1.4;}
.mega-divider{grid-column:1/-1;height:1px;background:#f1f5f9;margin:8px 0;}
.mega-footer{
  grid-column:1/-1;
  display:flex;align-items:center;justify-content:space-between;
  background:#f8fafc;border-radius:10px;padding:14px 18px;margin-top:4px;
}
.mega-footer-text{font-size:13.5px;font-weight:700;color:#0d1b3e;}
.mega-footer-cta{
  display:flex;align-items:center;gap:6px;
  background:#0d1b3e;color:#fff;
  font-size:12px;font-weight:600;padding:7px 14px;border-radius:8px;
  text-decoration:none;transition:background .2s;white-space:nowrap;
}
.mega-footer-cta:hover{background:var(--blue);}

/* Solutions dropdown overrides */
.solutions-dropdown{width:860px;left:0;transform:translateX(-20%) translateY(8px);}
.nav-item:hover .solutions-dropdown{transform:translateX(-20%) translateY(0);}
.solutions-grid{display:flex;gap:0;}
.solutions-col{flex:1;padding:0 4px;}
.solutions-col-mid{flex:0 0 240px;}
.solutions-col-heading{
  display:block;font-size:13px;font-weight:700;color:var(--blue);
  text-decoration:underline;text-underline-offset:3px;
  margin-bottom:12px;padding:0 12px;letter-spacing:0.2px;
}
.solutions-divider{width:1px;background:#f1f5f9;margin:0 8px;flex-shrink:0;}
.solutions-dropdown .mega-item{padding:8px 10px;}
.solutions-dropdown .mega-icon{width:36px;height:36px;border-radius:8px;}
.solutions-dropdown .mega-text h4{font-size:13px;}
.solutions-dropdown .mega-text p{font-size:11px;}

/* Simple single-col dropdowns */
.simple-dropdown{width:320px;left:50%;transform:translateX(-50%) translateY(8px);}
.nav-item:hover .simple-dropdown{transform:translateX(-50%) translateY(0);}
.simple-col{display:flex;flex-direction:column;gap:2px;}
.simple-divider{height:1px;background:#f1f5f9;margin:8px 4px;}

/* ─── HERO ─── */
.hero{
  min-height:100vh;
  display:flex;align-items:center;
  padding:80px 48px 60px;
  position:relative;
  overflow:hidden;
  background:linear-gradient(160deg,#fff 0%,#f0f6ff 100%);
}
.hero-left{flex:1;max-width:540px;z-index:2;}
.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  border:1.5px solid #cbd5e1;border-radius:100px;
  padding:6px 16px;font-size:11px;font-weight:700;
  letter-spacing:1.2px;color:var(--text-body);
  margin-bottom:36px;
  background:rgba(255,255,255,0.8);
}
.badge-dot{width:7px;height:7px;border-radius:50%;background:var(--blue);}
.hero h1{
  font-size:58px;font-weight:700;line-height:1.08;
  letter-spacing:-2px;color:#0d1b3e;
  margin-bottom:28px;
}
.hero h1 .accent{color:var(--blue);}
.hero-body{font-size:17px;color:var(--text-body);line-height:1.65;margin-bottom:40px;max-width:480px;}
.hero-ctas{display:flex;gap:16px;flex-wrap:wrap;margin-bottom:40px;}
.btn-primary{
  background:var(--blue);color:#fff;
  font-size:15px;font-weight:700;
  padding:14px 28px;border-radius:10px;
  text-decoration:none;display:flex;align-items:center;gap:8px;
  transition:all .2s;box-shadow:0 4px 16px rgba(37,99,235,0.3);
}
.btn-primary:hover{background:#1d4ed8;transform:translateY(-2px);box-shadow:0 8px 24px rgba(37,99,235,0.4);}
.btn-outline{
  background:#fff;color:#0d1b3e;
  font-size:15px;font-weight:600;
  padding:14px 28px;border-radius:10px;
  text-decoration:none;border:1.5px solid #cbd5e1;
  transition:all .2s;
}
.btn-outline:hover{border-color:var(--blue);color:var(--blue);transform:translateY(-2px);}
.trust-line{display:flex;align-items:center;gap:10px;font-size:14px;color:var(--text-body);}
.trust-avatars{display:flex;align-items:center;}
.trust-avatar{
  width:36px;height:36px;border-radius:50%;
  border:2.5px solid #fff;overflow:hidden;
  margin-left:-10px;flex-shrink:0;
  box-shadow:0 1px 4px rgba(0,0,0,0.12);
  background:#f1f5f9;
}
.trust-avatar:first-child{margin-left:0;}
.trust-avatar img{width:100%;height:100%;object-fit:cover;display:block;}
.trust-line b{color:#0d1b3e;}

/* hero right image */
.hero-right{
  flex:1;display:flex;justify-content:flex-end;
  position:relative;z-index:2;padding-left:48px;
}
.hero-banner-img{
  width:100%;max-width:560px;
  border-radius:20px;
  object-fit:contain;
  filter:drop-shadow(0 20px 60px rgba(13,27,62,0.14));
}

/* ─── LEXI SECTION ─── */
.lexi-section{
  padding:100px 48px;
  background:#fff;
  display:flex;align-items:center;gap:80px;
}
.lexi-ui-img{
  flex:0 0 420px;width:420px;
  border-radius:20px;
  object-fit:contain;
  filter:drop-shadow(0 8px 48px rgba(13,27,62,0.12));
}

.lexi-copy{flex:1;}
.section-label{
  font-size:11px;font-weight:700;letter-spacing:1.5px;
  color:var(--blue);margin-bottom:16px;
}
.lexi-copy h2{
  font-size:42px;font-weight:700;line-height:1.1;letter-spacing:-1.5px;
  color:#0d1b3e;margin-bottom:24px;
}
.lexi-copy h2 span{color:var(--blue);}
.lexi-copy p{font-size:15px;color:var(--text-body);line-height:1.7;margin-bottom:16px;}
.lexi-chips{display:flex;gap:12px;margin-top:32px;flex-wrap:wrap;}
.lexi-chip{
  display:flex;align-items:center;gap:10px;
  background:#f8fafc;border:1.5px solid #e2e8f0;border-radius:12px;
  padding:12px 18px;font-size:13.5px;font-weight:600;color:#0d1b3e;
  cursor:pointer;transition:all .2s;
}
.lexi-chip:hover{border-color:var(--blue);background:#eff6ff;color:var(--blue);}
.chip-icon{
  width:28px;height:28px;border-radius:7px;background:var(--blue);
  display:flex;align-items:center;justify-content:center;
}

/* ─── MODULES TAB LAYOUT ─── */
.modules-section{padding:100px 48px;background:#f8fafc;}
.section-center{text-align:center;margin-bottom:60px;}
.section-center h2{font-size:40px;font-weight:700;letter-spacing:-1.5px;color:#0d1b3e;margin-bottom:14px;}
.section-center p{font-size:16px;color:var(--text-muted);}
.explore-link{font-size:13.5px;font-weight:600;color:var(--blue);text-decoration:none;display:flex;align-items:center;gap:4px;transition:gap .2s;}
.explore-link:hover{gap:8px;}

.modules-tab-wrap{display:flex;gap:28px;align-items:flex-start;}
.module-tabs{flex:0 0 188px;display:flex;flex-direction:column;gap:4px;}
.module-tab{
  display:flex;align-items:center;gap:12px;
  padding:13px 16px;border-radius:12px;cursor:pointer;
  transition:all .2s;color:var(--text-muted);
  font-size:14.5px;font-weight:600;
  border:1.5px solid transparent;position:relative;
}
.module-tab:hover{background:#fff;color:#0d1b3e;border-color:#e2e8f0;}
.module-tab.active{background:#fff;color:var(--blue);border-color:#bfdbfe;box-shadow:0 2px 12px rgba(37,99,235,0.1);}
.mtab-icon{width:20px;height:20px;flex-shrink:0;display:flex;}
.module-tab span{flex:1;}
.mtab-arrow{flex-shrink:0;opacity:0;transition:opacity .2s;}
.module-tab.active .mtab-arrow{opacity:1;color:var(--blue);}
.module-tab.active::before{content:'';position:absolute;left:0;top:20%;bottom:20%;width:3px;border-radius:2px;background:var(--blue);}

.module-preview-panel{flex:1;background:#fff;border-radius:20px;border:1px solid #e2e8f0;overflow:visible;box-shadow:0 8px 40px rgba(13,27,62,0.08);}

.preview-content{display:none;}
.preview-content.active{display:block;}
.preview-img{
  width:100%;
  height:auto;
  object-fit:contain;
  display:block;
  border-radius:0 0 16px 16px;
}

.preview-sidebar{width:140px;flex-shrink:0;background:#1e293b;padding:16px 0;display:flex;flex-direction:column;gap:2px;}
.psb-logo{padding:8px 16px 14px;border-bottom:1px solid rgba(255,255,255,0.08);margin-bottom:6px;}
.psb-item{padding:9px 16px;font-size:12px;color:rgba(255,255,255,0.5);cursor:pointer;transition:all .15s;}
.psb-item.active{background:rgba(37,99,235,0.3);color:#fff;}
.psb-item:hover:not(.active){background:rgba(255,255,255,0.06);color:rgba(255,255,255,0.8);}

.preview-main{flex:1;overflow:hidden;display:flex;flex-direction:column;background:#fff;}
.prev-topbar{display:flex;align-items:center;justify-content:space-between;padding:14px 20px;border-bottom:1px solid #f1f5f9;}
.prev-title{font-size:15px;font-weight:700;color:#0d1b3e;}
.prev-btn-blue{background:var(--blue);color:#fff;font-size:12px;font-weight:600;padding:6px 14px;border-radius:8px;cursor:pointer;}

.prev-stats-row{display:flex;gap:10px;padding:12px 20px;}
.prev-stat-card{flex:1;background:#f8fafc;border:1px solid #f1f5f9;border-radius:10px;padding:11px;}
.psc-num{font-size:20px;font-weight:700;letter-spacing:-0.5px;}
.psc-label{font-size:10px;color:var(--text-muted);margin-top:2px;font-weight:500;}

.prev-table{flex:1;overflow:hidden;margin:0 20px 14px;border:1px solid #f1f5f9;border-radius:10px;}
.prev-table-head{display:grid;grid-template-columns:32px 1fr 1fr 1fr 80px;padding:8px 12px;background:#f8fafc;font-size:11px;font-weight:700;color:var(--text-muted);letter-spacing:0.5px;border-bottom:1px solid #f1f5f9;align-items:center;gap:6px;}
.prev-table-row{display:grid;grid-template-columns:32px 1fr 1fr 1fr 80px;padding:8px 12px;align-items:center;gap:6px;font-size:12px;color:var(--text-body);border-bottom:1px solid #f8fafc;transition:background .15s;}
.prev-table-row:hover{background:#fafbfc;}
.prev-avatar{width:28px;height:28px;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:10px;font-weight:700;flex-shrink:0;}
.status-chip{display:inline-block;padding:3px 8px;border-radius:100px;font-size:10px;font-weight:700;text-align:center;}
.status-chip.green{background:#dcfce7;color:#15803d;}
.status-chip.amber{background:#fef3c7;color:#92400e;}

.prev-week{flex:1;padding:12px 20px;}
.prev-week-label{font-size:12px;font-weight:600;color:var(--text-muted);margin-bottom:12px;}
.prev-week-bars{display:flex;gap:12px;height:110px;align-items:flex-end;}
.pwb-day{display:flex;flex-direction:column;align-items:center;gap:6px;flex:1;}
.pwb-bar{width:100%;border-radius:6px 6px 0 0;}
.pwb-day span{font-size:11px;color:var(--text-muted);font-weight:500;}

.prev-lexi-chat{margin:0 20px 14px;background:#f8fafc;border-radius:12px;padding:14px;flex:1;overflow:hidden;}
.plc-header{display:flex;align-items:center;gap:8px;margin-bottom:12px;}
.plc-avatar{width:24px;height:24px;border-radius:6px;background:var(--blue);display:flex;align-items:center;justify-content:center;}
.plc-header span:nth-child(2){font-size:13px;font-weight:700;color:#0d1b3e;}
.plc-status{font-size:11px;color:#16a34a;margin-left:auto;}
.plc-msg{font-size:12.5px;line-height:1.55;padding:10px 12px;border-radius:10px;margin-bottom:8px;}
.plc-msg.user{background:#fff;border:1px solid #e2e8f0;color:var(--text-body);}
.plc-msg.lexi{background:var(--blue);color:#fff;}

/* Mobile only */
.modules-mobile-only{display:none;}

/* ─── INDUSTRIES ─── */
.industries-section{padding:100px 48px 0;background:#fff;}
.industries-section .section-center p{color:var(--text-muted);}
.industry-tabs{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin-bottom:56px;}
.industry-tab{
  padding:10px 22px;border-radius:100px;
  border:1.5px solid #e2e8f0;font-size:14px;font-weight:500;
  color:var(--text-body);cursor:pointer;transition:all .2s;background:#fff;
}
.industry-tab.active{background:var(--blue);color:#fff;border-color:var(--blue);}
.industry-tab:hover:not(.active){border-color:var(--blue);color:var(--blue);}
/* ─── Industry Logo Slider ─── */
.client-logos{
  overflow:hidden;
  position:relative;
  padding:0 0 72px;
  min-height:140px;
  display:flex;
  align-items:center;
}
.client-logos::before,
.client-logos::after{
  content:'';position:absolute;top:0;bottom:72px;width:120px;z-index:2;pointer-events:none;
}
.client-logos::before{left:0;background:linear-gradient(to right,#fff,transparent);}
.client-logos::after{right:0;background:linear-gradient(to left,#fff,transparent);}

@keyframes logo-scroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}
.logo-slider-track{
  display:flex;
  align-items:center;
  gap:48px;
  width:max-content;
  animation:logo-scroll 20s linear infinite;
  padding:8px 0;
}
.client-logo{
  display:flex;align-items:center;justify-content:center;
  font-size:14px;font-weight:700;letter-spacing:1.5px;
  color:#94a3b8;cursor:default;
  opacity:0.65;
  transition:opacity .25s ease;
  flex-shrink:0;
}
.client-logo:hover{opacity:1;}
.client-logos .client-logo img{
  height:64px !important;
  max-width:130px !important;
  width:auto !important;
  object-fit:contain !important;
  border-radius:0 !important;
  box-shadow:none !important;
  border:none !important;
  display:block;
}
.stats-bar{
  background:#0d1b3e;padding:56px 48px;
  display:flex;align-items:center;justify-content:space-around;
  gap:20px;
}
.stat-item{text-align:center;flex:1;position:relative;}
.stat-item:not(:last-child)::after{
  content:'';position:absolute;right:0;top:50%;transform:translateY(-50%);
  width:1px;height:60px;background:rgba(255,255,255,0.15);
}
.stat-num{font-size:52px;font-weight:700;color:#fff;letter-spacing:-2px;line-height:1;}
.stat-label{font-size:11px;font-weight:600;letter-spacing:1.5px;color:rgba(255,255,255,0.5);margin-top:8px;text-transform:uppercase;}

/* ─── PERSONAS ─── */
.personas-section{padding:100px 48px;background:#fff;}
.section-tag{
  display:inline-block;background:#eff6ff;
  border:1px solid #bfdbfe;border-radius:100px;
  padding:6px 18px;font-size:11px;font-weight:700;
  letter-spacing:1.2px;color:var(--blue);
  margin-bottom:20px;
}
.personas-section h2{
  font-size:50px;font-weight:700;letter-spacing:-2px;
  color:#0d1b3e;max-width:700px;margin:0 auto 60px;
  text-align:center;line-height:1.1;
}
.personas-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
.persona-card{
  background:#f8fafc;border-radius:var(--radius);
  border:1px solid #e2e8f0;padding:28px;
  transition:all .25s;
}
.persona-card:hover{background:#fff;transform:translateY(-4px);box-shadow:0 12px 40px rgba(13,27,62,0.1);}
.persona-emoji{margin-bottom:16px;display:block;line-height:0;}
.persona-card h3{font-size:17px;font-weight:700;color:#0d1b3e;margin-bottom:14px;}
.persona-card p{font-size:13.5px;color:var(--text-body);line-height:1.65;margin-bottom:24px;}
.more-info{font-size:13px;font-weight:600;color:var(--blue);text-decoration:none;display:flex;align-items:center;gap:4px;}
.more-info:hover{gap:8px;}

/* ─── CASE STUDIES ─── */
.case-studies-section{padding:100px 48px;background:#f8fafc;}
.case-studies-section .section-center{text-align:center;}
.case-studies-section .section-label{text-align:center;display:block;margin-bottom:12px;}
.case-studies-section .section-center h2{font-size:40px;}
.case-studies-section .section-center p{font-size:15px;color:var(--text-muted);max-width:560px;margin:0 auto;}
.cs-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:56px;}
.cs-card{
  background:#fff;border-radius:var(--radius);
  border:1px solid #e2e8f0;overflow:hidden;
  transition:all .25s;
}
.cs-card:hover{transform:translateY(-4px);box-shadow:0 16px 48px rgba(13,27,62,0.12);}
.cs-img{
  height:200px;position:relative;
  display:flex;align-items:flex-end;padding:20px;
}
.cs-img-1{background:linear-gradient(135deg,#1e40af 0%,#3b82f6 100%);}
.cs-img-2{background:linear-gradient(135deg,#0f172a 0%,#1e3a5f 100%);}
.cs-img-3{background:linear-gradient(135deg,#4f46e5 0%,#7c3aed 60%,#ec4899 100%);}
.cs-img::before{
  content:'';position:absolute;
  width:140px;height:140px;border-radius:50%;
  border:1px solid rgba(255,255,255,0.1);
  top:-20px;right:20px;
}
.cs-tag{
  background:rgba(255,255,255,0.9);
  border-radius:6px;padding:5px 12px;
  font-size:11px;font-weight:700;letter-spacing:0.8px;color:#0d1b3e;
  position:relative;z-index:1;
}
.cs-content{padding:28px;}
.cs-company{font-size:11px;font-weight:700;letter-spacing:1.2px;color:var(--blue);margin-bottom:10px;}
.cs-content h3{font-size:17px;font-weight:700;color:#0d1b3e;line-height:1.35;margin-bottom:14px;}
.cs-content p{font-size:13.5px;color:var(--text-body);line-height:1.65;margin-bottom:24px;}
.read-more{font-size:13px;font-weight:600;color:var(--blue);text-decoration:none;display:flex;align-items:center;gap:4px;}
.read-more:hover{gap:8px;}
.cs-cta-row{text-align:center;margin-top:48px;}
.cs-cta-row p{font-size:15px;color:var(--text-body);margin-bottom:20px;}
.btn-outline-blue{
  display:inline-block;padding:14px 32px;border-radius:10px;
  border:1.5px solid var(--blue);color:var(--blue);
  font-size:14px;font-weight:700;text-decoration:none;
  transition:all .2s;
}
.btn-outline-blue:hover{background:var(--blue);color:#fff;transform:translateY(-2px);}

/* ─── DOMAIN EXPERIENCE ─── */
.domain-section{
  padding:100px 48px;background:#fff;
  display:flex;gap:80px;align-items:flex-start;
}
.domain-left{flex:0 0 400px;}
.domain-badge-wrap{display:flex;gap:16px;align-items:center;margin-bottom:28px;}
.domain-num{
  font-size:64px;font-weight:700;color:var(--blue);
  line-height:1;letter-spacing:-3px;
}
.domain-badge{
  background:#0d1b3e;border-radius:12px;padding:14px 18px;
}
.domain-badge p:first-child{font-size:14px;font-weight:700;color:#fff;margin-bottom:4px;}
.domain-badge p:last-child{font-size:12px;color:rgba(255,255,255,0.5);}
.domain-left h2{
  font-size:38px;font-weight:700;letter-spacing:-1.5px;
  color:#0d1b3e;margin-bottom:20px;line-height:1.15;
}
.domain-left p{font-size:15px;color:var(--text-body);line-height:1.7;}
.domain-right{flex:1;}
.feature-list{display:flex;flex-direction:column;gap:0;}
.feature-item{
  display:flex;gap:16px;padding:24px 0;
  border-bottom:1px solid #f1f5f9;
}
.feature-item:first-child{border-top:1px solid #f1f5f9;}
.feature-icon-wrap{
  width:48px;height:48px;border-radius:12px;
  background:#f8fafc;border:1px solid #e2e8f0;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.feature-item h4{font-size:15px;font-weight:700;color:#0d1b3e;margin-bottom:6px;}
.feature-item p{font-size:13.5px;color:var(--text-body);line-height:1.6;}

/* ─── ACCREDITATIONS ─── */
.accreditations-section{
  padding:64px 80px;
  background:#f8fafc;
  border-top:1px solid #e2e8f0;
  text-align:center;
}
.accred-text{
  font-size:15px;font-weight:600;color:var(--text-body);
  max-width:700px;margin:0 auto 48px;line-height:1.6;
}
.accred-badges{
  display:flex;align-items:center;justify-content:center;
  gap:40px;flex-wrap:wrap;
}
.accred-badge{
  display:flex;flex-direction:column;align-items:center;
  transition:transform .2s;cursor:default;
}
.accred-badge:hover{transform:translateY(-4px);}
.accred-badges .accred-badge img {
  height: 90px !important;
  max-width: 140px !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
}
.accred-badge span{display:none;}

/* ─── TESTIMONIAL CAROUSEL ─── */
.testimonial-section{
  padding:100px 80px;
  background:#f0f6ff;
  position:relative;overflow:hidden;
}
.testimonial-section::before{
  content:'"';font-size:280px;font-weight:700;
  color:rgba(37,99,235,0.08);position:absolute;
  top:-40px;left:40px;line-height:1;font-family:Georgia,serif;
  pointer-events:none;
}
.testimonial-track-wrap{overflow:hidden;position:relative;z-index:1;}
.testimonial-track{
  display:flex;
  transition:transform .5s cubic-bezier(.4,0,.2,1);
}
.testimonial-slide{
  min-width:100%;text-align:center;padding:0 60px;
  box-sizing:border-box;
}
.testimonial-quote{
  font-size:26px;font-weight:700;color:#0d1b3e;
  line-height:1.5;max-width:820px;margin:0 auto 36px;
  letter-spacing:-0.5px;
}
.testimonial-author{font-size:15px;font-weight:700;color:#0d1b3e;margin-bottom:4px;}
.testimonial-title{font-size:12px;font-weight:600;letter-spacing:0.5px;color:var(--text-muted);word-break:break-word;}

.testimonial-meta{
  display:flex;align-items:center;justify-content:center;
  gap:12px;margin-top:0;
  max-width:680px;margin-left:auto;margin-right:auto;
}
.t-avatar{
  width:56px;height:56px;border-radius:50%;
  overflow:hidden;flex-shrink:0;
  border:3px solid #fff;
  box-shadow:0 2px 12px rgba(13,27,62,0.12);
}
.t-avatar svg{display:block;}
.t-meta-text{text-align:left;min-width:0;flex-shrink:1;}
.t-company-logo{
  border-left:1px solid #e2e8f0;
  padding-left:16px;
  display:flex;align-items:center;
  margin-left:auto;
}

.testimonial-controls{
  display:flex;align-items:center;justify-content:center;
  gap:20px;margin-top:48px;position:relative;z-index:1;
}
.t-arrow{
  width:44px;height:44px;border-radius:50%;
  border:1.5px solid #cbd5e1;background:#fff;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;color:#0d1b3e;
  transition:all .2s;flex-shrink:0;
}
.t-arrow:hover{border-color:var(--blue);color:var(--blue);background:#eff6ff;}
.t-dots{display:flex;gap:8px;align-items:center;}
.t-dot{
  width:8px;height:8px;border-radius:50%;
  background:#cbd5e1;border:none;cursor:pointer;padding:0;
  transition:all .3s;
}
.t-dot.active{background:var(--blue);width:24px;border-radius:4px;}

/* ─── CTA BANNER ─── */
.cta-banner{
  padding:90px 80px;
  background:linear-gradient(135deg,#1d4ed8 0%,#2563eb 50%,#3b82f6 100%);
  text-align:center;
}
.cta-banner h2{
  font-size:48px;font-weight:700;color:#fff;
  letter-spacing:-1.5px;line-height:1.15;
  max-width:700px;margin:0 auto 32px;
}
.cta-pills{
  display:flex;flex-wrap:wrap;gap:12px;
  justify-content:center;margin-bottom:44px;
}
.cta-pill{
  display:flex;align-items:center;gap:8px;
  border:1.5px solid rgba(255,255,255,0.35);border-radius:100px;
  padding:10px 22px;font-size:14px;font-weight:500;color:#fff;
  background:rgba(255,255,255,0.08);
}
.pill-check{
  width:20px;height:20px;border-radius:50%;
  border:1.5px solid rgba(255,255,255,0.5);
  display:flex;align-items:center;justify-content:center;
}
.cta-btns{display:flex;gap:16px;justify-content:center;}
.cta-btn-white{
  background:#fff;color:var(--blue);
  font-size:15px;font-weight:700;
  padding:15px 32px;border-radius:10px;
  text-decoration:none;transition:all .2s;
}
.cta-btn-white:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,0.2);}
.cta-btn-ghost{
  background:transparent;color:#fff;
  font-size:15px;font-weight:700;
  padding:15px 32px;border-radius:10px;
  text-decoration:none;border:1.5px solid rgba(255,255,255,0.4);
  transition:all .2s;
}
.cta-btn-ghost:hover{background:rgba(255,255,255,0.1);transform:translateY(-2px);}

/* ─── FOOTER ─── */
footer{padding:64px 48px 36px;background:#fff;border-top:1px solid #e2e8f0;}
.footer-top{display:flex;gap:48px;margin-bottom:48px;}
.footer-brand{flex:0 0 260px;}
.footer-brand .nav-logo{margin-bottom:16px;}
.footer-brand > p{font-size:13px;color:var(--text-muted);line-height:1.65;}
.footer-office-label{font-size:12px;font-weight:700;color:var(--blue);margin-bottom:4px;}
.footer-office-text{font-size:13px;color:var(--text-muted);line-height:1.6;}
.footer-email{display:block;font-size:13px;font-weight:600;color:var(--blue);text-decoration:none;margin-top:16px;margin-bottom:20px;}
.footer-email:hover{text-decoration:underline;}
.footer-socials{display:flex;gap:10px;margin-top:4px;}
.social-icon{
  width:34px;height:34px;border-radius:8px;
  border:1px solid #e2e8f0;color:var(--text-muted);
  display:flex;align-items:center;justify-content:center;
  text-decoration:none;transition:all .2s;
}
.social-icon:hover{border-color:var(--blue);color:var(--blue);background:#eff6ff;}
.footer-cols{display:flex;gap:28px;flex:1;flex-wrap:wrap;}
.footer-col{min-width:100px;}
.footer-col h4{font-size:12px;font-weight:700;letter-spacing:1.2px;color:#0d1b3e;text-transform:uppercase;margin-bottom:14px;}
.footer-col a{display:block;font-size:13px;color:var(--text-muted);text-decoration:none;margin-bottom:9px;transition:color .2s;line-height:1.4;}
.footer-col a:hover{color:var(--blue);}
.footer-col-sublabel{font-size:11px;font-weight:700;letter-spacing:0.8px;color:#0d1b3e;text-transform:uppercase;margin-bottom:8px;margin-top:4px;}
.footer-bottom{
  display:flex;justify-content:space-between;align-items:center;
  border-top:1px solid #e2e8f0;padding-top:24px;
}
.footer-bottom p{font-size:13px;color:var(--text-muted);}
.footer-bottom-links{display:flex;gap:28px;align-items:center;}
.footer-bottom-links a{font-size:13px;color:var(--text-muted);text-decoration:none;transition:color .2s;white-space:nowrap;}
.footer-bottom-links a:hover{color:var(--blue);}
.footer-certs{display:flex;gap:16px;}
.cert-badge{font-size:11px;font-weight:700;color:var(--text-muted);letter-spacing:0.5px;}

/* SVG icons inline */
svg{display:block;}

/* ─── HAMBURGER ─── */
.hamburger{
  display:none;flex-direction:column;justify-content:center;gap:5px;
  width:40px;height:40px;cursor:pointer;background:none;border:none;padding:4px;
  border-radius:8px;transition:background .15s;flex-shrink:0;
}
.hamburger:hover{background:#f1f5f9;}
.hamburger span{
  display:block;width:22px;height:2px;background:#0d1b3e;
  border-radius:2px;transition:transform .3s ease,opacity .3s ease;
  transform-origin:center;
}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.hamburger.open span:nth-child(2){opacity:0;}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* Mobile nav drawer */
.mobile-nav{
  display:none;position:fixed;top:64px;left:0;right:0;bottom:0;
  background:#fff;z-index:99;overflow-y:auto;
  padding:20px 24px 40px;
  transform:translateX(100%);transition:transform .3s ease;
}
.mobile-nav.open{transform:translateX(0);}
.mobile-nav-link{
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 0;border-bottom:1px solid #f1f5f9;
  font-size:16px;font-weight:600;color:#0d1b3e;text-decoration:none;cursor:pointer;
}
.mobile-nav-link svg{width:16px;height:16px;opacity:0.4;transition:transform .25s;}
.mobile-nav-link.open svg{transform:rotate(180deg);}
.mobile-sub{
  max-height:0;overflow:hidden;transition:max-height .35s ease;
}
.mobile-sub.open{max-height:600px;}
.mobile-sub-item{
  display:flex;align-items:center;gap:12px;
  padding:12px 0 12px 8px;text-decoration:none;
}
.mobile-sub-icon{width:36px;height:36px;border-radius:9px;background:#f0f6ff;display:flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0;}
.mobile-sub-item h4{font-size:14px;font-weight:700;color:#0d1b3e;}
.mobile-sub-item p{font-size:12px;color:var(--text-muted);}
.mobile-cta{
  display:block;width:100%;text-align:center;
  background:var(--blue);color:#fff;
  font-size:15px;font-weight:700;padding:15px;
  border-radius:10px;text-decoration:none;margin-top:24px;
}
.new-tag{background:#2563eb;color:#fff;font-size:9px;font-weight:700;letter-spacing:0.5px;padding:2px 6px;border-radius:100px;line-height:1.4;}

/* ─── RESPONSIVE ─── */

/* ── Tablet (≤1200px) ── */
@media(max-width:1200px){
  nav{padding:0 28px;}
  .nav-links{gap:20px;}
  .nav-links a,.nav-item>a{font-size:13px;}
  .hero{padding:60px 32px 48px;}
  .hero h1{font-size:46px;}
  .hero-banner-img{max-width:380px;}
  .lexi-section{padding:80px 32px;gap:40px;}
  .lexi-ui-img{flex:0 0 300px;width:300px;}
  .modules-section{padding:80px 32px;}
  .modules-tab-wrap{gap:20px;}
  .module-tabs{flex:0 0 170px;}
  .industries-section{padding:80px 32px 0;}
  .personas-section{padding:80px 32px;}
  .personas-grid{grid-template-columns:repeat(2,1fr);}
  .case-studies-section{padding:80px 32px;}
  .domain-section{padding:80px 32px;gap:40px;}
  .domain-left{flex:0 0 280px;}
  .testimonial-section{padding:80px 40px;}
  .cta-banner{padding:72px 40px;}
  footer{padding:48px 32px 28px;}
  .footer-top{gap:32px;}
  .footer-cols{gap:20px;}
}

/* ── Tablet portrait / large mobile (≤1024px) ── */
@media(max-width:1024px){
  /* Nav: hide low-priority items */
  .nav-links{gap:16px;}
  .hero h1{font-size:40px;}
  .hero-right{padding-left:28px;}
  .hero-banner-img{max-width:340px;}
  /* Modules tab: compress */
  .module-tabs{flex:0 0 150px;}
  .module-tab{padding:11px 12px;font-size:13.5px;}

  .preview-sidebar{width:120px;}
  .psb-item{font-size:11px;padding:8px 12px;}
  .prev-title{font-size:13px;}
  .psc-num{font-size:16px;}
  /* Solutions dropdown: shift left */
  .solutions-dropdown{left:0;transform:translateX(-10%) translateY(8px);}
  .nav-item:hover .solutions-dropdown{transform:translateX(-10%) translateY(0);}
}

/* ── Mobile (≤768px) ── */
@media(max-width:768px){
  /* Nav */
  nav{padding:0 20px;}
  .nav-links,.btn-demo{display:none;}
  .hamburger{display:flex;}
  .mobile-nav{display:block;}

  /* Hero */
  .hero{flex-direction:column;align-items:flex-start;padding:48px 20px 40px;min-height:auto;gap:32px;}
  .hero-left{max-width:100%;}
  .hero h1{font-size:34px;letter-spacing:-1px;}
  .hero-body{font-size:15px;}
  .hero-right{padding-left:0;width:100%;justify-content:center;}
  .hero-banner-img{max-width:100%;}

  /* Trust line */
  .trust-line{flex-wrap:wrap;gap:8px;font-size:13px;}
  .trust-avatars{flex-shrink:0;}

  /* Lexi */
  .lexi-section{flex-direction:column;padding:60px 20px;gap:36px;}
  .lexi-ui-img{flex:none;width:100%;max-width:480px;margin:0 auto;}
  .lexi-copy h2{font-size:28px;letter-spacing:-0.8px;}
  .lexi-chips{gap:8px;}
  .lexi-chip{padding:10px 14px;font-size:13px;}

  /* Modules tab layout → stacked */
  .modules-section{padding:60px 20px;}
  .section-center h2{font-size:26px;letter-spacing:-0.5px;}
  .section-center p{font-size:14px;}
  .modules-tab-wrap{flex-direction:column;gap:0;}
  .module-tabs{
    display:grid;grid-template-columns:repeat(3,1fr);
    flex:none;gap:0;
    border-bottom:2px solid #e2e8f0;
    padding-bottom:0;width:100%;
  }
  .module-tab{
    flex-direction:column;gap:4px;
    padding:12px 8px;min-width:0;text-align:center;
    border:none;border-radius:0;border-bottom:3px solid transparent;
    margin-bottom:-2px;font-size:11px;
  }
  .module-tab.active{
    border-color:var(--blue);border-bottom-color:var(--blue);
    box-shadow:none;background:transparent;
  }
  .module-tab::before{display:none;}
  .mtab-arrow{display:none;}
  .mtab-icon{width:22px;height:22px;margin:0 auto;}
  .module-preview-panel{width:100%;border-radius:0 0 16px 16px;border-top:none;}
  .preview-content.active{display:block;}
  .preview-sidebar{width:100%;height:44px;flex-direction:row;align-items:center;gap:0;padding:0;}
  .psb-logo{display:none;}
  .psb-item{padding:0 14px;height:44px;display:flex;align-items:center;font-size:11px;white-space:nowrap;}
  .preview-main{min-height:300px;}
  .prev-stats-row{flex-wrap:wrap;gap:8px;padding:10px 12px;}
  .prev-stat-card{min-width:calc(33% - 8px);}
  .psc-num{font-size:15px;}
  .prev-table{margin:0 12px 12px;}
  .prev-table-head{grid-template-columns:28px 1fr 1fr 64px;font-size:10px;padding:7px 10px;}
  .prev-table-row{grid-template-columns:28px 1fr 1fr 64px;font-size:11px;padding:7px 10px;}
  .prev-table-head span:nth-child(4),.prev-table-row span:nth-child(4){display:none;}
  .prev-week{padding:10px 12px;}
  .prev-week-bars{height:80px;}
  .prev-lexi-chat{margin:0 12px 12px;padding:10px;}
  .plc-msg{font-size:11.5px;}

  /* Industries */
  .industries-section{padding:60px 20px 0;}
  .industry-tabs{gap:8px;justify-content:flex-start;overflow-x:auto;flex-wrap:nowrap;padding-bottom:4px;scrollbar-width:none;}
  .industry-tabs::-webkit-scrollbar{display:none;}
  .industry-tab{white-space:nowrap;flex-shrink:0;padding:8px 16px;font-size:13px;}
  .client-logos{padding:0 0 40px;}
  .client-logos::before,.client-logos::after{width:60px;bottom:40px;}
  .logo-slider-track{gap:32px;}
  .client-logos .client-logo img{height:48px !important;max-width:100px !important;}
  .stats-bar{padding:32px 20px;display:grid;grid-template-columns:1fr 1fr;gap:0;}
  .stat-item:not(:last-child)::after{display:none;}
  .stat-item{padding:16px;border-bottom:1px solid rgba(255,255,255,0.1);}
  .stat-item:nth-child(odd){border-right:1px solid rgba(255,255,255,0.1);}
  .stat-num{font-size:36px;}

  /* Personas */
  .personas-section{padding:60px 20px;}
  .personas-section h2{font-size:28px;letter-spacing:-0.8px;margin-bottom:36px;}
  .personas-grid{grid-template-columns:1fr;}

  /* Case Studies */
  .case-studies-section{padding:60px 20px;}
  .case-studies-section .section-center h2{font-size:26px;}
  .cs-grid{grid-template-columns:1fr;}

  /* Domain */
  .domain-section{flex-direction:column;padding:60px 20px;gap:36px;}
  .domain-left{flex:none;width:100%;}
  .domain-left h2{font-size:26px;}
  .domain-num{font-size:44px;}

  /* Testimonial */
  .testimonial-section{padding:60px 20px;}
  .testimonial-slide{padding:0 4px;}
  .testimonial-quote{font-size:16px;letter-spacing:0;}
  .testimonial-section::before{font-size:140px;top:-10px;left:8px;}
  .testimonial-meta{gap:10px;}
  .t-company-logo{display:none;}

  /* CTA Banner */
  .cta-banner{padding:56px 20px;}
  .cta-banner h2{font-size:26px;letter-spacing:-0.5px;}
  .cta-btns{flex-direction:column;align-items:center;}
  .cta-btn-white,.cta-btn-ghost{width:100%;max-width:300px;text-align:center;}
  .cta-pill{font-size:12px;padding:7px 14px;}

  /* Accreditations */
  .accreditations-section{padding:48px 20px;}
  .accred-badges{gap:20px;}

  /* Footer */
  footer{padding:48px 20px 24px;}
  .footer-top{flex-direction:column;gap:32px;}
  .footer-brand{flex:none;}
  .footer-cols{gap:20px;}
  .footer-col{min-width:calc(50% - 10px);}
  .footer-bottom{flex-direction:column;gap:16px;text-align:center;}
  .footer-bottom-links{flex-wrap:wrap;justify-content:center;gap:16px;}

  /* Dropdowns → handled by mobile drawer */
  .mega-dropdown,.solutions-dropdown,.simple-dropdown{display:none;}
}

/* ── Small mobile (≤480px) ── */
@media(max-width:480px){
  .hero h1{font-size:28px;}
  .hero-ctas{flex-direction:column;}
  .btn-primary,.btn-outline{width:100%;justify-content:center;}
  .lexi-copy h2{font-size:24px;}
  .personas-section h2{font-size:24px;}
  .module-tab{min-width:64px;padding:10px 10px;font-size:10px;}
  .prev-stat-card{min-width:calc(50% - 4px);}
  .footer-col{min-width:100%;}
  .footer-bottom-links{gap:12px;}
  .footer-bottom-links a{font-size:12px;}
}

/* ==========================================================================
   SOLUTIONS PAGES
   Additional styles for industry-specific Solutions pages (BFSI, Hospitality,
   Manufacturing, Professional Services, etc.)
   ========================================================================== */

/* ==========================================================================
   phrsolutions.css  –  Additional styles for PeoplesHR Solutions pages
   Add this file AFTER phrhome.css in WordPress (Appearance > Theme Editor
   or enqueue with a higher priority).
   No additional JS is required — all interactions are CSS-only.
   ========================================================================== */

/* ─── BUTTON HOVER CLASSES (replaces all inline onmouseover JS) ─── */
.btn-cta-blue {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff; text-decoration: none;
  padding: 13px 26px; border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .9rem;
  box-shadow: 0 6px 24px rgba(37,99,235,.35);
  transition: background .2s, transform .15s;
}
.btn-cta-blue:hover { background: #1d4ed8; transform: translateY(-1px); }

.btn-cta-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff; text-decoration: none;
  padding: 14px 30px; border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .92rem;
  box-shadow: 0 6px 24px rgba(37,99,235,.3);
  transition: background .2s, transform .15s;
}
.btn-cta-pill:hover { background: #1d4ed8; transform: translateY(-1px); }

.btn-cta-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--blue); text-decoration: none;
  padding: 12px 24px; border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .88rem;
  transition: background .2s;
}
.btn-cta-white:hover { background: #eff6ff; }
.governance-metrics { display: grid; grid-template-columns: repeat(4,1fr); }
@media (max-width: 1024px) {
  .governance-metrics { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .governance-section { padding: 56px 24px !important; }
  .governance-metrics { grid-template-columns: 1fr !important; }
}
@media (max-width: 900px) {
  .why-section { padding: 60px 28px !important; }
  .why-grid-inner { grid-template-columns: 1fr !important; gap: 40px !important; }
  .why-grid-inner > div:first-child { order: 2; }
  .why-grid-inner > div:last-child  { order: 1; }
}

/* ─── PROVEN TRANSFORMATION RESPONSIVE ─── */
.proven-grid { display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 900px) {
  .proven-grid { grid-template-columns: 1fr !important; gap: 40px !important; padding: 40px !important; }
  .proven-grid > div:last-child { order: 2; }
  .proven-grid > div:first-child { order: 1; }
}

/* ─── CASE STUDY RESPONSIVE ─── */
.casestudy-grid { display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 900px) {
  .casestudy-grid { grid-template-columns: 1fr !important; gap: 36px !important; }
  .casestudy-grid > div:last-child { order: 2; }
  .casestudy-grid > div:first-child { order: 1; }
}

/* ─── OUTCOMES 3-COL RESPONSIVE ─── */
@media (max-width: 768px) {
  div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  div[style*="grid-template-columns:repeat(3,1fr)"] > div {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }
}
:root {
  --navy: #0d1b3e;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --bg-light: #f8fafc;
  --bg-card: #f1f5f9;
  --border: #e2e8f0;
  --muted: #6b7280;
  --text-body: #374151;
}
.hero-wrap { background: linear-gradient(160deg, #fff 0%, #f0f6ff 100%); border-bottom: 1px solid var(--border); overflow: hidden; }
.hero { min-height: 100vh; padding: 88px 0 88px 64px; display: flex; align-items: center; gap: 64px; max-width: 100%; margin: 0 auto; }
.hero h1 { font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 700; line-height: 1.08; letter-spacing: -2px; color: var(--navy); margin-bottom: 12px; }
.hero h1 em { font-style: normal; color: var(--blue); }
.hero-sub { font-size: 1rem; color: var(--text-body); max-width: 460px; line-height: 1.75; margin-bottom: 0; }
.hero-subtitle { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); opacity: 0.65; margin-bottom: 14px; letter-spacing: -0.01em; }
.hero-left-col { flex: 0 0 auto; width: 50%; max-width: 640px; z-index: 2; padding-right: 40px; }
.hero-img-placeholder {
  flex: 1; display: flex; align-items: stretch; align-self: stretch;
}
.hero-img-placeholder > div {
  width: 100%; max-width: 560px;
}
@media (max-width: 1024px) {
  .hero { flex-direction: column; padding: 60px 28px; gap: 40px; min-height: auto; }
  .hero-left-col { width: 100%; max-width: 100%; padding-right: 0; }
  .hero-img-placeholder { justify-content: center; width: 100%; align-self: auto; }
  .hero-img-placeholder > div { max-width: 100%; }
}
@media (max-width: 768px) {
  .hero { padding: 48px 20px 40px; gap: 32px; }
  .hero h1 { font-size: clamp(1.9rem, 6vw, 2.6rem); letter-spacing: -1px; }
}

.lexi-av { width: 34px; height: 34px; border-radius: 9px; background: var(--blue); display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; }
.lexi-name { font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.5); margin-bottom: 3px; }
.lexi-msg { font-size: .82rem; color: rgba(255,255,255,.88); line-height: 1.5; }
.cursor { display: inline-block; width: 2px; height: 13px; background: var(--blue-light); margin-left: 2px; vertical-align: middle; animation: blink 1s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
@keyframes fadeUp { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }

.logo-mark { width: 30px; height: 30px; border-radius: 8px; background: linear-gradient(135deg, var(--blue) 0%, #22c55e 100%); display: flex; align-items: center; justify-content: center; }
.logo-mark svg { width: 16px; height: 16px; fill: white; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 700; font-size: 1.05rem; color: var(--navy); }
.nav-cta { background: var(--blue); color: #fff; text-decoration: none; padding: 9px 20px; border-radius: 8px; font-weight: 600; font-size: 0.85rem; transition: background .2s; white-space: nowrap; }
.nav-cta:hover { background: var(--navy); }

.s-wrap { max-width: 1280px; margin: 0 auto; padding: 100px 64px; }
.s-chip { display: inline-flex; align-items: center; gap: 6px; background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 100px; padding: 4px 13px; font-size: .68rem; font-weight: 700; letter-spacing: .07em; color: var(--blue); text-transform: uppercase; margin-bottom: 18px; }
.s-title { font-size: clamp(1.9rem, 3vw, 2.7rem); font-weight: 700; line-height: 1.1; letter-spacing: -.025em; color: var(--navy); margin-bottom: 14px; }
.s-title em { font-style: normal; color: var(--blue); }
.s-lead { font-size: .98rem; color: var(--text-body); max-width: 540px; line-height: 1.75; margin-bottom: 56px; }

.ops-grid { display: flex; flex-direction: column; gap: 16px; }
.ops-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  box-sizing: border-box;
}
.ops-card::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, #2563eb, #22c55e);
  opacity: 0;
  transition: opacity .25s;
}
.ops-card:hover { transform: translateX(4px); box-shadow: 0 8px 32px rgba(37,99,235,.1); }
.ops-card:hover::before { opacity: 1; }
.ops-card:last-child { flex-direction: row; }
.ops-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(37,99,235,.3));
}
.ops-icon svg {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.ops-card > div[style*="flex:1"] {
  flex: 1;
  min-width: 0;
}
.ops-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #0d1b3e;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.ops-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .87rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 14px;
}
.ops-outcome {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .77rem;
  font-weight: 700;
  color: #2563eb;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 6px 14px;
  border-radius: 8px;
  line-height: 1.4;
}
.ops-outcome::before {
  content: 'Outcome';
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #2563eb;
  opacity: 0.55;
  padding-right: 8px;
  border-right: 1px solid #bfdbfe;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .ops-card { flex-direction: column; align-items: flex-start; padding: 24px 20px; }
  .ops-card:last-child { flex-direction: column; }
}

.ai-wrap { max-width: 1280px; margin: 0 auto 100px; padding: 0 64px; }
.ai-panel { background: #0d1b3e; border-radius: 20px; padding: 72px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 1024px) { .ai-panel { grid-template-columns: 1fr; gap: 40px; padding: 48px 32px; } }
.ai-chip { background: rgba(255,255,255,.09); color: rgba(255,255,255,.65); border-color: transparent; }
.ai-title { color: #fff; }
.ai-lead { color: rgba(255,255,255,.5); margin-bottom: 0; }
.ai-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.ai-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .88rem; color: rgba(255,255,255,.78); line-height: 1.65; }
.ai-dot { width: 6px; height: 6px; border-radius: 50%; background: #60a5fa; flex-shrink: 0; margin-top: 8px; }
.ai-outcome-tag { margin-top: 28px; display: inline-flex; align-items: flex-start; gap: 10px; background: rgba(37,99,235,.25); color: #93c5fd; padding: 9px 18px; border-radius: 10px; font-size: .83rem; font-weight: 600; line-height: 1.5; }
.ai-outcome-tag::before { content: 'Outcome'; font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: #93c5fd; opacity: 0.6; padding-right: 10px; border-right: 1px solid rgba(147,197,253,.3); white-space: nowrap; margin-top: 2px; }

.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.proof-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 40px; position: relative; overflow: hidden; }
.proof-card::after { content: '"'; position: absolute; top: 16px; right: 28px; font-size: 8rem; line-height: 1; color: #f1f5f9; font-family: Georgia, serif; pointer-events: none; }
.proof-client-row { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.proof-av { width: 50px; height: 50px; border-radius: 12px; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.proof-client-name { font-weight: 800; font-size: 1.05rem; color: var(--navy); }
.proof-client-meta { font-size: .78rem; color: var(--muted); margin-top: 2px; }
.proof-quote { font-size: .93rem; color: var(--text-body); line-height: 1.8; font-style: italic; margin-bottom: 22px; position: relative; }
.proof-author { font-weight: 800; font-size: .88rem; color: var(--navy); }
.proof-author-title { font-size: .78rem; color: var(--muted); margin-top: 3px; }
.proof-stats { display: flex; flex-direction: column; gap: 14px; }
.proof-stat { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 20px 22px; display: flex; gap: 14px; align-items: center; }
.proof-bar { width: 4px; height: 42px; border-radius: 4px; background: linear-gradient(180deg, var(--blue), #22c55e); flex-shrink: 0; }
.proof-num { font-size: 1.5rem; font-weight: 700; color: var(--navy); }
.proof-lbl { font-size: .8rem; color: var(--muted); line-height: 1.45; }

.footer-cta { background: var(--navy); text-align: center; padding: 88px 64px 72px; }
.footer-cta h2 { font-size: clamp(1.9rem,3vw,2.7rem); font-weight: 700; color: #fff; letter-spacing: -.025em; margin-bottom: 14px; }
.footer-cta p { font-size: .97rem; color: rgba(255,255,255,.5); margin-bottom: 36px; }
.footer-ctas { display: flex; gap: 12px; justify-content: center; }
.btn-wht { background: #fff; color: var(--blue); text-decoration: none; padding: 13px 26px; border-radius: 10px; font-weight: 700; font-size: .9rem; transition: all .2s; }
.btn-wht:hover { background: var(--blue); color: #fff; }
.btn-outl { background: transparent; color: rgba(255,255,255,.75); text-decoration: none; padding: 13px 26px; border-radius: 10px; font-weight: 600; font-size: .9rem; border: 1.5px solid rgba(255,255,255,.22); transition: all .2s; }
.btn-outl:hover { border-color: #fff; color: #fff; }
.footer-bar { background: var(--navy); border-top: 1px solid rgba(255,255,255,.07); padding: 22px 64px; display: flex; align-items: center; justify-content: space-between; }
.footer-bar p { font-size: .78rem; color: rgba(255,255,255,.3); }
.cert-tags { display: flex; gap: 10px; }
.ctag { font-size: .7rem; font-weight: 700; padding: 3px 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 6px; color: rgba(255,255,255,.38); }

@media (max-width: 1024px) {
  nav { padding: 0 28px; }
  .hero { grid-template-columns: 1fr; padding: 60px 28px; gap: 44px; }
  .s-wrap { padding: 72px 28px; }
  .ai-wrap { padding: 0 28px; }
  .proof-grid { grid-template-columns: 1fr; }
  .footer-cta { padding: 64px 28px; }
  .footer-bar { padding: 20px 28px; }
}

.logo-scroller { overflow: hidden; position: relative; }
    .logo-scroller::before,
    .logo-scroller::after {
      content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
    }
    .logo-scroller::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
    .logo-scroller::after  { right: 0; background: linear-gradient(to left, #fff, transparent); }
    .logo-track {
      display: flex; align-items: center; gap: 56px;
      width: max-content;
      animation: scroll-logos 50s linear infinite;
    }
    .logo-track:hover { animation-play-state: paused; }
    @keyframes scroll-logos {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .logo-item {
      display: flex; align-items: center; gap: 10px;
      opacity: 0.6;
      transition: opacity .25s;
      flex-shrink: 0; cursor: default;
    }
    .logo-item:hover { opacity: 1; }
    .logo-icon {
      width: 38px; height: 38px; border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; flex-shrink: 0;
    }
    .logo-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700; font-size: .92rem;
      color: #0d1b3e; white-space: nowrap;
    }

/* ==========================================================================
   BFSI PAGE — Extracted inline styles
   All rules below are additions only; no existing rules were modified.
   Appended: April 2026
   ========================================================================== */

/* ────────────────────────────────────────────────────────
   SHARED: image placeholder text helpers
   ──────────────────────────────────────────────────────── */

.img-placeholder-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.img-placeholder-hint {
  font-size: 0.72rem;
  font-weight: 400;
}

/* ────────────────────────────────────────────────────────
   HERO (BFSI page overrides / additions)
   ──────────────────────────────────────────────────────── */

/* AI-tagline under h1 */
.hero-tagline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #0d1b3e;
  opacity: 0.75;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

/* Wrapper that adds top-margin before the CTA button */
.hero-cta-wrap {
  margin-top: 28px;
}

/* Hero image — fills the right column edge-to-edge */
.hero-img-inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px 0 0 20px;
}

/* ────────────────────────────────────────────────────────
   LOGO BAND
   ──────────────────────────────────────────────────────── */

.logo-band {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  overflow: hidden;
}

.logo-band-label {
  text-align: center;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 28px;
}

/* ────────────────────────────────────────────────────────
   GOVERNANCE SECTION
   ──────────────────────────────────────────────────────── */

/* Base layout — the responsive override already in file uses !important
   so it will correctly override these values at small breakpoints. */
.governance-section {
  background: #0d1b3e;
  padding: 80px 64px;
}

.governance-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.governance-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.governance-lead {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  max-width: 860px;
  line-height: 1.7;
}
.governance-lead strong { color: #ffffff; }

.governance-body {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 44px;
  max-width: 1100px;
  line-height: 1.7;
}

/* Individual metric cards inside .governance-metrics grid */
.governance-metric-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 28px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.governance-metric-card + .governance-metric-card {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.governance-metric-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(37, 99, 235, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* First card uses a slightly brighter blue */
.governance-metric-icon--primary {
  background: rgba(26, 91, 255, 0.25);
}

.governance-metric-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}
.governance-metric-text strong { color: #ffffff; }

.governance-summary {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 900px;
}
.governance-summary strong { color: rgba(255, 255, 255, 0.8); font-style: normal; }

/* ────────────────────────────────────────────────────────
   SECTION TITLE MODIFIER — centered variant
   ──────────────────────────────────────────────────────── */

/* Use on any .s-title that needs full-width centered layout */
.s-title--center {
  text-align: center;
  max-width: 100%;
  margin-bottom: 48px;
}

/* ────────────────────────────────────────────────────────
   OPS CARDS — body wrapper (replaces inline style="flex:1")
   ──────────────────────────────────────────────────────── */

.ops-body {
  flex: 1;
  min-width: 0;
}

/* ────────────────────────────────────────────────────────
   AI SECTION additions
   ──────────────────────────────────────────────────────── */

/* Italic coloured span inside .ai-title */
.ai-em { color: #6fa4ff; }

/* Image placeholder inside .ai-panel */
.ai-img-placeholder {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

/* ────────────────────────────────────────────────────────
   PROVEN TRANSFORMATION
   ──────────────────────────────────────────────────────── */

.proven-wrap {
  padding: 0 64px 100px;
  max-width: 1280px;
  margin: 0 auto;
}

/* .proven-grid base layout already declared in file; adding inner styles here */
.proven-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 10px;
}

.proven-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.proven-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.proven-list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}
.proven-list-item .list-arrow {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.proven-quote {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 28px;
}

.proven-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.proven-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.proven-img-inner {
  width: 80%;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

/* ── Proven wrap responsive ── */
@media (max-width: 900px) {
  .proven-wrap {
    padding: 0 24px 60px;
  }
}
@media (max-width: 480px) {
  .proven-wrap {
    padding: 0 16px 48px;
  }
  .proven-grid {
    padding: 28px 24px !important;
    gap: 32px !important;
  }
  .proven-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .proven-cta-row .btn-cta-white {
    text-align: center;
    justify-content: center;
  }
}

/* ────────────────────────────────────────────────────────
   CASE STUDY SECTION
   ──────────────────────────────────────────────────────── */

/* .casestudy-grid base layout already declared in file */
.casestudy-section {
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 64px;
}

.casestudy-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #0d1b3e;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.casestudy-desc {
  font-size: 0.92rem;
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 28px;
}

.casestudy-img-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.casestudy-img-inner {
  width: 100%;
  max-width: 560px;
  border-radius: 20px;
  object-fit: cover;
  display: block;
  filter: drop-shadow(0 20px 60px rgba(13, 27, 62, 0.14));
}

/* ────────────────────────────────────────────────────────
   TESTIMONIAL additions
   ──────────────────────────────────────────────────────── */

/* Dark navy avatar variant (bank icon) */
.t-avatar--bank {
  background: #0d1b3e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

/* Company name text inside .t-company-logo */
.t-company-name {
  font-size: 13px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 1px;
}

/* ────────────────────────────────────────────────────────
   MEASURABLE OUTCOMES TABLE
   ──────────────────────────────────────────────────────── */

.outcomes-section {
  padding-top: 80px;
  padding-bottom: 100px;
}

.outcomes-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 28px rgba(11, 31, 74, 0.06);
}

.outcomes-col {
  padding: 32px 28px;
}
.outcomes-col + .outcomes-col {
  border-left: 1px solid var(--border);
}

.outcomes-col-header {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #0d1b3e;
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.outcomes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.outcomes-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #6b7280;
}
.outcomes-item .outcomes-dot { font-size: 1rem; flex-shrink: 0; }

.outcomes-cta-wrap {
  text-align: center;
  margin-top: 40px;
}

/* Responsive: stack outcomes columns on mobile
   (replaces the div[style*=] attribute selector already in the file) */
@media (max-width: 768px) {
  .outcomes-table {
    grid-template-columns: 1fr;
  }
  .outcomes-col + .outcomes-col {
    border-left: none;
    border-top: 1px solid var(--border);
  }
}

/* ────────────────────────────────────────────────────────
   WHY PEOPLESHR SECTION
   ──────────────────────────────────────────────────────── */

/* Base layout — responsive override already in file uses !important */
.why-section {
  background: #0d1b3e;
  padding: 80px 64px;
}

/* .why-grid-inner responsive already in file; base layout here */
.why-grid-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-img-inner {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}

.why-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 28px;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.why-list-item {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.why-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #60a5fa;
  display: inline-block;
  flex-shrink: 0;
}

/* ────────────────────────────────────────────────────────
   PROVEN GRID inner styles (background/padding/gap)
   .proven-grid already declared as a base grid; extend here.
   ──────────────────────────────────────────────────────── */
.proven-grid {
  background: linear-gradient(135deg, #1a5bff 0%, #0b3bbf 40%, #22c55e 100%);
  border-radius: 24px;
  padding: 64px;
  gap: 64px;
  align-items: center;
}

/* ────────────────────────────────────────────────────────
   CASESTUDY GRID inner styles
   .casestudy-grid already declared as a base grid; extend here.
   ──────────────────────────────────────────────────────── */
.casestudy-grid {
  max-width: 1280px;
  margin: 0 auto;
  gap: 80px;
  align-items: center;
}

/* END BFSI PAGE ADDITIONS *//* ==========================================================================
   phrhome-additions.css
   Additions for Transportation & Logistics solutions page.
   Append this block to the end of phrhome.css.
   All rules are additions only — no existing rules were modified.
   ========================================================================== */

/* ────────────────────────────────────────────────────────
   SOLUTIONS PAGES: constrain hero to 1280px
   (.hero alone is 100% wide on the homepage; .hero-wrap only exists on
   solutions pages, so this override is safely scoped.)
   ──────────────────────────────────────────────────────── */
.hero-wrap .hero { max-width: 100%; }

/* ────────────────────────────────────────────────────────
   GOVERNANCE METRICS GRID — visual wrapper styles
   (Base grid columns already declared in phrhome.css;
   these properties extend that definition.)
   ──────────────────────────────────────────────────────── */
.governance-metrics {
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 44px;
}

/* Icon background colour variants */
.governance-metric-icon--yellow { background: rgba(234, 179, 8, 0.15); }
.governance-metric-icon--green  { background: rgba(34, 197, 94, 0.15); }
.governance-metric-icon--orange { background: rgba(251, 146, 60, 0.15); }
/* blue variant already covered by .governance-metric-icon--primary */

/* ────────────────────────────────────────────────────────
   LIGHT SECTION WRAPPER
   Used for casestudy and proven-transformation sections.
   ──────────────────────────────────────────────────────── */
.section-light {
  background: var(--bg-light);
  padding: 80px 64px;
  border-top: 1px solid var(--border);
}
@media (max-width: 1024px) { .section-light { padding: 60px 28px; } }

/* ────────────────────────────────────────────────────────
   SECTION TYPOGRAPHY — h2 and subhead inside light sections
   ──────────────────────────────────────────────────────── */
.section-h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.section-subhead {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ────────────────────────────────────────────────────────
   ARROW BULLET LIST
   ──────────────────────────────────────────────────────── */
.arrow-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.arrow-list-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
}

.arrow-list-item strong { color: var(--navy); }

.arrow-list-icon {
  width: 28px;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 1px;
}

/* ────────────────────────────────────────────────────────
   DASHED BOX (outcome / quote)
   ──────────────────────────────────────────────────────── */
.dashed-box {
  border: 1.5px dashed #bfdbfe;
  border-radius: 12px;
  padding: 16px 20px;
  background: #fff;
  margin-bottom: 20px;
}

.dashed-box p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 0;
}

.dashed-box strong { color: var(--navy); }

/* Italic variant used for pull-quotes */
.dashed-box--quote p { font-style: italic; }

/* Increased bottom margin when used in proven section */
.dashed-box--mb { margin-bottom: 24px; }

/* ────────────────────────────────────────────────────────
   IMAGE PLACEHOLDERS — light and dark panel variants
   ──────────────────────────────────────────────────────── */
.img-wrap-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.img-placeholder-light {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16 / 11;
  border-radius: 20px;
  background: #f1f5f9;
  border: 2px dashed #cbd5e1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #94a3b8;
  filter: drop-shadow(0 20px 60px rgba(13, 27, 62, 0.08));
}

/* ────────────────────────────────────────────────────────
   OPS CARD BULLET LIST
   ──────────────────────────────────────────────────────── */
.ops-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.ops-list-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.ops-list-arrow {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ────────────────────────────────────────────────────────
   AI SECTION ADDITIONS
   ──────────────────────────────────────────────────────── */

/* Bold text inside .ai-lead (subhead) */
.ai-lead strong { color: rgba(255, 255, 255, 0.85); }

/* Top-margin variant for .ai-list */
.ai-list--mt { margin-top: 28px; }

/* CTA wrapper below .ai-list */
.ai-cta-wrap { margin-top: 28px; }

/* Top-margin variant for .ai-wrap (solutions pages add space above panel) */
.ai-wrap--mt { margin-top: 100px; }

/* ────────────────────────────────────────────────────────
   S-TITLE MODIFIERS
   ──────────────────────────────────────────────────────── */

/* Reduced bottom margin — used when a lead paragraph follows the title */
.s-title--mb-sm { margin-bottom: 12px; }

/* ────────────────────────────────────────────────────────
   SECTION LEAD — centred variant (outcomes section intro)
   ──────────────────────────────────────────────────────── */
.section-lead-center {
  text-align: center;
  font-size: 0.97rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}

/* ────────────────────────────────────────────────────────
   OUTCOMES CTA WRAP — top margin
   (.outcomes-cta-wrap already declared; this adds margin-top only)
   ──────────────────────────────────────────────────────── */
.outcomes-cta-wrap { margin-top: 40px; }

/* ────────────────────────────────────────────────────────
   WHY SECTION ADDITIONS
   ──────────────────────────────────────────────────────── */

/* Bold subhead under .why-title (dark section) */
.why-subhead {
  font-size: 0.97rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Reduced bottom margin on .why-title when followed by .why-subhead */
.why-title--with-subhead { margin-bottom: 12px; }

/* Reduced bottom margin on .why-list when CTA follows closely */
.why-list--mb { margin-bottom: 28px; }

/* Small top-offset for CTA buttons inside sections */
.btn-mt-sm { margin-top: 8px; }

/* END TRANSPORT & LOGISTICS PAGE ADDITIONS */

/* ==========================================================================
   SOLUTIONS PAGES — Hero layout for 2:1 images
   Appended: April 2026
   All rules scoped to .hero-wrap (solutions pages only).
   Homepage hero is untouched.
   ========================================================================== */

/* Remove full-viewport height; use content height instead */
.hero-wrap .hero {
  min-height: auto;
  padding: 80px 64px;
  align-items: center;
  gap: 32px;
}

/* Wider text column (55%) — leaves 45% for the 2:1 image */
.hero-wrap .hero-left-col {
  width: 55%;
  max-width: 780px;
  padding-right: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Zero out individual child margins — gap handles all spacing */
.hero-wrap .hero h1           { margin-bottom: 0; }
.hero-wrap .hero-tagline      { margin-bottom: 0; }
.hero-wrap .hero-subtitle     { margin-bottom: 0; }
.hero-wrap .hero-sub          { margin-bottom: 0; max-width: 100%; }
.hero-wrap .hero-cta-wrap     { margin-top: 0; }

/* Image column: centred vertically and horizontally */
.hero-wrap .hero-img-placeholder {
  align-items: center;
  align-self: auto;
  justify-content: center;
}

/* Image: natural height (respects 2:1 source ratio), rounded, soft shadow */
.hero-wrap .hero-img-inner {
  height: auto;
  max-width: 440px;
  border-radius: 20px;
  filter: drop-shadow(0 20px 60px rgba(13, 27, 62, 0.14));
}

@media (max-width: 1024px) {
  .hero-wrap .hero { padding: 60px 28px; }
  .hero-wrap .hero-left-col { width: 100%; max-width: 100%; padding-right: 0; }
  .hero-wrap .hero-img-placeholder { justify-content: center; }
}

@media (max-width: 768px) {
  .hero-wrap .hero { padding: 48px 20px; }
}

/* ────────────────────────────────────────────────────────
   T&L PAGE — Section image utility classes
   ──────────────────────────────────────────────────────── */

.section-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 20px;
  display: block;
  filter: drop-shadow(0 20px 60px rgba(13, 27, 62, 0.08));
}

.ai-section-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.why-section-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 20px;
  display: block;
}

/* END SOLUTIONS PAGE ADDITIONS */
/* ==========================================================================
   HOSPITALITY PAGE ADDITIONS
   Appended: April 2026
   All rules are additions only — no existing rules were modified.
   ========================================================================== */

/* ── Mobile line-break helper ── */
.mobile-break { display: none; }
@media (max-width: 768px) { .mobile-break { display: block; } }

/* ── Dark image placeholder (dark-panel backgrounds) ── */
.img-placeholder-dark {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.3);
  width: 100%;
}

/* ── Ops bullets — checklist inside ops cards ── */
.ops-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}
.ops-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.6;
}
.ops-bullet-dot {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.ops-bullet-dot svg { display: block; }

/* ── Governance subtitle ("The Hospitality Reality.") ── */
.governance-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 44px;
}

/* ── Reality cards grid (3-col inside governance section) ── */
.reality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 44px;
}
@media (max-width: 900px) { .reality-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .reality-grid { grid-template-columns: 1fr; } }

.reality-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 28px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.reality-card--bl  { border-left: 1px solid rgba(255, 255, 255, 0.07); }
.reality-card--bt  { border-top:  1px solid rgba(255, 255, 255, 0.07); }
.reality-card--empty { background: rgba(255, 255, 255, 0.02); }

.reality-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(37, 99, 235, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.reality-text { font-size: 0.85rem; color: rgba(255, 255, 255, 0.75); line-height: 1.65; }
.reality-text strong { color: #ffffff; }

/* ── Governance impact quote ── */
.governance-impact {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 900px;
}
.governance-impact strong { color: rgba(255, 255, 255, 0.85); }

/* ── s-wrap modifiers ── */
.s-wrap--light    { background: var(--bg-light); }
.s-wrap--spacious { padding-top: 100px; padding-bottom: 100px; }

/* ── Proven grid: solid dark variant (overrides gradient) ── */
.proven-grid--dark {
  background: #0d1b3e;
  border-radius: 20px;
}

/* Title inside dark proven card */
.proven-dark-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 32px;
}

/* AI section: aspect-ratio wrapper for image placeholder */
.ai-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
}

/* Why section tagline (short bold line before CTA) */
.why-tagline {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* END HOSPITALITY PAGE ADDITIONS */

/* ==========================================================================
   GOVERNANCE SECTION — Hospitality page fixes
   Appended: April 2026
   ========================================================================== */

/* Modifier: governance-body when followed by a subtitle (reduces bottom gap) */
.governance-body--with-subtitle {
  margin-bottom: 28px;
}

/* Tablet responsive: reduce governance section padding */
@media (max-width: 1024px) {
  .governance-section {
    padding: 60px 28px;
  }
  .governance-inner {
    max-width: 100%;
  }
}

/* Mobile: reset horizontal borders on reality cards (irrelevant in 1-col layout) */
@media (max-width: 600px) {
  .reality-card--bl { border-left: none; }
  .reality-card--bt { border-top: none; }
  .reality-card + .reality-card { border-top: 1px solid rgba(255, 255, 255, 0.07); }
  .reality-card--empty { display: none; }
}

/* Tablet: hide empty filler cell so it doesn't appear as a blank row */
@media (max-width: 900px) {
  .reality-card--empty { display: none; }
}

/* END GOVERNANCE FIXES */
/* ==========================================================================
   IT & ITES PAGE ADDITIONS
   Appended: April 2026
   All rules are additions only — no existing rules were modified.
   ========================================================================== */

/* ── Hero image column base layout (solutions pages) ── */
.hero-wrap .hero-img-placeholder {
  flex: 1;
  display: flex;
}

/* ── Pain card accent icon colour variants ── */
.governance-metric-icon--teal   { background: rgba(99,  179, 237, 0.15); }
.governance-metric-icon--purple { background: rgba(159, 122, 234, 0.15); }

/* ── Proven gradient variant — IT & ITES page ── */
.proven-grid--it {
  background: linear-gradient(135deg, #1a5bff 0%, #0b8f5e 100%);
}

/* ── AI section: flex image cell wrapper ── */
.ai-img-cell {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Why section: arrow bullet ── */
.why-arrow {
  color: #60a5fa;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Why section: SEO anchor box — dark panel variant ── */
.why-seo-box {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 16px 20px;
}
.why-seo-box strong { color: #fff; }

/* ── Ops bullets: bottom margin variants ── */
.ops-bullets--mb    { margin-bottom: 20px; }
.ops-bullets--mb-lg { margin-bottom: 24px; }

/* ── Ops outcome: bottom margin modifier ── */
.ops-outcome--mb { margin-bottom: 32px; }

/* ── Aspect-ratio helper for dark image placeholders ── */
.ph-ar-16-11 { aspect-ratio: 16 / 11; }

/* ── Connecting HR section wrapper ── */
.connecting-section {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 64px;
}
@media (max-width: 1024px) {
  .connecting-section { padding: 60px 28px; }
}

/* END IT & ITES PAGE ADDITIONS */
/* ==========================================================================
   MANUFACTURING PAGE ADDITIONS
   Appended: April 2026
   All rules are additions only — no existing rules were modified.
   ========================================================================== */

/* ── Hero: bold subtitle line beneath h1 ── */
.hero-subtitle-line {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.75;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

/* ── Hero sub paragraph spacing modifiers ── */
.hero-sub--mb-sm { margin-bottom: 20px; }
.hero-sub--mb    { margin-bottom: 32px; }

/* ── Logo band ── */
.logo-band {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  overflow: hidden;
}
.logo-band-label {
  text-align: center;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 28px;
}
.logo-scroller { overflow: hidden; position: relative; }
.logo-scroller::before,
.logo-scroller::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.logo-scroller::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.logo-scroller::after  { right: 0; background: linear-gradient(to left, #fff, transparent); }
.logo-track {
  display: flex; align-items: center; gap: 56px;
  width: max-content;
  animation: scroll-logos 50s linear infinite;
}
.logo-track:hover { animation-play-state: paused; }
@keyframes scroll-logos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-item {
  display: flex; align-items: center; gap: 10px;
  opacity: 0.6;
  transition: opacity .25s;
  flex-shrink: 0; cursor: default;
}
.logo-item:hover { opacity: 1; }
.logo-icon {
  width: 38px; height: 38px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.logo-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 0.92rem;
  color: var(--navy); white-space: nowrap;
}

/* ── Governance inner wrapper ── */
.governance-title {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.governance-body {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 1000px;
  line-height: 1.7;
  margin-bottom: 44px;
}
/* All <strong> inside governance dark section defaults to white */
.governance-section strong { color: #fff; }

/* ── Governance metrics 3-top / 2-bottom split grid (Manufacturing) ── */
.governance-metrics-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: none;
}
.governance-metrics-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 44px;
}
@media (max-width: 1024px) {
  .governance-metrics-top    { grid-template-columns: repeat(2, 1fr); border-radius: 16px 16px 0 0; }
  .governance-metrics-bottom { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .governance-metrics-top    { grid-template-columns: 1fr; }
  .governance-metrics-bottom { grid-template-columns: 1fr; }
}

/* ── Governance impact italic summary line ── */
.governance-impact--mfg {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 960px;
}
.governance-impact--mfg strong {
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
}

/* ── ops-card inner body wrapper ── */
.ops-body { flex: 1; }

/* ── Connecting HR to factory floor section (spacious variant) ── */
.connecting-section--spacious {
  padding-top: 100px;
  padding-bottom: 100px;
}
.connecting-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.connecting-subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}
.connecting-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.connecting-bullet {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
}
.connecting-bullet-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: #ede9fe;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem; font-weight: 700;
  color: #6d28d9;
}
.connecting-outcome-box {
  border: 1.5px dashed #86efac;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 16px;
  background: #f0fdf4;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}
.connecting-outcome-box strong { color: var(--navy); }
.connecting-quote-box {
  border: 1.5px dashed #a5b4fc;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 28px;
  background: #f5f3ff;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  font-style: italic;
}
.connecting-quote-source {
  font-style: normal;
  font-weight: 600;
  color: var(--text-muted);
}
.connecting-img-col {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* ── AI section: manufacturing subtitle modifier ── */
.ai-lead--strong {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  margin-bottom: 28px;
}
/* All <strong> inside ai-panel defaults to white */
.ai-panel strong { color: #fff; }
.ai-cta-row { margin-top: 32px; }

/* ── Image placeholders ── */
.ph-light {
  aspect-ratio: 16 / 11;
  border-radius: 20px;
  background: #f1f5f9;
  border: 2px dashed #cbd5e1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: #94a3b8;
  filter: drop-shadow(0 20px 60px rgba(13, 27, 62, 0.14));
  width: 100%;
}
.ph-light--shadow-sm { filter: drop-shadow(0 20px 60px rgba(13, 27, 62, 0.1)); }
.ph-dark {
  aspect-ratio: 16 / 11;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.35);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: rgba(255, 255, 255, 0.5);
  width: 100%;
}
.ph-dark-ai {
  width: 100%; aspect-ratio: 4 / 3;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: rgba(255, 255, 255, 0.3);
}
.ph-dark-why {
  width: 100%; max-width: 480px;
  aspect-ratio: 16 / 11;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px dashed rgba(255, 255, 255, 0.25);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.ph-label {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
}
.ph-sublabel {
  font-size: 0.72rem; font-weight: 400; opacity: 0.7;
}

/* ── Proven section ── */
.proven-outer {
  padding: 0 64px 100px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 1024px) { .proven-outer { padding: 0 28px 72px; } }
@media (max-width: 768px)  { .proven-outer { padding: 0 20px 60px; } }

.proven-grid--mfg {
  background: linear-gradient(135deg, #1a5bff 0%, #0b3bbf 40%, #22c55e 100%);
  border-radius: 24px;
  padding: 64px;
}
@media (max-width: 900px) { .proven-grid--mfg { padding: 40px; } }

.proven-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800; color: #fff;
  letter-spacing: -0.02em; line-height: 1.08;
  margin-bottom: 10px;
}
.proven-meta {
  font-size: 0.9rem; font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}
.proven-bullets {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 32px;
}
.proven-bullet {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.9rem; color: rgba(255, 255, 255, 0.9); line-height: 1.6;
}
.proven-bullet-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.proven-quote {
  font-size: 0.88rem; color: rgba(255, 255, 255, 0.8);
  font-style: italic; line-height: 1.7; margin-bottom: 28px;
}
.proven-img-col {
  display: flex; align-items: center; justify-content: center;
}

/* ── Outcomes table ── */
.outcomes-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 28px rgba(11, 31, 74, 0.06);
}
@media (max-width: 768px) {
  .outcomes-table { grid-template-columns: 1fr; }
  .outcomes-col--border-r { border-right: none; border-bottom: 1px solid var(--border); }
}
.outcomes-col { padding: 32px 28px; }
.outcomes-col--border-r { border-right: 1px solid var(--border); }
.outcomes-col-header {
  font-weight: 700; font-size: 1rem; color: var(--navy);
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.outcomes-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 18px;
}
.outcomes-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--text-muted);
}
.outcomes-cta { text-align: center; margin-top: 40px; }

/* ── Why section (manufacturing) ── */
.why-title {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800; color: #fff;
  letter-spacing: -0.02em; line-height: 1.1;
  margin-bottom: 16px;
}
.why-bullets {
  list-style: none;
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 32px;
}
.why-bullet {
  display: flex; gap: 14px; align-items: center;
  font-size: 0.92rem; color: rgba(255, 255, 255, 0.85); line-height: 1.6;
}
.why-bullet-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem; font-weight: 700; color: #a5b4fc;
}
.why-img-col {
  display: flex; justify-content: center; align-items: center;
}

/* END MANUFACTURING PAGE ADDITIONS */

/* ── Manufacturing page: section images ── */
.mfg-img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.mfg-img--hero {
  border-radius: 20px;
  aspect-ratio: 16 / 11;
  filter: drop-shadow(0 20px 60px rgba(13, 27, 62, 0.14));
  max-width: 560px;
}
.mfg-img--section {
  border-radius: 20px;
  aspect-ratio: 16 / 11;
  filter: drop-shadow(0 20px 60px rgba(13, 27, 62, 0.1));
}
.mfg-img--proven {
  border-radius: 16px;
  aspect-ratio: 16 / 11;
}
.mfg-img--ai {
  border-radius: 16px;
  aspect-ratio: 4 / 3;
}
.mfg-img--why {
  border-radius: 20px;
  aspect-ratio: 16 / 11;
  max-width: 480px;
}

/* ── Manufacturing hero: fixes ── */
/* Prevent flex-column stretching the CTA button to full width */
.hero-wrap .hero-left-col {
  align-items: flex-start;
}
/* Hero image: show full image without cropping */
.mfg-img--hero {
  aspect-ratio: unset;
  object-fit: contain;
  height: auto;
}

/* ══════════════════════════════════════════════════════════════
   P&B SERVICES PAGE — NEW CLASSES
   Added: April 2026
   ══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.hero-subtitle {
  font-size: 1.15rem; font-weight: 600;
  color: #0d1b3e; opacity: 0.75;
  margin-bottom: 16px; letter-spacing: -0.01em;
}
.hero-cta-row { margin-top: 32px; }
.hero-img-col { aspect-ratio: 16 / 11; }
.hero-section-img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 20px;
  filter: drop-shadow(0 20px 60px rgba(13,27,62,0.14));
}

/* ── Logo band ── */
.logo-band {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0; overflow: hidden;
}
.logo-band-label {
  text-align: center; font-size: 0.69rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: #94a3b8; margin-bottom: 28px;
}
.logo-scroller { overflow: hidden; position: relative; }
.logo-scroller::before,
.logo-scroller::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px;
  z-index: 2; pointer-events: none;
}
.logo-scroller::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.logo-scroller::after  { right: 0; background: linear-gradient(to left,  #fff, transparent); }
.logo-track {
  display: flex; align-items: center; gap: 56px;
  width: max-content;
  animation: scroll-logos 50s linear infinite;
}
.logo-track:hover { animation-play-state: paused; }
@keyframes scroll-logos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-item {
  display: flex; align-items: center; gap: 10px;
  opacity: 0.6;
  transition: opacity .25s;
  flex-shrink: 0; cursor: default;
}
.logo-item:hover { opacity: 1; }
.logo-icon {
  width: 38px; height: 38px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.logo-name { font-weight: 700; font-size: .92rem; color: #0d1b3e; white-space: nowrap; }

/* ── Dark section (workforce reality / governance) ── */
.dark-section { background: #0d1b3e; padding: 80px 64px; }
.dark-section-inner { max-width: 1280px; margin: 0 auto; }
.dark-section-h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 700;
  color: #fff; letter-spacing: -.02em; margin-bottom: 14px;
}
.dark-section-lead {
  font-size: .93rem; color: rgba(255,255,255,.6);
  max-width: 900px; line-height: 1.7; margin-bottom: 44px;
}
.dark-summary {
  font-size: .95rem; color: rgba(255,255,255,.55);
  font-style: italic; line-height: 1.75;
  margin-bottom: 28px; max-width: 960px;
}
.gov-metrics-wrap {
  display: grid; gap: 1px;
  background: rgba(255,255,255,.07);
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  margin-bottom: 44px;
}
.gov-card {
  background: rgba(255,255,255,.04);
  padding: 28px 24px;
  display: flex; gap: 14px; align-items: flex-start;
}
.gov-card--border-l { border-left: 1px solid rgba(255,255,255,.07); }
.gov-card-icon {
  width: 38px; height: 38px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; flex-shrink: 0;
}
.gov-card-icon--amber  { background: rgba(234,179,8,.15); }
.gov-card-icon--green  { background: rgba(34,197,94,.15); }
.gov-card-icon--orange { background: rgba(251,146,60,.15); }
.gov-card-icon--blue   { background: rgba(37,99,235,.25); }
.gov-card-text { font-size: .85rem; color: rgba(255,255,255,.75); line-height: 1.65; }
@media (max-width: 1024px) { .dark-section { padding: 60px 28px; } }
@media (max-width: 768px)  { .dark-section { padding: 48px 20px; } }

/* ── Ops card inner body & bullets ── */
.ops-body { flex: 1; }
.ops-bullets {
  list-style: none; display: flex; flex-direction: column;
  gap: 6px; margin-bottom: 14px;
}
.ops-bullet {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: .82rem; color: var(--text-muted); line-height: 1.5;
}
.ops-bullet-arrow { color: var(--blue); flex-shrink: 0; margin-top: 1px; }

/* ── Connecting HR section ── */
.connecting-section {
  background: #f8fafc;
  padding: 80px 64px;
  border-top: 1px solid var(--border);
}
.connecting-inner {
  max-width: 1280px; margin: 0 auto;
}
.connecting-h2 {
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700;
  color: #0d1b3e; line-height: 1.08;
  letter-spacing: -.025em; margin-bottom: 16px;
}
.connecting-subtitle {
  font-size: .97rem; font-weight: 700;
  color: #0d1b3e; line-height: 1.6; margin-bottom: 28px;
}
.connecting-bullets {
  list-style: none; display: flex; flex-direction: column;
  gap: 14px; margin-bottom: 24px;
}
.connecting-bullet {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: .92rem; color: var(--text-body); line-height: 1.6;
}
.connecting-bullet-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: #eff6ff; border: 1px solid #bfdbfe;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--blue);
  font-size: .75rem; font-weight: 700; margin-top: 1px;
}
.connecting-img { width: 100%; border-radius: 20px; filter: drop-shadow(0 20px 60px rgba(13,27,62,0.08)); }
@media (max-width: 1024px) { .connecting-section { padding: 60px 28px; } }
@media (max-width: 768px)  { .connecting-section { padding: 48px 20px; } }

/* ── AI section image wrapper & subtitle ── */
.ai-img-wrap { width: 100%; aspect-ratio: 4/3; border-radius: 16px; overflow: hidden; }
.ai-img-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.ai-lead--strong { font-weight: 700; color: rgba(255,255,255,.85); font-size: 1rem; margin-bottom: 0; }
.ai-list--mt { margin-top: 28px; }
.ai-cta-row { margin-top: 28px; }

/* ── Proven transformation section ── */
.proven-section-header { text-align: center; margin-bottom: 40px; }
.proven-section-title {
  font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 700;
  color: #0d1b3e; letter-spacing: -.02em; line-height: 1.1; margin-bottom: 10px;
}
.proven-section-meta { font-size: .9rem; font-weight: 600; color: var(--text-muted); }
.proven-table-wrap {
  background: #f8fafc; border: 1px solid var(--border);
  border-radius: 24px; overflow: hidden;
}
.proven-table-header {
  display: grid; grid-template-columns: 1fr 1fr;
  padding: 20px 40px; border-bottom: 1px solid var(--border); background: #fff;
}
.proven-col-label {
  font-size: .78rem; font-weight: 700; color: #94a3b8;
  letter-spacing: .08em; text-transform: uppercase;
}
.proven-col-label--right { text-align: right; }
.proven-footer {
  padding: 32px 40px; background: #fff; border-top: 1px solid var(--border);
}
.proven-quote-box {
  border: 1.5px dashed #6ee7b7; border-radius: 12px;
  padding: 18px 24px; margin-bottom: 28px; background: #f0fdf4;
}
.proven-quote-text { font-size: .95rem; color: #374151; font-style: italic; line-height: 1.7; }
.proven-cta-row { text-align: center; }
.metric-num-note { font-size: .82rem; font-weight: 600; color: #6b7280; }

/* ── Outcomes section ── */
.s-wrap--outcomes { padding-top: 80px; padding-bottom: 100px; }
.s-title--center { text-align: center; max-width: 100%; margin-bottom: 12px; }
.outcomes-subtitle {
  text-align: center; font-size: .97rem;
  color: var(--text-muted); margin-bottom: 48px;
}

/* ── Why section additions ── */
.why-subtitle {
  font-size: .97rem; font-weight: 700;
  color: rgba(255,255,255,.8); line-height: 1.6; margin-bottom: 28px;
}
.why-bullet-dot {
  display: flex; gap: 12px; align-items: center;
  font-size: .92rem; color: rgba(255,255,255,.85); line-height: 1.6;
}
.why-bullet-dot-icon {
  width: 6px; height: 6px; border-radius: 50%;
  background: #60a5fa; display: inline-block; flex-shrink: 0;
}
.why-summary-box {
  border: 1.5px dashed rgba(255,255,255,.25);
  border-radius: 12px; padding: 16px 20px; margin-bottom: 28px;
}
.why-summary-text { font-size: .92rem; color: rgba(255,255,255,.8); line-height: 1.7; }
.why-img-wrap { width: 100%; max-width: 480px; }
.why-img-wrap img { width: 100%; border-radius: 20px; }

/* END P&B SERVICES PAGE ADDITIONS */

/* ══════════════════════════════════════════════════════════════
   CHRO PAGE — NEW CLASSES
   Added: April 2026
   ══════════════════════════════════════════════════════════════ */

/* ── Image placeholders ── */
.img-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; border-radius: 20px;
}
.img-placeholder--light {
  background: #f1f5f9; border: 2px dashed #cbd5e1; color: #94a3b8;
}
.img-placeholder--navy {
  background: rgba(255,255,255,.08);
  border: 2px dashed rgba(255,255,255,.25);
  color: rgba(255,255,255,.4);
}
.img-placeholder span { font-size: .82rem; font-weight: 600; letter-spacing: .02em; }
.img-placeholder small { font-size: .72rem; font-weight: 400; opacity: .7; }
.img-placeholder--navy span { color: rgba(255,255,255,.5); }
.img-placeholder--navy small { color: rgba(255,255,255,.35); opacity: 1; }

/* ── Buttons (CHRO) ── */
.btn-blue {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff; text-decoration: none;
  padding: 13px 26px; border-radius: 10px;
  font-weight: 700; font-size: .9rem;
  box-shadow: 0 6px 24px rgba(37,99,235,.35);
  transition: background .2s, transform .15s;
}
.btn-blue:hover { background: #1d4ed8; transform: translateY(-1px); }
.btn-blue-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff; text-decoration: none;
  padding: 14px 30px; border-radius: 100px;
  font-weight: 700; font-size: .92rem;
  box-shadow: 0 6px 24px rgba(37,99,235,.3);
  transition: background .2s, transform .15s;
}
.btn-blue-pill:hover { background: #1d4ed8; transform: translateY(-1px); }

/* ── CHRO Hero image placeholder ── */
.chro-hero-img { aspect-ratio: 16 / 11; }

/* ── The Reality section (dark) ── */
.chro-reality {
  background: var(--navy); padding: 72px 64px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.reality-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.chro-reality-h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800;
  color: #fff; margin-bottom: 20px; letter-spacing: -.02em;
}
.chro-reality-lead {
  font-size: .97rem; color: rgba(255,255,255,.78);
  line-height: 1.8; max-width: 480px;
}
.chro-reality-lead strong { color: #fff; }
.chro-reality-img { width: 100%; aspect-ratio: 16 / 9; border-radius: 16px; }

/* ── Reality Check section (white) ── */
.reality-check-wrap { background: #fff; padding: 100px 64px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.chro-rc-header { text-align: center; max-width: 860px; margin: 0 auto 72px; }
.chro-rc-h2 {
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700;
  color: var(--navy); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 16px;
}
.chro-rc-subtitle {
  font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 20px;
}
.chro-rc-body { font-size: .95rem; color: var(--text-body); line-height: 1.8; }
.reality-check-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.chro-rc-img {
  width: 100%; min-height: 320px; align-self: stretch;
  border-radius: 20px;
  filter: drop-shadow(0 12px 40px rgba(13,27,62,.1));
}
.chro-rc-sfh {
  font-size: 1.7rem; font-weight: 800; color: var(--navy);
  margin-bottom: 28px; letter-spacing: -.02em;
}
.familiar-list { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.familiar-item { display: flex; gap: 14px; align-items: flex-start; }
.familiar-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: #eff6ff; border: 1.5px solid #bfdbfe;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 4px;
  font-size: 1rem; font-weight: 700; color: var(--blue);
}
.familiar-text { font-size: .92rem; color: var(--text-body); line-height: 1.7; }
.familiar-text strong { color: var(--navy); }

/* ── Pillars accordion section ── */
.pillars-wrap { background: var(--navy); padding: 100px 64px; }
.pillars-inner { max-width: 900px; margin: 0 auto; }
.pillars-h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 700;
  color: #fff; letter-spacing: -.03em; line-height: 1.12;
  margin-bottom: 64px;
}
.pillar-top-divider { height: 1px; background: rgba(255,255,255,.08); margin: 8px 0 40px; }
.pillar-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; margin-bottom: 16px;
  overflow: hidden; transition: background .2s;
}
.pillar-item[open] { background: rgba(255,255,255,.07); }
.pillar-item[open] .pillar-icon { transform: rotate(180deg); }
.pillar-summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 28px 32px; cursor: pointer; list-style: none;
  font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.5;
}
.pillar-summary::-webkit-details-marker { display: none; }
.pillar-summary::marker { content: none; }
.pillar-summary:hover { background: rgba(255,255,255,.04); }
.pillar-summary > span:first-child { flex: 1; }
.pillar-icon {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0; align-self: center; transition: transform .25s;
}
.pillar-body { padding: 0 32px 28px; }
.pillar-subsection {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center; margin-bottom: 8px;
}
.pillar-sub-left { display: flex; flex-direction: column; justify-content: center; }
.pillar-sub-title {
  font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 800; color: #fff;
  letter-spacing: -.02em; line-height: 1.2; margin-bottom: 16px;
}
.pillar-sub-body { font-size: .9rem; color: rgba(255,255,255,.72); line-height: 1.75; }
.pillar-sub-body strong { color: #fff; }
.pillar-sub-body--mt { margin-top: 12px; }
.pillar-sub-header { text-align: center; margin-bottom: 32px; }
.pillar-sub-h {
  font-size: clamp(1.4rem, 2.2vw, 2rem); font-weight: 700; color: #fff;
  letter-spacing: -.02em; margin-bottom: 10px;
}
.pillar-sub-lead { font-size: .92rem; color: rgba(255,255,255,.55); line-height: 1.6; }
.pillar-sub-img { display: flex; align-items: stretch; }
.pillar-sub-divider { height: 1px; background: rgba(255,255,255,.08); margin: 40px 0; }
.pillar-img { width: 100%; min-height: 260px; align-self: stretch; border-radius: 14px; }
.pillar-img--tall { min-height: 280px; }
.pillar-bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 20px;
}
.pillar-bullets li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: .9rem; color: rgba(255,255,255,.78); line-height: 1.7;
}
.pillar-bullets li p { margin: 0; }
.pillar-bullets strong { color: #fff; }
.pb-arrow {
  min-width: 28px; width: 28px; height: 28px; border-radius: 50%;
  background: rgba(37,99,235,.35); border: 1.5px solid rgba(99,147,255,.4);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700; color: #93c5fd;
  flex-shrink: 0; margin-top: 2px;
}

/* ── CHRO Section images ── */
.chro-section-img {
  width: 100%; display: block; border-radius: 16px;
}
.chro-reality-img {
  width: 100%; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 40px rgba(13,27,62,.2));
}
.chro-rc-img {
  min-height: 320px; align-self: stretch;
  object-fit: cover; border-radius: 20px;
  filter: drop-shadow(0 12px 40px rgba(13,27,62,.1));
}
.pillar-section-img {
  width: 100%; display: block;
  border-radius: 14px; object-fit: cover;
  min-height: 260px; align-self: stretch;
}
.case-logo-img {
  width: 160px; height: 72px; object-fit: contain;
  display: block; border-radius: 6px;
}

/* ── Case studies section ── */
.case-studies-section {
  background: #fff; border-top: 1px solid var(--border); padding: 80px 64px;
}
.case-cards-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.case-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .25s, box-shadow .25s;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(13,27,62,.1);
}
.case-card-logo { margin-bottom: 4px; }
.case-logo-placeholder { width: 160px; height: 72px; border-radius: 10px; }
.case-logo-text { font-size: .72rem; }
.case-card-industry { font-size: .85rem; color: var(--text-body); }
.case-card-industry span { color: var(--blue); font-weight: 600; }
.case-card-title {
  font-size: 1.25rem; font-weight: 800; color: var(--navy);
  line-height: 1.3; letter-spacing: -.02em;
}
.case-card-body { font-size: .9rem; color: var(--text-muted); line-height: 1.75; flex: 1; }
.case-card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff; text-decoration: none;
  padding: 12px 22px; border-radius: 100px;
  font-size: .88rem; font-weight: 700; width: fit-content; margin-top: 8px;
  transition: background .2s, transform .15s;
}
.case-card-cta:hover { background: #1d4ed8; transform: translateY(-1px); }

/* ── CTA Banner ── */
.cta-banner-section {
  background: var(--bg-light); border-top: 1px solid var(--border); padding: 72px 64px;
}
.cta-final-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
}
.cta-final-copy { max-width: 560px; }
.cta-final-h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700;
  color: var(--navy); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 16px;
}
.cta-final-lead { font-size: .97rem; color: var(--text-muted); line-height: 1.75; }
.cta-final-btn { flex-shrink: 0; }

/* ── CHRO Responsive ── */
@media (max-width: 1024px) {
  .chro-reality { padding: 56px 28px; }
  .reality-inner { grid-template-columns: 1fr; gap: 36px; }
  .reality-check-wrap { padding: 72px 28px; }
  .reality-check-grid { grid-template-columns: 1fr; gap: 40px; }
  .pillars-wrap { padding: 72px 28px; }
  .pillar-subsection { grid-template-columns: 1fr; gap: 28px; }
  .case-studies-section { padding: 56px 28px; }
  .cta-banner-section { padding: 56px 28px; }
}
@media (max-width: 768px) {
  .chro-reality { padding: 48px 20px; }
  .reality-check-wrap { padding: 56px 20px; }
  .chro-rc-header { margin-bottom: 40px; }
  .reality-check-grid { grid-template-columns: 1fr; gap: 32px; }
  .pillars-wrap { padding: 56px 20px; }
  .pillar-summary { padding: 22px 20px; font-size: .92rem; }
  .pillar-body { padding: 0 20px 24px; }
  .pillar-sub-h { font-size: 1.3rem; }
  .case-studies-section { padding: 48px 20px; }
  .case-cards-grid { grid-template-columns: 1fr; }
  .cta-banner-section { padding: 48px 20px; }
  .cta-final-inner { flex-direction: column; text-align: center; align-items: center; }
}

/* END CHRO PAGE */
/* ════════════════════════════════════════════════
   CIO PAGE ADDITIONS
   ════════════════════════════════════════════════ */

/* ─── HERO HELPERS ─── */
.hero-sub--tight          { margin-top: -12px; }
.img-placeholder--ar-16-11{ aspect-ratio: 16 / 11; }
.img-placeholder--ar-4-3  { aspect-ratio: 4 / 3; }
.img-placeholder--ar-16-10{ aspect-ratio: 16 / 10; }
.img-placeholder--shadow-lg{ filter: drop-shadow(0 20px 60px rgba(13,27,62,.14)); }
.img-placeholder--shadow-sm{ filter: drop-shadow(0 12px 40px rgba(13,27,62,.08)); }

/* ─── UTILITIES ─── */
.text-navy { color: var(--navy); }

/* ─── INTEGRATION PROBLEM SECTION ─── */
.integration-section { background: var(--bg-light); padding: 88px 64px; border-bottom: 1px solid var(--border); }
.integration-inner   { max-width: 1280px; margin: 0 auto; }

/* Centred header */
.integration-header  { text-align: center; margin-bottom: 60px; }
.integration-header h2 {
  font-size: clamp(2rem,3.5vw,3rem); font-weight: 700;
  color: var(--navy); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 10px;
}
.integration-subtitle { font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: 16px; }
.integration-header > p {
  font-size: .95rem; color: var(--text-body); line-height: 1.75;
  max-width: 640px; margin: 0 auto 10px;
}
.integration-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue);
  background: #eff6ff; border: 1px solid #bfdbfe;
  border-radius: 100px; padding: 5px 14px; margin-top: 20px;
}

/* Interactive card grid */
.integration-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.integration-card {
  display: flex; align-items: flex-start; gap: 20px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.integration-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--blue), #22c55e);
  opacity: 0; transition: opacity .25s;
}
.integration-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13,27,62,.1);
  border-color: #bfdbfe;
}
.integration-card:hover::before { opacity: 1; }
.integration-icon {
  width: 56px; height: 56px; min-width: 56px;
  border-radius: 14px; background: #f0f6ff; border: 1px solid #bfdbfe;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  transition: background .25s;
}
.integration-card:hover .integration-icon { background: #dbeafe; }
.integration-card-body h3 {
  font-size: 1rem; font-weight: 800; color: var(--navy);
  margin-bottom: 8px; letter-spacing: -.01em;
}
.integration-card-body p { font-size: .9rem; color: var(--text-body); line-height: 1.75; }

/* ─── INTEGRATION ADVANTAGE (navy) ─── */
.int-advantage        { background: var(--navy); padding: 88px 64px; }
.int-advantage-inner  { max-width: 1280px; margin: 0 auto; }
.int-advantage-header { text-align: center; margin-bottom: 64px; }
.int-advantage-header h2 { font-size: clamp(2rem,3.5vw,3rem); font-weight: 700; color: #fff; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 12px; }
.int-sub              { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,.7); margin-bottom: 14px; }
.int-advantage-header > p { font-size: .95rem; color: rgba(255,255,255,.5); line-height: 1.75; max-width: 680px; margin: 0 auto; }
.int-advantage-body   { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.int-connect-list     { display: flex; flex-direction: column; gap: 28px; }
.int-connect-list h3  { font-size: 1.5rem; font-weight: 700; color: #fff; letter-spacing: -.02em; }
.int-connect-item     { display: flex; gap: 16px; align-items: flex-start; }
.int-connect-icon     { width: 36px; height: 36px; border-radius: 50%; background: rgba(99,102,241,.25); border: 1.5px solid rgba(129,140,248,.35); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.int-connect-icon svg { width: 16px; height: 16px; }
.int-connect-item p      { font-size: .9rem; color: rgba(255,255,255,.72); line-height: 1.75; }
.int-connect-item strong { color: #fff; }
.img-placeholder--navy span  { color: rgba(255,255,255,.5); }
.img-placeholder--navy small { color: rgba(255,255,255,.35); }

/* ─── PILLARS LAYOUT ─── */
.pillars-max   { max-width: 1280px; margin: 0 auto; }
.pillars-inner { max-width: 900px;  margin: 0 auto; }
.pillars-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; margin-bottom: 72px;
}
.cio-eyebrow   { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #60a5fa; margin-bottom: 16px; }
.pillars-h2    { font-size: clamp(1.9rem,3vw,2.8rem); font-weight: 700; color: #fff; letter-spacing: -.03em; line-height: 1.12; margin-bottom: 16px; text-align: left; }
.pillars-intro-img { width: 100%; max-width: 100%; border-radius: 16px; display: block; object-fit: cover; aspect-ratio: 16/10; }
.pillars-subtitle { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,.85); line-height: 1.5; margin-bottom: 12px; }
.pillars-lead  { font-size: .97rem; color: rgba(255,255,255,.6); line-height: 1.75; max-width: 480px; }
.pillar-divider{ height: 1px; background: rgba(255,255,255,.08); margin: 8px 0 28px; }
.pillar-intro  { font-size: .93rem; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 32px; }

/* ─── CERT BADGES ─── */
.cert-badges { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); }
.cert-badge  { width: 80px; height: 80px; border-radius: 10px; background: rgba(255,255,255,.07); border: 1.5px dashed rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 4px; }
.cert-badge span { font-size: .6rem; color: rgba(255,255,255,.3); font-weight: 600; }

/* ─── CIO SECTION WRAPPER ─── */
.cio-section        { padding: 88px 64px; border-top: 1px solid var(--border); }
.cio-section--white { background: #fff; }
.cio-section--light { background: var(--bg-light); }
.cio-section-inner  { max-width: 1280px; margin: 0 auto; }
.cio-section-header { text-align: center; margin-bottom: 64px; }
.cio-section-h2     { font-size: clamp(2rem,3.5vw,3rem); font-weight: 700; color: var(--navy); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 12px; }
.cio-section-sub    { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.cio-section-lead   { font-size: .95rem; color: var(--text-muted); line-height: 1.75; max-width: 680px; margin: 0 auto; }
.cio-two-col        { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* ─── CONNECT LIST (white sections) ─── */
.cio-connect-list     { display: flex; flex-direction: column; gap: 28px; }
.cio-connect-list h3  { font-size: 1.5rem; font-weight: 700; color: var(--navy); letter-spacing: -.02em; }
.cio-connect-item     { display: flex; gap: 16px; align-items: flex-start; }
.cio-connect-icon     { width: 36px; height: 36px; border-radius: 50%; background: #eff6ff; border: 1.5px solid #bfdbfe; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.cio-connect-icon svg { width: 16px; height: 16px; }
.cio-connect-item p      { font-size: .9rem; color: var(--text-body); line-height: 1.75; }
.cio-connect-item strong { color: var(--navy); }

/* ─── IT STRATEGY SECTION ─── */
.cio-strategy-h2      { font-size: clamp(2rem,3.5vw,3rem); font-weight: 700; color: var(--navy); letter-spacing: -.03em; line-height: 1.1; text-align: center; margin-bottom: 56px; }
.cio-strategy-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.cio-strategy-list    { display: flex; flex-direction: column; }
.cio-strategy-item    { display: flex; gap: 20px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid var(--border); }
.cio-strategy-item:last-child { border-bottom: none; }
.cio-strategy-icon    { width: 40px; height: 40px; border-radius: 50%; background: #eff6ff; border: 1.5px solid #bfdbfe; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.cio-strategy-icon svg{ width: 16px; height: 16px; }
.cio-strategy-item p      { font-size: .92rem; color: var(--text-body); line-height: 1.75; }
.cio-strategy-item strong { color: var(--navy); }

/* ─── IT TEAM SECTION ─── */
.cio-team-h2   { font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 700; color: var(--navy); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 20px; }
.cio-body-text { font-size: .95rem; color: var(--text-body); line-height: 1.8; margin-bottom: 16px; }
.cio-body-bold { font-size: .95rem; font-weight: 700; color: var(--navy); line-height: 1.75; }

/* ─── RESPONSIVE: CIO ─── */
@media(max-width:1024px){
  .integration-section   { padding: 72px 28px; }
  .integration-grid      { grid-template-columns: 1fr; gap: 32px; }
  .int-advantage         { padding: 72px 28px; }
  .int-advantage-body    { grid-template-columns: 1fr; gap: 40px; }
  .pillars-intro-grid    { grid-template-columns: 1fr; gap: 36px; margin-bottom: 48px; }
  .cio-section           { padding: 72px 28px; }
  .cio-two-col           { grid-template-columns: 1fr; gap: 40px; }
  .cio-strategy-two-col  { grid-template-columns: 1fr; gap: 40px; }
}
@media(max-width:768px){
  .integration-section  { padding: 60px 20px; }
  .int-advantage        { padding: 60px 20px; }
  .cio-section          { padding: 60px 20px; }
  .cio-connect-list h3  { font-size: 1.2rem; }
  .cio-strategy-h2      { font-size: 1.6rem; }
  .cio-team-h2          { font-size: 1.4rem; }
}
/* ════════════════════════════════════════════════
   CFO PAGE — CLASS-BASED STYLES
   ════════════════════════════════════════════════ */

/* ─── Layout helpers ─── */
.section-inner { max-width: 1280px; margin: 0 auto; }
.pillars-accordion-wrap { max-width: 900px; margin: 0 auto; }
.pillars-wrap--navy { background: #0d1b3e; }

/* ─── Hero ─── */
.hero-img-box { aspect-ratio: 16/11; filter: drop-shadow(0 20px 60px rgba(13,27,62,.14)); }
.hero-sub--overlap { margin-top: -12px; }

/* ─── Text utilities ─── */
.text-navy { color: var(--navy); }
.text-white { color: #fff; }

/* ─── Pillars intro header ─── */
.pillars-eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #60a5fa; margin-bottom: 16px; }
.pillars-heading { font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 700; color: #fff; letter-spacing: -.03em; line-height: 1.12; margin-bottom: 16px; }
.pillars-lead { font-size: .97rem; color: rgba(255,255,255,.6); line-height: 1.75; max-width: 480px; }
.pillar-intro-img { width: 100%; border-radius: 16px; display: block; object-fit: cover; }

/* ─── Pillar body helpers ─── */
.pillar-body-divider     { height: 1px; background: rgba(255,255,255,.08); margin: 8px 0 40px; }
.pillar-body-divider--sm { height: 1px; background: rgba(255,255,255,.08); margin: 8px 0 28px; }
.pillar-body-divider--md { height: 1px; background: rgba(255,255,255,.08); margin: 8px 0 36px; }
.pillar-intro-text { font-size: .97rem; color: rgba(255,255,255,.78); line-height: 1.75; margin-bottom: 36px; }
.pillar-sub-text { font-size: .93rem; color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 36px; }
.pillar-bullets--mb    { margin-bottom: 40px; }
.pillar-bullets--mb-sm { margin-bottom: 32px; }
.pillar-callout { font-size: .92rem; color: rgba(255,255,255,.85); line-height: 1.75; background: rgba(37,99,235,.2); border: 1px solid rgba(99,147,255,.25); border-radius: 12px; padding: 18px 22px; }
.pillar-callout strong, .pillar-callout .text-white { color: #fff; }

/* ─── Pillar pill label ─── */
.pillar-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 100px; padding: 6px 16px; font-size: .82rem; font-weight: 700; color: #fff; margin-bottom: 24px; }

/* ─── Pillars intro grid ─── */
.pillars-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 72px; }

/* ─── CTA row ─── */
.pillars-cta { text-align: center; margin-top: 48px; }
.btn-blue-pill--lg { font-size: 1rem !important; padding: 16px 40px !important; }

/* ─── Finance leaders section ─── */
.cfo-finance-section { background: #fff; padding: 80px 64px; border-top: 1px solid var(--border); }
.cfo-finance-section .reality-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cfo-finance-title { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700; color: var(--navy); letter-spacing: -.03em; line-height: 1.08; margin-bottom: 24px; }
.cfo-finance-body { font-size: 1rem; color: var(--text-body); line-height: 1.8; margin-bottom: 28px; }
.cfo-finance-bold { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.75; margin-bottom: 40px; }
.cfo-finance-img { width: 100%; aspect-ratio: 4/3; border-radius: 20px; filter: drop-shadow(0 12px 40px rgba(13,27,62,.08)); }

/* ─── Responsive: CFO additions ─── */
@media (max-width: 1024px) {
  .pillars-intro-grid { grid-template-columns: 1fr; gap: 36px; margin-bottom: 48px; }
  .cfo-finance-section { padding: 64px 28px; }
  .cfo-finance-section .reality-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .cfo-finance-section { padding: 56px 20px; }
  .pillars-wrap--navy { padding: 56px 20px; }
}

/* ── Logo band: image-based logo sizing (T&L page) ── */
.logo-img {
  height: 36px;
  width: auto;
  display: block;
  max-width: 140px;
  object-fit: contain;
}

/* ── Logo slider: remove grayscale filter ── */
.logo-item {
  filter: none;
  opacity: 1;
}
.logo-item:hover {
  filter: none;
  opacity: 0.8;
}

/* ─── Remove click outline on links ─── */
a:focus:not(:focus-visible){
  outline:none;
}

/* ── Proven metrics table rows (missing classes — added April 2026) ── */
.metrics-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid #f1f5f9;
  background: #fff;
  transition: background .15s;
}
.metrics-row:hover { background: #fafbff; }
.metrics-row:last-of-type { border-bottom: none; }

.metric-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .9rem;
  color: #374151;
  font-weight: 500;
}

.metric-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid #bfdbfe;
  background: #eff6ff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.metric-value {
  display: flex;
  align-items: center;
  gap: 10px;
}

.metric-badge {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid #ede9fe;
  background: #f5f3ff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.metric-num {
  font-size: 1.05rem;
  font-weight: 900;
  color: #0d1b3e;
}

@media (max-width: 768px) {
  .metrics-row { padding: 16px 20px; }
  .metric-num  { font-size: .92rem; }
  .proven-table-header { padding: 14px 20px; }
  .proven-footer { padding: 24px 20px; }
}