/* ==========================================================================
   EXPERTTECH — stylesheet
   Palette sourced from client reference (Test.html):
     Dark Blue #1b439a · Medium Blue #0171bb · Grey #6e6f72
   Signature motif: the thin orbiting arc/ring lifted from the "e" mark in
   the Experttech logo, reused as a section divider, eyebrow underline and
   tab indicator throughout the page.
   ========================================================================== */

:root{
  /* --- brand colour tokens --- */
  --navy: #1b439a;
  --navy-ink: #122d68;      /* darker navy for high-contrast headings */
  --blue: #0171bb;
  --grey: #6e6f72;
  --grey-light: #9a9ba0;
  --bg: #f9f9f9;
  --bg-tint: #eef4fb;       /* pale blue section tint */
  --white: #ffffff;
  --line: #e3e8f0;
  --line-strong: #cdd6e4;

  /* --- gradients --- */
  --gradient-hero: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  --gradient-band: linear-gradient(120deg, var(--navy-ink) 0%, var(--navy) 60%, var(--blue) 130%);

  /* --- type --- */
  --font-display: 'Poppins', 'Segoe UI', Tahoma, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Tahoma, sans-serif;

  /* --- layout --- */
  --container: 1180px;
  --header-h: 76px;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 10px rgba(18, 45, 104, 0.06);
  --shadow-md: 0 12px 32px rgba(18, 45, 104, 0.10);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* --- reset --- */
*, *::before, *::after{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body{
  font-family: var(--font-body);
  color: var(--grey);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: var(--blue); text-decoration:none; }
ul{ list-style:none; }
button{ font-family: inherit; cursor:pointer; border:none; background:none; }
h1,h2,h3,h4{ font-family: var(--font-display); color: var(--navy-ink); font-weight:600; line-height:1.2; }
:focus-visible{ outline: 3px solid var(--blue); outline-offset: 3px; }

.container{ max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--font-body); font-weight:700; font-size:13px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow::before{
  content:""; width: 26px; height: 10px;
  border: 2px solid currentColor; border-right:none; border-bottom:none;
  border-radius: 20px 0 0 0;
  transform: rotate(45deg);
}

.section{ padding: 96px 0; }
.section--tint{ background: var(--bg-tint); }
.section--white{ background: var(--white); }
.section-head{ max-width: 680px; margin-bottom: 52px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size: clamp(28px, 4vw, 38px); margin-bottom: 16px; }
.section-head p{ font-size: 17px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 14px 28px; border-radius: 30px; font-weight:600; font-size:15px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn-primary{ background: var(--white); color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-primary:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-solid{ background: var(--blue); color: var(--white); }
.btn-solid:hover{ background: var(--navy); transform: translateY(-2px); }
.btn-outline{ border: 1.5px solid rgba(255,255,255,.6); color: var(--white); }
.btn-outline:hover{ background: rgba(255,255,255,.12); }
.btn-ghost{ border: 1.5px solid var(--line-strong); color: var(--navy-ink); }
.btn-ghost:hover{ border-color: var(--blue); color: var(--blue); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header{
  position: fixed; top:0; left:0; width:100%; z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-scrolled{ box-shadow: var(--shadow-sm); }
.site-header .container{ height:100%; display:flex; align-items:center; justify-content:space-between; gap: 24px; }
.brand{ display:flex; align-items:center; flex-shrink:0; }
.brand img{ height: 34px; width:auto; }

.main-nav ul{ display:flex; align-items:center; gap: 30px; }
.main-nav a{
  color: var(--navy-ink); font-weight:500; font-size:15px; position:relative; padding: 6px 0;
}
.main-nav a::after{
  content:""; position:absolute; left:0; bottom:0; height:2px; width:0%;
  background: var(--blue); transition: width .25s var(--ease);
}
.main-nav a:hover::after, .main-nav a.active::after{ width:100%; }

.header-cta{ display:flex; align-items:center; gap:18px; }
.mobile-nav-cta{ display:none; }
.nav-toggle{
  display:none; flex-direction:column; padding:8px; z-index: 1100;
}
.nav-toggle span{ width:24px; height:2px; background: var(--navy-ink); border-radius:2px; margin-bottom:5px; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.nav-toggle span:last-child{ margin-bottom:0; }
.nav-toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity:0; }
.nav-toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position:relative; overflow:hidden;
  padding: calc(var(--header-h) + 84px) 0 96px;
  background: var(--gradient-hero);
  color: var(--white);
}
.hero-arcs{ position:absolute; inset:0; pointer-events:none; opacity:.5; }
.hero-arcs svg{ position:absolute; }
.hero-arcs .arc-1{ top:-120px; right:-140px; width:560px; height:560px; }
.hero-arcs .arc-2{ bottom:-180px; left:-160px; width:460px; height:460px; opacity:.6; }
.hero .container{ position:relative; z-index:2; display:grid; grid-template-columns: 1.1fr .9fr; gap:48px; align-items:center; }
.hero-eyebrow{
  display:inline-flex; align-items:center; gap:10px; padding:8px 16px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28);
  border-radius: 30px; font-size:13px; font-weight:600; letter-spacing:.04em;
  margin-bottom: 22px;
}
.hero h1{
  color: var(--white); font-size: clamp(34px, 4.6vw, 54px); line-height:1.12;
  margin-bottom: 20px; letter-spacing: -0.01em;
}
.hero p.lede{ font-size: 19px; opacity:.92; max-width: 540px; margin-bottom: 32px; }
.hero-ctas{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom: 40px; }
.hero-tagline{
  display:flex; gap: 10px 28px; flex-wrap:wrap; font-family: var(--font-display);
  font-weight:600; font-size:15px; letter-spacing:.02em;
}
.hero-tagline span{ position:relative; padding-left:18px; }
.hero-tagline span::before{
  content:""; position:absolute; left:0; top:50%; width:8px; height:8px;
  border-radius:50%; background: var(--white); transform: translateY(-50%);
}
.hero-visual{ position:relative; display:flex; align-items:center; justify-content:center; }
.hero-orbit{ position:relative; width: 100%; max-width: 380px; }
.hero-orbit svg.ring{ position:absolute; inset:0; width:100%; height:100%; z-index:1; }
.stat-stack{
  position:relative; z-index:2; display:flex; flex-direction:column; gap: 18px;
  padding: 44px 0;
}
.stat-card{
  background: var(--white); color: var(--navy-ink); width: 220px; max-width: 78%;
  border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow-md);
}
.stat-card strong{ display:block; font-family: var(--font-display); font-size: 26px; color: var(--navy); }
.stat-card span{ font-size: 12.5px; color: var(--grey); font-weight:500; line-height:1.4; }
.stat-card.c1{ align-self: flex-start; }
.stat-card.c2{ align-self: flex-end; width: 250px; }
.stat-card.c3{ align-self: center; }

@keyframes spin-slow{ to{ transform: rotate(360deg); } }
.hero-orbit .ring{ animation: spin-slow 60s linear infinite; transform-origin: center; }

/* ==========================================================================
   WHY EXPERTTECH
   ========================================================================== */
.why-grid{ display:grid; grid-template-columns: .95fr 1.05fr; gap: 64px; align-items:start; }
.why-copy p{ margin-bottom: 18px; font-size: 16.5px; }
.why-copy p:last-child{ margin-bottom:0; }
.why-copy .callout{
  font-family: var(--font-display); font-weight:600; color: var(--navy-ink);
  font-size: 19px; border-left: 3px solid var(--blue); padding-left: 18px; margin: 26px 0;
}
.value-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.value-item{
  display:flex; gap:14px; align-items:flex-start; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 18px;
  transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.value-item:hover{ border-color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.value-item .icon{
  flex-shrink:0; width:38px; height:38px; border-radius: 10px;
  background: var(--bg-tint); color: var(--blue);
  display:flex; align-items:center; justify-content:center;
}
.value-item .icon svg{ width:19px; height:19px; }
.value-item p{ font-size: 14.5px; font-weight:600; color: var(--navy-ink); line-height:1.4; }

.purpose-vision{
  display:grid; grid-template-columns: 1fr 1fr; gap:24px; margin-top: 56px;
}
.pv-card{
  border-radius: var(--radius-lg); padding: 30px 32px;
  background: var(--bg-tint); border: 1px solid var(--line);
}
.pv-card--accent{ background: var(--gradient-band); border-color: transparent; }
.pv-card .eyebrow{ margin-bottom: 10px; }
.pv-card--accent .eyebrow{ color: rgba(255,255,255,.85); }
.pv-card--accent .eyebrow::before{ border-color: rgba(255,255,255,.85); }
.pv-card p{
  font-family: var(--font-display); font-weight:500; font-size: 18px;
  color: var(--navy-ink); line-height:1.5;
}
.pv-card--accent p{ color: var(--white); }

@media (max-width: 640px){
  .purpose-vision{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   JOURNEY BAND
   ========================================================================== */
.journey{
  position:relative; overflow:hidden;
  background: var(--gradient-band); color: var(--white);
  padding: 88px 0;
}
.journey .container{ position:relative; z-index:2; }
.journey .section-head p, .journey .eyebrow{ color: rgba(255,255,255,.85); }
.journey .eyebrow::before{ border-color: rgba(255,255,255,.85); }
.journey .section-head h2{ color: var(--white); }

.journey-steps{
  list-style:none; display:grid; grid-template-columns: repeat(7, 1fr); gap: 14px;
  counter-reset: step; margin-bottom: 40px;
}
.journey-step{
  position:relative; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius); padding: 22px 16px; text-align:center;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.journey-step:hover{ background: rgba(255,255,255,.13); transform: translateY(-3px); }
.journey-step:not(:last-child)::after{
  content:""; position:absolute; top:38px; right:-14px; width:14px; height:1px;
  background: rgba(255,255,255,.3); display:none;
}
@media (min-width:861px){ .journey-step:not(:last-child)::after{ display:block; } }
.journey-step .step-icon{
  width:44px; height:44px; margin: 0 auto 12px; border-radius:50%;
  background: rgba(255,255,255,.12); display:flex; align-items:center; justify-content:center;
  color: var(--white);
}
.journey-step .step-icon svg{ width:20px; height:20px; }
.journey-step .step-no{
  position:absolute; top:8px; right:10px; font-family: var(--font-display); font-size:11px;
  font-weight:700; color: rgba(255,255,255,.5);
}
.journey-step h3{ color: var(--white); font-size:15px; margin-bottom:6px; }
.journey-step p{ font-size:12.5px; color: rgba(255,255,255,.78); line-height:1.5; }

.journey-summary{
  text-align:center; max-width: 720px; margin: 0 auto; font-size: 16.5px;
  color: rgba(255,255,255,.92);
}
.journey-summary strong{ color: var(--white); }

.journey-head-grid{ display:grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items:center; margin-bottom: 44px; }
.journey-head-grid .section-head{ margin-bottom:0; max-width:none; }
.journey-photo{ border-radius: var(--radius-lg); overflow:hidden; box-shadow: 0 20px 44px rgba(0,0,0,.28); aspect-ratio: 16/9.2; }
.journey-photo img{ width:100%; height:100%; object-fit:cover; display:block; }

/* ==========================================================================
   SOLUTIONS OVERVIEW (7-item strip)
   ========================================================================== */
.overview-steps{
  list-style:none; display:grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.overview-step{
  position:relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 26px 20px 22px; text-align:center;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.overview-step:hover{ box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--blue); }
.overview-no{
  position:absolute; top:12px; right:16px;
  font-family: var(--font-display); font-weight:700; font-size:11px; color: var(--grey-light);
  letter-spacing:.05em;
}
.overview-step .step-icon{
  width:44px; height:44px; margin: 4px auto 14px; border-radius:12px;
  background: var(--bg-tint); color: var(--navy); display:flex; align-items:center; justify-content:center;
}
.overview-step .step-icon svg{ width:21px; height:21px; }
.overview-step h3{ font-size:16px; margin-bottom:8px; line-height:1.35; }
.overview-step p{ font-size:13.5px; }

.overview-head-grid{ display:grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items:center; margin-bottom: 48px; }
.overview-head-grid .section-head{ margin-bottom:0; max-width:none; }
.overview-photo{ border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-md); aspect-ratio: 16/8.2; }
.overview-photo img{ width:100%; height:100%; object-fit:cover; display:block; }

/* Office card flags */
.office-card h4{ gap:10px; }
.office-card h4 .flag{ width:22px; height:auto; border-radius:3px; box-shadow: 0 1px 3px rgba(0,0,0,.25); flex-shrink:0; }
.office-card h4::before{ display:none; }

/* ==========================================================================
   SOLUTIONS (tabs)
   ========================================================================== */
.four-solutions-img{
  display:block; max-width: 720px; width:100%; margin: 0 auto 48px;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.tabs-bar{
  display:flex; gap:10px; flex-wrap:wrap; margin-bottom: 44px;
  border-bottom: 1px solid var(--line-strong); padding-bottom: 0;
}
.tab-btn{
  padding: 13px 6px; margin-right: 26px; font-family: var(--font-display);
  font-weight:600; font-size:15.5px; color: var(--grey); position:relative;
  border-bottom: 3px solid transparent; transition: color .2s var(--ease);
}
.tab-btn:hover{ color: var(--navy-ink); }
.tab-btn.is-active{ color: var(--navy); border-color: var(--blue); }

.tab-panel{ display:none; }
.tab-panel.is-active{ display:block; animation: fade-up .4s var(--ease); }
@keyframes fade-up{ from{ opacity:0; transform: translateY(10px);} to{opacity:1; transform:translateY(0);} }

.pillar-intro{ display:grid; grid-template-columns: 1fr 1fr; gap:40px; margin-bottom: 40px; }
.pillar-intro p{ font-size: 16px; }
.pillar-intro h3{ font-size: 22px; margin-bottom: 10px; }

.solution-cards{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.solution-card{
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.solution-card:hover{ box-shadow: var(--shadow-md); transform: translateY(-4px); }
.solution-card h4{ font-size: 19px; margin-bottom: 6px; }
.solution-card .kicker{ font-size:12.5px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color: var(--blue); margin-bottom:8px; display:block; }
.solution-card p{ font-size: 15px; margin-bottom: 14px; }
.solution-card ul{ display:flex; flex-direction:column; gap:8px; }
.solution-card ul li{
  font-size: 14px; color: var(--navy-ink); font-weight:500; padding-left: 20px; position:relative;
}
.solution-card ul li::before{
  content:""; position:absolute; left:0; top:8px; width:8px; height:8px;
  border-radius:50%; border: 2px solid var(--blue);
}
.tag-row{ display:flex; flex-wrap:wrap; gap:8px; margin-top:16px; }
.card-link{
  display:inline-flex; align-items:center; gap:6px; margin-top:16px;
  font-size:13.5px; font-weight:700; color: var(--blue);
}
.card-link svg{ width:15px; height:15px; transition: transform .2s var(--ease); }
.card-link:hover svg{ transform: translateX(3px); }
.tag{ font-size:12px; font-weight:600; background: var(--bg-tint); color: var(--navy); padding:5px 12px; border-radius:20px; }

.quals-strip{ margin-top: 28px; display:grid; grid-template-columns: repeat(3,1fr); gap:16px; }
.qual-card{ background: var(--bg-tint); border-radius: var(--radius); padding:20px; }
.qual-card h5{ font-family: var(--font-display); color: var(--navy-ink); font-size:15px; margin-bottom:8px; }
.qual-card dl{ display:flex; flex-wrap:wrap; gap: 4px 14px; font-size:12.5px; color:var(--grey); }
.qual-card dt{ font-weight:700; color: var(--navy); }
.qual-card dd{ margin-right: 10px; }

.clients-line{ margin-top:26px; display:flex; align-items:center; gap:16px; flex-wrap:wrap; font-size:14px; }
.clients-line strong{ color: var(--navy-ink); }
.client-chip{ background:var(--white); border:1px solid var(--line-strong); padding:6px 14px; border-radius:20px; font-weight:600; color:var(--navy-ink); }

/* EXQi feature callout */
.exqi-callout{
  margin-top: 40px; border-radius: var(--radius-lg); overflow:hidden;
  background: var(--gradient-band); color: var(--white);
  display:grid; grid-template-columns: 1.2fr .8fr; gap: 0;
}
.exqi-copy{ padding: 44px; }
.exqi-copy .eyebrow{ color: rgba(255,255,255,.85); }
.exqi-copy .eyebrow::before{ border-color: rgba(255,255,255,.85); }
.exqi-copy h3{ color: var(--white); font-size: 26px; margin-bottom: 14px; }
.exqi-copy p{ color: rgba(255,255,255,.88); margin-bottom: 20px; max-width: 480px; }
.exqi-stats{ display:flex; gap:34px; padding: 44px 44px; align-items:center; background: rgba(255,255,255,.06); }
.exqi-stats .stat strong{ display:block; font-family: var(--font-display); font-size: 32px; }
.exqi-stats .stat span{ font-size: 12.5px; color: rgba(255,255,255,.8); }

/* ==========================================================================
   SOCIAL PROOF
   ========================================================================== */
.proof-stats{ display:grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-bottom: 56px; }
.proof-stat{ text-align:center; padding: 26px 12px; border-right: 1px solid var(--line); }
.proof-stat:last-child{ border-right:none; }
.proof-stat strong{ display:block; font-family: var(--font-display); font-size: 38px; color: var(--navy); }
.proof-stat span{ font-size: 13.5px; font-weight:600; color: var(--grey); }

.proof-clients{ text-align:center; }
.proof-clients p.label{ font-size:13px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color: var(--grey-light); margin-bottom:26px; }
.client-wall{ display:flex; justify-content:center; gap: 40px; flex-wrap:wrap; align-items:center; }
.client-wordmark{
  font-family: var(--font-display); font-weight:700; font-size:20px; color: var(--navy-ink);
  opacity:.55; transition: opacity .2s var(--ease);
}
.client-wordmark:hover{ opacity:1; color:var(--blue); }

/* ==========================================================================
   TEAM
   ========================================================================== */
.team-quote{
  max-width: 780px; margin: 0 auto 56px; text-align:center; font-family: var(--font-display);
  font-size: 19px; color: var(--navy-ink); font-weight:500; line-height:1.5;
}
.team-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.team-card{
  background: var(--white); border-radius: var(--radius-lg); overflow:hidden;
  border:1px solid var(--line); text-align:center; padding: 36px 26px;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.team-card:hover{ box-shadow: var(--shadow-md); transform: translateY(-4px); }
.avatar{
  width: 112px; height:112px; border-radius:50%; margin: 0 auto 20px;
  display:flex; align-items:center; justify-content:center; overflow:hidden;
  background: var(--gradient-hero); color:var(--white);
  font-family: var(--font-display); font-weight:700; font-size:28px;
  box-shadow: 0 0 0 4px var(--white), 0 4px 14px rgba(18,45,104,.18);
}
.avatar img{ width:100%; height:100%; object-fit:cover; display:block; }
.team-card h4{ font-size:17px; margin-bottom:4px; }
.team-card .role{ font-size:13px; font-weight:600; color: var(--blue); text-transform:uppercase; letter-spacing:.04em; margin-bottom:16px; display:block; }
.team-card .bio{
  text-align:left; font-size:13.5px; line-height:1.6; color: var(--grey);
  margin-top:16px; padding-top:16px; border-top:1px solid var(--line);
}
.team-card .linkedin{
  display:inline-flex; align-items:center; gap:6px; font-size:13.5px; font-weight:600;
  color: var(--navy-ink); border:1px solid var(--line-strong); padding:8px 16px; border-radius:20px;
  transition: all .2s var(--ease);
}
.team-card .linkedin:hover{ background: var(--navy); color:var(--white); border-color:var(--navy); }
.team-card .linkedin svg{ width:14px; height:14px; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:start; }
.office-list{ display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.office-card{ background: var(--white); border:1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.office-card.hq{ grid-column: 1 / -1; background: var(--bg-tint); border-color: transparent; }
.office-card h4{ font-size:15px; margin-bottom:10px; display:flex; align-items:center; gap:8px; }
.office-card h4::before{ content:""; width:8px; height:8px; border-radius:50%; background: var(--blue); }
.office-card p, .office-card a{ font-size:14px; color: var(--grey); display:block; }
.office-card a{ color: var(--navy-ink); font-weight:600; }
.office-card a:hover{ color: var(--blue); }
.office-card .addr{ margin-top:6px; }

.contact-form-card{
  background: var(--white); border:1px solid var(--line); border-radius: var(--radius-lg);
  overflow:hidden; box-shadow: var(--shadow-sm);
}
.contact-form-head{ padding: 26px 26px 0; }
.contact-form-head h3{ font-size:19px; margin-bottom:6px; }
.contact-form-head p{ font-size:14px; margin-bottom: 6px; }
#contact-frame{ width:100%; height: 610px; border:0; display:block; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ background: var(--navy-ink); color: rgba(255,255,255,.75); padding: 56px 0 26px; }
.footer-top{ display:grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand img{ height:32px; margin-bottom:16px; }
.footer-brand p{ font-size:14px; max-width: 280px; }
.social-links{ display:flex; gap:12px; margin-top:20px; }
.social-links a{
  display:flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:50%;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.8);
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.social-links a:hover{ background: var(--blue); color: var(--white); transform: translateY(-2px); }
.social-links svg{ width:17px; height:17px; }
.footer-col h5{ color:var(--white); font-family: var(--font-display); font-size:14px; margin-bottom:16px; letter-spacing:.03em; }
.footer-col ul{ display:flex; flex-direction:column; gap:10px; }
.footer-col a{ color: rgba(255,255,255,.7); font-size:14px; }
.footer-col a:hover{ color: var(--white); }
.footer-bottom{ padding-top: 24px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; font-size:13px; }
.footer-bottom .legal-links{ display:flex; gap:20px; }
.footer-bottom .legal-links a{ color: rgba(255,255,255,.6); font-size:13px; }
.footer-bottom .legal-links a:hover{ color:var(--white); }

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.back-to-top{
  position: fixed; right: 24px; bottom: 24px; width:46px; height:46px; border-radius:50%;
  background: var(--navy); color: var(--white); display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-md); opacity:0; pointer-events:none; transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease); z-index: 900;
}
.back-to-top.is-visible{ opacity:1; pointer-events:auto; transform:none; }
.back-to-top svg{ width:18px; height:18px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px){
  .hero .container{ grid-template-columns: 1fr; }
  .hero-visual{ order:-1; max-width: 340px; margin: 0 auto 20px; }
  .why-grid{ grid-template-columns: 1fr; gap:36px; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-top{ grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .journey-steps{ grid-template-columns: repeat(4, 1fr); }
  .overview-steps{ grid-template-columns: repeat(2, 1fr); }
  .journey-head-grid, .overview-head-grid{ grid-template-columns: 1fr; gap:28px; }
  .journey-photo, .overview-photo{ order:-1; aspect-ratio: 16/9; }
}

@media (max-width: 860px){
  .main-nav{
    position: fixed; inset: 0; top: var(--header-h);
    background: var(--white); padding: 30px 24px;
    transform: translateX(100%); transition: transform .3s var(--ease);
    overflow-y:auto;
  }
  .main-nav.is-open{ transform: translateX(0); }
  .main-nav ul{ flex-direction:column; align-items:flex-start; gap:6px; }
  .main-nav a{ display:block; padding: 14px 4px; font-size:17px; width:100%; border-bottom:1px solid var(--line); }
  .nav-toggle{ display:flex; }

  .value-grid{ grid-template-columns: 1fr; }
  .pillar-intro{ grid-template-columns: 1fr; gap:16px; }
  .solution-cards{ grid-template-columns: 1fr; }
  .quals-strip{ grid-template-columns: 1fr; }
  .exqi-callout{ grid-template-columns: 1fr; }
  .exqi-stats{ flex-wrap:wrap; gap: 24px; }
  .proof-stats{ grid-template-columns: 1fr 1fr; }
  .proof-stat{ border-right:none; border-bottom:1px solid var(--line); }
  .team-grid{ grid-template-columns: 1fr; }
  .office-list{ grid-template-columns: 1fr; }
  .footer-top{ grid-template-columns: 1fr; }
  .journey-steps{ grid-template-columns: repeat(4, 1fr); }
  .overview-steps{ grid-template-columns: repeat(2, 1fr); }
}

/* Below ~520px the logo + "Let's Talk" pill + hamburger no longer fit on one
   line, pushing the toggle off-screen. Hide the header pill and rely on the
   equivalent CTA inside the slide-out menu instead. */
@media (max-width: 520px){
  .header-cta .btn-solid{ display:none; }
  .mobile-nav-cta{
    display: flex; margin-top: 20px; width:100%;
  }
}

@media (max-width: 640px){
  .journey-steps{ grid-template-columns: repeat(2, 1fr); }
  .overview-steps{ grid-template-columns: 1fr; }
}

@media (max-width: 560px){
  .section{ padding: 64px 0; }
  .hero{ padding: calc(var(--header-h) + 56px) 0 64px; }
  .hero-ctas{ flex-direction:column; align-items:stretch; }
  .hero-ctas .btn{ width:100%; }
  .hero-orbit{ max-width: 300px; }
  .stat-stack{ gap: 12px; padding: 30px 0; }
  .stat-card{ width: 190px; padding:12px 14px; }
  .stat-card.c2{ width: 210px; }
  .stat-card strong{ font-size:20px; }
  .tabs-bar{ overflow-x:auto; flex-wrap:nowrap; padding-bottom:2px; -ms-overflow-style:none; scrollbar-width:none; }
  .tabs-bar::-webkit-scrollbar{ display:none; }
  .tab-btn{ flex-shrink:0; }
  .back-to-top{ right:16px; bottom:16px; }
}

/* ==========================================================================
   SUBPAGES (Leadership Development / Coaching / Women in Leadership)
   ========================================================================== */
.page-banner{
  position:relative; overflow:hidden;
  padding: calc(var(--header-h) + 56px) 0 64px;
  background: var(--gradient-band); color: var(--white);
}
.back-link{
  display:inline-flex; align-items:center; gap:8px; margin-bottom:22px;
  padding: 8px 16px 8px 12px; border-radius:30px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28);
  color: var(--white); font-size:13.5px; font-weight:600;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.back-link:hover{ background: rgba(255,255,255,.22); transform: translateX(-2px); }
.back-link svg{ width:15px; height:15px; }
.breadcrumb{
  display:flex; align-items:center; gap:8px; font-size:13.5px; font-weight:600;
  color: rgba(255,255,255,.75); margin-bottom:18px;
}
.breadcrumb a{ color: rgba(255,255,255,.85); }
.breadcrumb a:hover{ color: var(--white); }
.page-banner h1{ color:var(--white); font-size: clamp(30px,4.2vw,44px); max-width:720px; margin-bottom:14px; }
.page-banner .lede{ color: rgba(255,255,255,.9); font-size:17px; max-width:640px; }

.intro-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:44px; }
.intro-grid h3{ font-size:20px; margin-bottom:10px; }
.intro-grid p{ margin-bottom:14px; }

.offer-list{ display:grid; grid-template-columns: repeat(2,1fr); gap:14px; margin-top:24px; }
.offer-item{
  display:flex; gap:12px; align-items:flex-start; background: var(--white);
  border:1px solid var(--line); border-radius: var(--radius); padding:16px 18px;
}
.offer-item .dot{
  flex-shrink:0; width:8px; height:8px; border-radius:50%; background:var(--blue); margin-top:7px;
}
.offer-item p{ font-size:14.5px; font-weight:600; color: var(--navy-ink); }

.logo-wall{
  display:flex; flex-wrap:wrap; align-items:center; gap: 30px 46px;
}
.logo-wall img{
  max-height: 52px; width:auto; opacity:.8; transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.logo-wall img:hover{ opacity:1; transform: translateY(-2px); }
.logo-wall.tight img{ max-height:44px; }

.subpage-team{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; }

.testimonial-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; }
.testimonial-card{
  background: var(--white); border:1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 26px; display:flex; flex-direction:column;
}
.testimonial-card .quote-mark{ width:26px; height:26px; color: var(--blue); opacity:.5; margin-bottom:12px; }
.testimonial-card p{ font-size:14px; line-height:1.6; color: var(--grey); flex-grow:1; margin-bottom:18px; }
.testimonial-card cite{ font-style:normal; font-weight:700; font-size:14px; color: var(--navy-ink); display:block; }
.testimonial-card cite span{ display:block; font-weight:500; font-size:12.5px; color: var(--grey); margin-top:2px; }
.quote-block{
  max-width: 760px; margin: 0 auto; text-align:center; font-family: var(--font-display);
  font-size: 18.5px; color: var(--navy-ink); font-style:italic; line-height:1.55;
}
.quote-block cite{ display:block; margin-top:14px; font-size:14px; font-style:normal; font-weight:700; color: var(--blue); }

@media (max-width: 860px){
  .intro-grid{ grid-template-columns: 1fr; gap:24px; }
  .offer-list{ grid-template-columns: 1fr; }
  .subpage-team{ grid-template-columns: 1fr; }
  .testimonial-grid{ grid-template-columns: 1fr; }
}
