/* ═══════════════════════════════════════════
   VECTOR ENERGY AFRICA — SHARED STYLESHEET
   ═══════════════════════════════════════════ */

:root {
  --navy:   #06172D;
  --navy2:  #0F2444;
  --navy3:  #1C3D5A;
  --gold:   #D4A437;
  --gold2:  #E3B54A;
  --white:  #ffffff;
  --light:  #F5F7FA;
  --line:   #DDE4ED;
  --ink:    #0B1730;
  --muted:  #667085;
  --max:    1500px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', Arial, sans-serif; background: #fff; color: var(--ink); line-height: 1.5; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── LAYOUT ── */
.pw { width: min(var(--max), calc(100% - 56px)); margin: auto; }

/* ── NAV ── */
.topbar { background: #041326; position: fixed; top: 0; left: 0; right: 0; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,.07); box-shadow: 0 2px 24px rgba(0,0,0,.3); }
.nav { width: min(var(--max), calc(100% - 56px)); margin: auto; height: 108px; display: flex; align-items: center; }
.nav-logo img { height: 100px; width: auto; max-width: 300px; object-fit: contain; object-position: left center; display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; margin-left: 48px; flex: 1; }
.nav-links a { color: rgba(255,255,255,.82); font-size: 13.5px; font-weight: 600; letter-spacing: .02em; padding: 36px 0; position: relative; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: 10px; height: 2px; background: var(--gold); }
.nav-cta { background: var(--gold); color: var(--navy); padding: 13px 24px; font-size: 11.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; margin-left: auto; border: 1.5px solid var(--gold); transition: all .2s; white-space: nowrap; }
.nav-cta:hover { background: var(--gold2); border-color: var(--gold2); }

/* ── HERO ── */
.hero { position: relative; min-height: 620px; display: flex; align-items: center; overflow: hidden; padding-top: 108px; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 8s ease-out; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(4,19,38,.94) 0%, rgba(4,19,38,.75) 45%, rgba(4,19,38,.22) 100%); }
.hero-inner { position: relative; z-index: 2; width: min(var(--max), calc(100% - 56px)); margin: auto; padding: 80px 0; }
.hero-eyebrow { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); }
.hero h1 { font-size: clamp(44px, 5.5vw, 82px); font-weight: 900; line-height: 1.01; color: #fff; letter-spacing: -2px; margin-bottom: 22px; }
.hero h1 .gold { color: var(--gold); display: block; }
.hero-sub { font-size: 18.5px; color: rgba(255,255,255,.78); max-width: 500px; line-height: 1.7; margin-bottom: 36px; font-weight: 400; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-primary { background: var(--gold); color: var(--navy); padding: 15px 28px; font-size: 11.5px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; border: 1.5px solid var(--gold); display: inline-block; transition: all .2s; cursor: pointer; font-family: inherit; }
.btn-primary:hover { background: var(--gold2); border-color: var(--gold2); transform: translateY(-1px); }
.btn-outline { border: 1.5px solid rgba(255,255,255,.5); color: #fff; padding: 15px 28px; font-size: 11.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; transition: all .2s; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-gold-outline { border: 1.5px solid var(--gold); color: var(--gold); padding: 13px 24px; font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; display: inline-block; transition: all .2s; }
.btn-gold-outline:hover { background: var(--gold); color: var(--navy); }

/* ── EYEBROW ── */
.eyebrow { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 14px; }

/* ── SECTION BASE ── */
.section { padding: 80px 0; }
.section.white { background: #fff; border-bottom: 1px solid var(--line); }
.section.light { background: var(--light); border-bottom: 1px solid var(--line); }
.section.dark { background: var(--navy2); border-top: 2px solid var(--gold); }
.section.dark .section-h2 { color: #fff; }
.section.dark p { color: rgba(255,255,255,.72); }
.section-h2 { font-size: clamp(28px, 3.5vw, 46px); font-weight: 900; color: var(--navy2); letter-spacing: -1.2px; line-height: 1.07; margin-bottom: 16px; }
.section-lead { font-size: 15.5px; color: var(--muted); line-height: 1.78; max-width: 680px; }

/* ── ICON CARD (shared across all pages) ── */
.icon-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--line); }
.icon-card { background: var(--navy2); padding: 36px 28px; text-align: center; transition: background .2s; }
.icon-card:hover { background: #162d50; }
.ic-icon { width: 52px; height: 52px; border: 1.5px solid var(--gold); border-radius: 50%; display: grid; place-items: center; color: var(--gold); margin: 0 auto 18px; }
.ic-icon svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.ic-title { color: #fff; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.ic-desc { color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.65; }

/* ── STAT CARDS (consistent across all bars) ── */
.stat-cards { display: grid; gap: 2px; background: var(--line); }
.stat-cards-4 { grid-template-columns: repeat(4, 1fr); }
.stat-cards-5 { grid-template-columns: repeat(5, 1fr); }
.stat-card { background: var(--navy2); padding: 28px 20px; text-align: center; }
.sc-icon { width: 44px; height: 44px; border: 1.5px solid var(--gold); border-radius: 50%; display: grid; place-items: center; color: var(--gold); margin: 0 auto 14px; }
.sc-icon svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.sc-label { color: rgba(255,255,255,.5); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 6px; }
.sc-val { color: #fff; font-size: 15px; font-weight: 800; }
.sc-val.gold { color: var(--gold); font-size: 22px; }

/* ── VALUE STRIP ── */
.value-strip { background: linear-gradient(90deg, #06172D, #0C2443); border-bottom: 1px solid rgba(255,255,255,.06); }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.value-item { padding: 26px 28px; border-right: 1px solid rgba(255,255,255,.07); display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: start; }
.value-item:last-child { border-right: 0; }
.vi-icon { width: 48px; height: 48px; border: 1.5px solid var(--gold); border-radius: 50%; display: grid; place-items: center; color: var(--gold); }
.vi-icon svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.value-item b { display: block; color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 5px; }
.value-item span { color: rgba(255,255,255,.65); font-size: 12.5px; line-height: 1.5; }

/* ── TWO COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }

/* ── CHECKLIST ── */
.checklist { display: flex; flex-direction: column; gap: 11px; }
.check-item { display: flex; align-items: flex-start; gap: 11px; font-size: 14px; color: var(--ink); line-height: 1.55; }
.check-item.light-text { color: rgba(255,255,255,.82); }
.check-dot { width: 20px; height: 20px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%2306172D' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='2 6 5 9 10 3'/%3E%3C/svg%3E");
  background-size: 11px; background-position: center; background-repeat: no-repeat; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { position: relative; min-height: 440px; display: flex; align-items: flex-end; padding-bottom: 64px; overflow: hidden; padding-top: 108px; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(4,19,38,.95) 0%, rgba(4,19,38,.78) 50%, rgba(4,19,38,.28) 100%); }
.page-hero-inner { position: relative; z-index: 2; width: min(var(--max), calc(100% - 56px)); margin: auto; }
.crumbs { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 20px; }
.crumbs span { color: rgba(255,255,255,.45); margin: 0 8px; }
.page-hero h1 { font-size: clamp(36px, 5vw, 68px); font-weight: 900; color: #fff; line-height: 1.02; letter-spacing: -1.5px; margin-bottom: 16px; }
.page-hero h1 .gold { color: var(--gold); }
.page-hero p { font-size: 17.5px; color: rgba(255,255,255,.78); max-width: 620px; line-height: 1.7; margin-bottom: 28px; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── FOOTER ── */
.footer { background: #020d1a; padding: 26px 0; border-top: 2px solid var(--gold); }
.footer-inner { width: min(var(--max), calc(100% - 56px)); margin: auto; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 48px; }
.footer-logo img { height: 90px; width: auto; max-width: 260px; object-fit: contain; object-position: left; }
.footer-nav { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,.5); font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; transition: color .2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-contact { text-align: right; }
.footer-contact a, .footer-contact div { color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.8; font-weight: 500; display: block; transition: color .2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-tagline { grid-column: 1/-1; text-align: center; border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px; margin-top: 8px; color: rgba(255,255,255,.25); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

/* ── PAGE CTA ── */
.page-cta { background: var(--navy); padding: 72px 0; text-align: center; border-top: 2px solid var(--gold); }
.page-cta h2 { color: #fff; font-size: clamp(26px, 3vw, 40px); font-weight: 900; letter-spacing: -1px; margin-bottom: 12px; }
.page-cta p { color: rgba(255,255,255,.62); font-size: 15px; max-width: 500px; margin: 0 auto 28px; line-height: 1.7; }

/* ── MOBILE ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; margin-left: auto; z-index: 1001; }
.hamburger span { width: 24px; height: 2px; background: #fff; transition: all .3s; display: block; }
.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); }
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 108px; left: 0; right: 0; background: #041326; padding: 24px 32px; gap: 0; border-bottom: 2px solid var(--gold); z-index: 999; }
  .nav-links.open a { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 15px; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .two-col, .two-col.flip { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .icon-cards { grid-template-columns: 1fr 1fr; }
  .stat-cards-4, .stat-cards-5 { grid-template-columns: 1fr 1fr; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-contact { text-align: left; }
  .footer-nav { justify-content: flex-start; }
  .hero h1 { letter-spacing: -1px; }
}
@media (max-width: 640px) {
  .pw { width: calc(100% - 32px); }
  .icon-cards, .stat-cards-4, .stat-cards-5, .value-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .hero { min-height: 560px; }
}

.page-hero-bg{background-image:url('../images/solutions-image-01-b736558921.png');background-position:center 35%;}

.sol-section{padding:72px 0;border-bottom:1px solid var(--line);}
.sol-section:nth-child(odd){background:#fff;}
.sol-section:nth-child(even){background:var(--light);}
.impact-row{display:grid;grid-template-columns:1fr 1fr;gap:2px;background:var(--line);margin-top:32px;}
.impact-card{background:#fff;padding:22px 26px;}
.sol-section:nth-child(even) .impact-card{background:var(--light);}
.impact-card h5{font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.12em;color:var(--gold);margin-bottom:8px;}
.impact-card p{font-size:13px;color:var(--muted);line-height:1.65;}
.proof-strip{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:16px;margin-top:40px;padding:28px 32px;background:var(--navy2);border-radius:0;}
.proof-strip-text .label{font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.1em;color:var(--gold);margin-bottom:4px;}
.proof-strip-text .val{font-size:14px;font-weight:700;color:#fff;}
@media(max-width:1100px){.impact-row{grid-template-columns:1fr;}}
.single-col{max-width:900px;margin:0 auto;}
@media(max-width:1100px){.single-col{max-width:100%;}}


/* ─────────────────────────────────────────────
   APPROVAL PACK REFINEMENTS — MAY 2026
   Keeps look and layout intact while tightening spacing, logo size,
   responsive behaviour and heading hierarchy.
   ───────────────────────────────────────────── */
.nav { height: 96px !important; }
.nav-logo img { height: 82px !important; max-width: 250px !important; }
.nav-links { gap: 24px !important; margin-left: 34px !important; }
.nav-links a { padding: 31px 0 !important; font-size: 13px !important; }
.hero { min-height: 590px !important; padding-top: 96px !important; }
.hero-inner { padding: 66px 0 !important; }
.hero h1 { font-size: clamp(46px, 5.3vw, 82px) !important; line-height: .98 !important; letter-spacing: -2px !important; }
.hero h1 .gold { font-size: .88em !important; line-height: .94 !important; }
.page-hero { min-height: 455px !important; padding-top: 118px !important; padding-bottom: 58px !important; }
.page-hero-inner { width: min(var(--max), calc(100% - 64px)) !important; }
.page-hero h1 { font-size: clamp(36px, 4.8vw, 64px) !important; line-height: .98 !important; letter-spacing: -1.5px !important; }
.page-hero h1 .gold, .page-hero h1 span.gold { font-size: .9em !important; line-height: .95 !important; display:block; }
.eyebrow, .crumbs { font-size: 12.5px !important; letter-spacing: .18em !important; margin-bottom: 24px !important; }
.section { padding: 64px 0 !important; }
.section-h2 { font-size: clamp(30px, 3.35vw, 48px) !important; }
.page-cta { padding: 54px 0 !important; }
.footer { padding: 20px 0 !important; }
.footer-inner { gap: 24px !important; }
.footer-logo img { height: 58px !important; max-width: 190px !important; }
.footer-tagline { padding-top: 8px !important; margin-top: 0 !important; line-height: 1.45 !important; }
@media (max-width: 1200px) {
  .nav-links { display:none !important; }
  .nav-links.open { display:flex !important; flex-direction:column; position:fixed; top:96px; left:0; right:0; background:#041326; padding:22px 32px; gap:0 !important; border-bottom:2px solid var(--gold); z-index:999; }
  .nav-links.open a { padding:15px 0 !important; border-bottom:1px solid rgba(255,255,255,.07); font-size:15px; }
  .hamburger { display:flex !important; }
  .nav-cta { display:none !important; }
}
@media (max-width: 640px) {
  .nav { height: 84px !important; }
  .nav-logo img { height: 70px !important; max-width: 210px !important; }
  .nav-links.open { top:84px; }
  .hero { padding-top:84px !important; min-height: 540px !important; }
  .page-hero { padding-top:84px !important; min-height: 360px !important; }
  .hero h1 { font-size: clamp(38px, 11vw, 56px) !important; }
  .page-hero h1 { font-size: clamp(32px, 10vw, 48px) !important; }
  .section { padding: 48px 0 !important; }
  .footer { padding: 22px 0 !important; }
  .footer-logo img { height: 60px !important; }
}

.legal-entity-line{display:block;margin-top:5px;line-height:1.45;color:rgba(255,255,255,.38);}


/* Final controlled repair — May 2026 */
.page-hero h1 .gold, .page-hero h1 span.gold { display:block !important; margin-top:4px !important; }
.footer-tagline a, .legal-entity-line a { color: rgba(255,255,255,.46); }
.footer-tagline a:hover, .legal-entity-line a:hover { color: var(--gold); }
.leader-photo-panel img { object-fit: cover !important; object-position: center top !important; }
.secondary-form-link { display:block; text-align:center; text-decoration:none; background:transparent !important; border:1.5px solid var(--gold) !important; color:var(--navy2) !important; margin-top:12px !important; }
.assessment-wrap { grid-template-columns:.9fr 1.25fr; }
.fg input[type="file"] { padding: 11px 12px; border-bottom:2px solid #c0c8d4; }
@media(max-width:1100px){.assessment-wrap{grid-template-columns:1fr;}}
/* Final controlled repair: keep split hero headline gold text on its own aligned line. */
.hero h1 .gold,
.hero h1 span.gold,
.page-hero h1 .gold,
.page-hero h1 span.gold {
  display: block !important;
  margin-left: 0 !important;
}

/* Final controlled repair: leadership portraits must not crop heads. */
.leader-photo-panel img {
  object-fit: cover !important;
  object-position: center top !important;
}


/* FINAL FOOTER CLEANUP — MAY 2026 */
.footer-clean {
  padding: 20px 0 18px;
}
.footer-clean .footer-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.footer-nav-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 26px;
  width: 100%;
}
.footer-clean .footer-nav a {
  font-size: 11px;
  letter-spacing: .08em;
}
.footer-clean .footer-contact {
  display: none;
}
.footer-tagline-clean {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 11px;
  line-height: 1.65;
  color: rgba(255,255,255,.58);
}
.footer-tagline-clean .legal-entity-line {
  font-size: 10.5px;
  color: rgba(255,255,255,.46);
}
@media(max-width:760px){
  .footer-nav-centered { gap: 12px 16px; }
  .footer-tagline-clean { font-size: 10px; }
}


/* FINAL FOOTER ALIGNMENT PATCH — MAY 2026 */
.footer.footer-clean .footer-inner {
  width: min(var(--max), calc(100% - 56px));
  margin-left: auto;
  margin-right: auto;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 12px !important;
  text-align: center !important;
  grid-template-columns: none !important;
}
.footer.footer-clean .footer-nav.footer-nav-centered {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 18px 26px !important;
  width: 100% !important;
  margin: 0 auto !important;
}
.footer.footer-clean .footer-tagline-clean {
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  text-align: center !important;
}
