/* =========================================================
   Xvolte Energy — Shared Stylesheet
   Design tokens lifted from the Claude Design handoff bundle
   ========================================================= */

:root{
  /* Brand colors */
  --navy-1: #0C337F;
  --navy-2: #0A2456;
  --navy-deep: #0C2E6E;
  --blue: #0E3F9C;
  --blue-light: #EEF3FC;
  --blue-border: #D9E6FB;
  --green: #34C13B;
  --green-bright: #9EF0A4;
  --green-dark: #1F8F2A;
  --green-light: #EAF7EB;

  /* Text */
  --text-heading: #152544;
  --text-heading-2: #0C2E6E;
  --text-body: #64708A;
  --text-body-soft: #5A6680;
  --text-on-navy: #C6D3EC;
  --text-on-navy-soft: #9DB4E4;

  /* Surfaces */
  --bg-page: #ffffff;
  --bg-soft: #F5F8FC;
  --border-soft: #EAEEF6;

  /* Fonts */
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Shape */
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --max-width: 1240px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--bg-page);
  color: var(--text-heading);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; }
h1, h2, h3{ font-family: var(--font-heading); margin: 0; }
.section{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}
.eyebrow{
  color: var(--green-dark);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow--light{ color: var(--green-bright); }

/* ---------- Buttons ---------- */
.btn{
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 12px;
  transition: transform .15s, box-shadow .15s, background .15s, border-color .15s;
  cursor: pointer;
  border: none;
}
.btn-primary{
  background: var(--green);
  color: #fff;
  box-shadow: 0 16px 36px -12px rgba(52,193,59,0.7);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 20px 44px -12px rgba(52,193,59,0.85); }
.btn-ghost-light{
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover{ background: rgba(255,255,255,0.2); }
.btn-ghost{
  background: #fff;
  border: 1.5px solid #D5DEEE;
  color: var(--navy-deep);
}
.btn-ghost:hover{ border-color: var(--navy-deep); }
.btn-sm{ padding: 12px 22px; font-size: 15px; border-radius: 10px; }

/* ---------- Logo ---------- */
.site-logo{ height: 40px; width: auto; display: block; }
.footer-logo{ height: 48px; width: auto; display: block; }

/* ---------- Header / Nav ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-links{ display: flex; align-items: center; gap: 6px; }
.nav-links a{
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 9px 15px;
  border-radius: 9px;
  color: #46546E;
  white-space: nowrap;
  transition: color .15s, background .15s;
}
.nav-links a.active,
.nav-links a:hover{ color: var(--blue); background: var(--blue-light); }
.nav-actions{ display: flex; align-items: center; gap: 14px; }
.nav-burger{
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-burger span{ display:block; width:24px; height:2.5px; background:var(--blue); border-radius:2px; }
.nav-mobile{
  display: none;
  border-top: 1px solid var(--border-soft);
  background: #fff;
  padding: 10px 20px 18px;
}
.nav-mobile.open{ display: block; }
.nav-mobile a{
  display: block;
  padding: 13px 8px;
  font-size: 16px;
  font-weight: 600;
  color: #22304D;
  text-decoration: none;
  border-bottom: 1px solid #F1F4FA;
}
@media (max-width: 880px){
  .nav-links, .nav-actions [data-cta]{ display: none; }
  .nav-burger{ display: flex; }
}

/* ---------- Hero (page header banner) ---------- */
.page-hero{
  background: linear-gradient(160deg, var(--navy-1) 0%, var(--navy-2) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before{
  content: '';
  position: absolute;
  top: -90px; right: -50px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(52,193,59,0.2), transparent 70%);
}
.page-hero-inner{
  position: relative;
  padding: 78px 28px 90px;
}
.breadcrumb{
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--text-on-navy-soft);
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 18px;
}
.breadcrumb a{ color: var(--text-on-navy-soft); text-decoration: none; }
.breadcrumb span.sep{ opacity: .6; }
.breadcrumb span.current{ color: #fff; }
.page-hero h1{
  font-weight: 800;
  font-size: 54px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin-top: 14px;
}
.page-hero p{
  color: var(--text-on-navy);
  font-size: 18px;
  line-height: 1.6;
  margin-top: 18px;
  max-width: 620px;
}
@media (max-width: 640px){
  .page-hero h1{ font-size: 42px; }
  .section{ padding-left: 20px; padding-right: 20px; }
}

/* ---------- Big hero (Home) ---------- */
.home-hero{
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(105deg, #0a2a6b, #123a8a 60%, #1c4ba0);
}
.home-hero .hero-media{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.home-hero .hero-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(8,30,75,0.92) 0%, rgba(10,42,108,0.74) 42%, rgba(10,42,108,0.28) 100%);
}
.home-hero .hero-overlay-bottom{
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(8,24,60,0.55), transparent 45%);
}
.home-hero-inner{
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 28px;
  width: 100%;
}
.home-hero-content{ max-width: 680px; }
.hero-badge{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(52,193,59,0.16);
  border: 1px solid rgba(52,193,59,0.4);
  color: var(--green-bright);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-badge .dot{
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(52,193,59,0.25);
}
.home-hero h1{
  font-weight: 800;
  font-size: 72px;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 24px 0 0;
}
.home-hero h1 .accent{ color: var(--green); }
.home-hero p{
  color: #D4DEF4;
  font-size: 19px;
  line-height: 1.65;
  margin: 24px 0 0;
  max-width: 540px;
}
.hero-ctas{ display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
@media (max-width: 980px){ .home-hero h1{ font-size: 48px; } }
@media (max-width: 640px){ .home-hero h1{ font-size: 38px; } }


/* ---------- Stats bar ---------- */
.stats-bar {
  max-width: var(--max-width);
  margin: -50px auto 0;
  padding: 0 28px;
  position: relative;
  z-index: 5;
}
.stats-bar-inner {
  background: #ffffff;
  border: 1px solid rgba(12, 46, 110, 0.08);
  border-radius: 18px;
  box-shadow: 0 20px 48px -10px rgba(12, 46, 110, 0.08), 0 1px 3px rgba(12, 46, 110, 0.02);
  display: flex;
  padding: 38px 24px;
  justify-content: space-between;
  align-items: center;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 0 15px;
  position: relative;
}
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background-color: #EAEEF6;
}
.stat .stat-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 38px;
  color: var(--navy-deep);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.stat .stat-label {
  font-size: 14px;
  color: var(--text-body);
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

@media (max-width: 980px) {
  .stats-bar-inner {
    flex-wrap: wrap;
    padding: 24px;
  }
  .stat {
    flex: 1 1 50%;
    padding: 16px 10px;
  }
  .stat:not(:last-child)::after {
    display: none;
  }
  .stat:nth-child(odd) {
    border-right: 1px solid #EAEEF6;
  }
  .stat:nth-child(1), .stat:nth-child(2) {
    border-bottom: 1px solid #EAEEF6;
  }
}

@media (max-width: 540px) {
  .stat {
    flex: 1 1 100%;
    border-right: none !important;
    border-bottom: 1px solid #EAEEF6;
  }
  .stat:last-child {
    border-bottom: none;
  }
}


/* ---------- Section headings ---------- */
.section-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.section-head h2{
  font-weight: 800;
  font-size: 42px;
  line-height: 1.1;
  color: var(--navy-deep);
  margin-top: 12px;
  letter-spacing: -0.01em;
}
.section-link{
  text-decoration: none;
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 15px;
  border-bottom: 2px solid var(--green);
  padding-bottom: 3px;
  white-space: nowrap;
}
.section-head-centered{ text-align: center; max-width: 680px; margin: 0 auto 50px; }
.section-head-centered h2{ margin: 12px 0 0; }
.section-head-centered p{ color: var(--text-body-soft); font-size: 17px; line-height: 1.6; margin: 16px 0 0; }

/* ---------- Card grid (services / why-us) ---------- */
.grid-4{ display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.grid-3{ display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.grid-2{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 980px){ .grid-4{ grid-template-columns: repeat(2,1fr); } .grid-3{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .grid-4, .grid-3, .grid-2{ grid-template-columns: 1fr; } }

.icon-box{
  width: 50px; height: 50px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
}
.icon-box--blue{ background: var(--blue-light); color: var(--blue); }
.icon-box--green{ background: var(--green-light); color: var(--green-dark); }
.icon-box--lg{ width: 54px; height: 54px; border-radius: 14px; }

.service-card{
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 26px 24px;
  display: block;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.service-card:hover{ transform: translateY(-4px); box-shadow: 0 24px 44px -26px rgba(12,46,110,0.45); border-color: var(--blue-border); }
.service-card h3{ font-size: 17px; font-weight: 700; color: var(--text-heading); margin: 18px 0 6px; }
.service-card p{ font-size: 14px; color: var(--text-body); line-height: 1.55; margin: 0; }
.service-card--lg{ border-radius: 18px; padding: 30px 26px; display: flex; flex-direction: column; }
.service-card--lg h3{ font-size: 18px; margin: 20px 0 8px; }
.service-card--lg p{ flex: 1; margin: 0 0 18px; }
.service-card--lg .learn-more{ color: var(--blue); font-weight: 700; font-size: 14px; }

.feature-card{
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 30px 26px;
}
.feature-card h3{ font-size: 20px; font-weight: 700; color: var(--text-heading); margin: 20px 0 8px; }
.feature-card p{ font-size: 14.5px; color: var(--text-body); line-height: 1.6; margin: 0; }
.feature-card--navy{ background: linear-gradient(160deg,#0E47B0,#0A2A6B); color: #fff; }
.feature-card--navy h3{ color: #fff; }
.feature-card--navy p{ color: #C6D3EC; }
.feature-card--green{ background: linear-gradient(160deg,#2FB23A,#1E8A2A); color: #fff; }
.feature-card--green h3{ color: #fff; }
.feature-card--green p{ color: #DDF3DF; }

/* ---------- Image / project tiles ---------- */
.img-tile{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
}
.img-tile img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.img-tile .ph{
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: #9aa7c2; font-size: 13px; font-weight: 600;
  background: repeating-linear-gradient(45deg, #EEF2F8, #EEF2F8 10px, #F6F8FB 10px, #F6F8FB 20px);
}
.img-tile .tile-caption{
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(0deg, rgba(8,24,60,0.85), transparent);
  color: #fff;
}
.tile-caption .tag{
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--green-bright);
  background: rgba(52,193,59,0.18);
  padding: 3px 9px; border-radius: 6px;
  margin-bottom: 8px;
}
.tile-caption .title{ font-family: var(--font-heading); font-weight: 700; font-size: 17px; }
.tile-caption .place{ font-size: 13px; color: var(--text-on-navy); }

/* ---------- CTA banner ---------- */
.cta-banner{
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(120deg, var(--navy-1) 0%, var(--navy-2) 100%);
  padding: 62px 56px;
}
.cta-banner::before{
  content: '';
  position: absolute; top: -80px; right: -40px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(52,193,59,0.22), transparent 70%);
}
.cta-banner-inner{
  position: relative;
  display: flex; flex-wrap: wrap;
  gap: 28px; align-items: center; justify-content: space-between;
}
.cta-banner h2{ font-weight: 800; font-size: 38px; line-height: 1.12; color: #fff; }
.cta-banner p{ color: var(--text-on-navy); font-size: 17px; line-height: 1.6; margin: 16px 0 0; max-width: 620px; }
.cta-actions{ display: flex; flex-direction: column; gap: 12px; }
.cta-call{ text-decoration: none; text-align: center; color: var(--text-on-navy); font-size: 15px; }
.cta-call strong{ color: #fff; }
@media (max-width: 640px){ .cta-banner{ padding: 40px 28px; } .cta-banner h2{ font-size: 28px; } }

/* ---------- Footer ---------- */
.site-footer{
  font-family: var(--font-body);
  background: linear-gradient(160deg, var(--navy-1) 0%, var(--navy-2) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.site-footer::before{
  content: '';
  position: absolute; top: -60px; right: -40px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(52,193,59,0.16), transparent 70%);
  pointer-events: none;
}
.footer-inner{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 28px 0;
  position: relative;
}
.footer-cols{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr 1.4fr;
  gap: 44px;
}
.footer-brand p{ margin: 20px 0 0; color: #AFC0E6; font-size: 14.5px; line-height: 1.7; max-width: 300px; }
.social-row{ display: flex; gap: 10px; margin-top: 22px; }
.social-row a{
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  color: #cfe0ff;
  transition: background .15s, transform .15s, border-color .15s;
}
.social-row a:hover{ background: var(--green); color: #fff; transform: translateY(-2px); border-color: var(--green); }
.footer-col h4{ font-size: 15px; font-weight: 700; margin: 0 0 18px; letter-spacing: .02em; }
.footer-col .flinks{ display: flex; flex-direction: column; gap: 12px; }
.footer-col a{ color: #AFC0E6; text-decoration: none; font-size: 14.5px; }
.footer-col a:hover{ color: var(--green); }
.footer-contact p{ color: #AFC0E6; font-size: 14.5px; line-height: 1.7; margin: 0 0 16px; }
.footer-contact .line{ color: #AFC0E6; font-size: 14.5px; }
.footer-contact .line strong{ color: var(--green); font-weight: 600; }
.footer-bottom{
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 24px 0 30px;
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; justify-content: space-between;
  color: #8FA3D0; font-size: 13.5px;
}
.footer-bottom strong{ color: #fff; font-weight: 700; }
@media (max-width: 860px){ .footer-cols{ grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 520px){ .footer-cols{ grid-template-columns: 1fr; } }

/* ---------- Contact page ---------- */
.contact-wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 900px){ .contact-wrap{ grid-template-columns: 1fr; } }
.contact-card{
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 30px 60px -40px rgba(12,46,110,0.35);
}
.form-field{ margin-bottom: 18px; }
.form-field label{ display: block; font-size: 14px; font-weight: 700; color: var(--text-heading); margin-bottom: 7px; }
.form-field input,
.form-field select,
.form-field textarea{
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 15px;
  border-radius: 10px;
  border: 1.5px solid var(--border-soft);
  background: var(--bg-soft);
  color: var(--text-heading);
  transition: border-color .15s, background .15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{ outline: none; border-color: var(--blue); background: #fff; }
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px){ .form-row{ grid-template-columns: 1fr; } }
.form-submit{ width: 100%; text-align: center; font-size: 16px; padding: 15px 0; border-radius: 12px; }
.form-status{ margin-top: 14px; font-size: 14px; font-weight: 600; display: none; }
.form-status.success{ color: var(--green-dark); display: block; }
.form-status.error{ color: #C23B3B; display: block; }
.contact-info-card{
  background: linear-gradient(160deg, var(--navy-1) 0%, var(--navy-2) 100%);
  border-radius: 22px;
  padding: 40px;
  color: #fff;
}
.contact-info-card h3{ font-size: 22px; font-weight: 700; margin-bottom: 18px; }
.info-row{ display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.info-row .ico{ flex: none; width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: var(--green-bright); }
.info-row .txt{ color: var(--text-on-navy); font-size: 15px; line-height: 1.6; }
.info-row .txt strong{ color: #fff; display: block; font-size: 14px; margin-bottom: 2px; }
.map-embed{ border-radius: 16px; overflow: hidden; margin-top: 24px; border: 1px solid rgba(255,255,255,0.15); }
.map-embed iframe{ width: 100%; height: 220px; border: 0; display: block; }

/* ---------- Service detail ---------- */
.service-hero{
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: center;
  background: linear-gradient(105deg, #0a2a6b, #123a8a 60%, #1c4ba0);
}
.service-hero .hero-media{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0.5; }
.service-hero .hero-overlay{ position:absolute; inset:0; background:linear-gradient(105deg,rgba(8,30,75,0.94) 0%,rgba(10,42,108,0.78) 48%,rgba(10,42,108,0.35) 100%); }
.service-hero-inner{ position: relative; max-width: var(--max-width); margin: 0 auto; padding: 90px 28px; width: 100%; }
.service-tag{
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(52,193,59,0.16); border: 1px solid rgba(52,193,59,0.4);
  color: var(--green-bright); padding: 7px 15px; border-radius: 999px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.service-hero h1{ font-weight: 800; font-size: 56px; line-height: 1.07; letter-spacing: -0.02em; color: #fff; margin: 18px 0 0; max-width: 720px; }
.service-hero p{ color: #D4DEF4; font-size: 18px; line-height: 1.6; margin: 18px 0 0; max-width: 560px; }
@media (max-width: 640px){ .service-hero h1{ font-size: 40px; } }

.service-overview{ max-width: 900px; margin: 0 auto; padding: 80px 28px 20px; text-align: center; }
.service-overview h2{ font-weight: 800; font-size: 36px; line-height: 1.15; color: var(--navy-deep); margin: 12px 0 16px; letter-spacing: -0.01em; }
.service-overview p{ color: var(--text-body-soft); font-size: 18px; line-height: 1.7; margin: 0; }

.included-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.included-list{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.included-item{ display: flex; gap: 11px; align-items: flex-start; }
.included-item .tick{ flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--green-light); color: var(--green-dark); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.included-item span.label{ font-size: 15px; color: #33415C; font-weight: 500; }
@media (max-width: 980px){ .included-grid, .included-list{ grid-template-columns: 1fr; } }

/* ---------- About page ---------- */
.story-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.story-grid p{ color: var(--text-body-soft); font-size: 17px; line-height: 1.75; margin: 0 0 16px; }
@media (max-width: 980px){ .story-grid{ grid-template-columns: 1fr; } }

.leader-card{
  background: #fff; border: 1px solid var(--border-soft); border-radius: 20px;
  padding: 34px; display: flex; gap: 22px; align-items: center;
  box-shadow: 0 20px 44px -34px rgba(12,46,110,0.4);
}
.leader-avatar{
  flex: none; width: 84px; height: 84px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.leader-avatar--blue{ background: linear-gradient(160deg,#1E6FE0,#0C337F); }
.leader-avatar--green{ background: linear-gradient(160deg,#2FB23A,#1E8A2A); }
.leader-card h3{ font-size: 21px; font-weight: 700; color: var(--navy-deep); }
.leader-role{ display: inline-block; margin: 8px 0 12px; font-size: 13px; font-weight: 700; color: var(--green-dark); background: var(--green-light); padding: 4px 12px; border-radius: 999px; }
.leader-phone{ font-size: 15px; color: var(--text-body); }
.leader-phone a{ color: var(--text-body); text-decoration: none; font-weight: 600; }
.leaders-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 840px; margin: 0 auto; }
@media (max-width: 980px){ .leaders-grid{ grid-template-columns: 1fr; } }

.powered-banner{
  background: var(--navy-deep); border-radius: 22px; padding: 44px 48px;
  display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between;
}
.powered-banner h2{ font-weight: 800; font-size: 30px; color: #fff; margin: 10px 0 0; }
.powered-banner p{ color: var(--text-on-navy); font-size: 16px; line-height: 1.6; margin: 10px 0 0; max-width: 560px; }

/* ---------- Process steps ---------- */
.step-card{ background: #fff; border: 1px solid var(--border-soft); border-radius: 16px; padding: 28px 24px; }
.step-card .step-num{ font-family: var(--font-heading); font-weight: 800; font-size: 15px; color: var(--green); }
.step-card h3{ font-size: 18px; font-weight: 700; color: var(--text-heading); margin: 10px 0 6px; }
.step-card p{ font-size: 14px; color: var(--text-body); line-height: 1.6; margin: 0; }

/* ---------- Utility ---------- */
.mt-0{ margin-top: 0 !important; }
.text-center{ text-align: center; }
.visually-hidden{ position:absolute; left:-9999px; }
