/* ============================================================
   AccountIf — style.css
   Design system + base + layout + section styles
   ============================================================ */

/* ---- TOKENS ---- */
:root {
  --navy:        #2E327E;
  --navy-dark:   #1a1d5c;
  --navy-light:  #EEF0FF;
  --blue:        #4FA8E6;
  --blue-light:  #E8F4FD;
  --green:       #10B981;
  --green-light: #D1FAE5;
  --amber:       #F59E0B;
  --dark:        #1E293B;
  --slate:       #64748B;
  --border:      #E2E8F0;
  --off-white:   #F1F5F9;
  --page-bg:     #F8FAFC;
  --white:       #ffffff;

  --grad-brand:  linear-gradient(180deg, #3B40A0 0%, #4FA8E6 100%);
  --grad-hero:   linear-gradient(140deg, #0f1235 0%, #1a1d5c 50%, #2E327E 100%);
  --grad-tint:   linear-gradient(135deg, #EEF0FF 0%, #E8F4FD 100%);

  --shadow-sm:   0 1px 3px rgba(46,50,126,.06), 0 1px 2px rgba(46,50,126,.04);
  --shadow-md:   0 4px 16px rgba(46,50,126,.10), 0 2px 4px rgba(46,50,126,.06);
  --shadow-lg:   0 12px 40px rgba(46,50,126,.14), 0 4px 8px rgba(46,50,126,.08);

  --radius-sm:   6px;
  --radius:      10px;
  --radius-md:   14px;
  --radius-lg:   20px;

  --font-base:   'Plus Jakarta Sans', system-ui, sans-serif;
  --nav-h:       70px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; max-width: 100%; }
body {
  font-family: var(--font-base);
  background: var(--page-bg);
  color: var(--dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-h);
  max-width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
button { cursor: pointer; font-family: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---- CONTAINER ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-pad { padding: 96px 0; }

/* ---- TYPOGRAPHY ---- */
.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--slate);
  max-width: 600px;
  line-height: 1.7;
  margin: 0 auto;
  text-align: center;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header--left { text-align: left; }
.section-header--left .section-sub { max-width: 480px; margin: 0; text-align: left; }
.section-footer { text-align: center; margin-top: 2.5rem; }
.text-link { color: var(--blue); font-weight: 600; }
.text-link:hover { text-decoration: underline; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-base);
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
.btn-sm  { padding: .5625rem 1.25rem; font-size: .875rem; }
.btn-lg  { padding: .9375rem 2.25rem; font-size: 1rem; border-radius: var(--radius-md); }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: transparent;
}
.btn-primary:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,50,126,.3);
}

/* Orange CTA — hero sections and nav */
.btn-orange {
  background: #F97316;
  color: #fff;
  border-color: transparent;
}
.btn-orange:hover {
  background: #EA6C0A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,.35);
}

.btn-secondary {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border-color: transparent;
}
.btn-ghost:hover { text-decoration: underline; }

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: border-color .25s, box-shadow .25s;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.nav-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-h);
}
.nav-logo img {
  width: 200px;
  height: auto;
  display: block;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .125rem;
  margin: 0;
  padding: 0;
  flex: 1;
  flex-wrap: nowrap;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: .625rem .875rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: background .15s, color .15s;
  position: relative;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link[aria-current="page"] { background: var(--off-white); color: var(--navy); }
.nav-chevron { font-size: .7rem; transition: transform .2s; }
.nav-item.has-mega:hover .nav-chevron,
.nav-item.has-mega:focus-within .nav-chevron,
.nav-item.has-mega.mega-open .nav-chevron { transform: rotate(180deg); }

/* Ensure has-mega is positioned so pseudo-element and menu anchor correctly */
.nav-item.has-mega { position: relative; }

/* Mega menu */
.mega-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 2px solid var(--navy);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s, transform .2s;
  transition-delay: 0s;
  z-index: 999;
}
/* Invisible bridge fills the gap between nav link and mega menu */
.nav-item.has-mega::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 16px;
  background: transparent;
}
.nav-item.has-mega:hover .mega-menu,
.nav-item.has-mega:focus-within .mega-menu,
.nav-item.has-mega.mega-open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}
/* Keep menu open when cursor is over it */
.mega-menu:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mega-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr) 240px;
  gap: 2rem;
}
.mega-inner--industries {
  grid-template-columns: repeat(auto-fill, minmax(160px,1fr));
  padding: 1.5rem 2rem;
}
.mega-heading {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--slate);
  margin-bottom: .75rem;
}
.mega-link {
  display: block;
  padding: .375rem 0;
  font-size: .875rem;
  font-weight: 500;
  color: var(--dark);
  transition: color .15s, padding-left .15s;
}
.mega-link:hover { color: var(--navy); padding-left: .25rem; }
.industry-pill {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .875rem;
  background: var(--off-white);
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--dark);
  transition: background .15s, color .15s;
}
.industry-pill:hover { background: var(--navy-light); color: var(--navy); }
.mega-cta-col { display: flex; align-items: flex-start; }
.mega-cta-card {
  background: var(--grad-tint);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid rgba(46,50,126,.12);
}
.mega-cta-title { font-weight: 700; font-size: .9rem; color: var(--navy); margin-bottom: .375rem; }
.mega-cta-text { font-size: .8125rem; color: var(--slate); margin-bottom: 1rem; line-height: 1.5; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .5rem;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 2rem 2rem;
}
.mobile-menu.is-open { display: block; }
.mobile-link {
  display: block;
  padding: .75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Mobile services accordion */
.mobile-services-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.08);
  outline: none;
  cursor: pointer;
  width: 100%;
  background: none;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}
.mobile-services-toggle .toggle-arrow {
  font-size: .75rem;
  transition: transform .2s;
  color: rgba(255,255,255,.5);
}
.mobile-services-toggle.is-open .toggle-arrow { transform: rotate(180deg); }
.mobile-sub-menu {
  display: none;
  background: rgba(255,255,255,.04);
  border-radius: 8px;
  margin: .375rem 0 .375rem .5rem;
  overflow: hidden;
}
.mobile-sub-menu.is-open { display: block; }
.mobile-sub-link {
  display: block;
  padding: .625rem 1rem;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .15s, background .15s;
}
.mobile-sub-link:last-child { border-bottom: none; }
.mobile-sub-link:hover { color: #fff; background: rgba(255,255,255,.06); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(79,168,230,.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 4rem;
  align-items: center;
}
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .375rem 1rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  font-size: .8125rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.5rem;
}
.trust-stars { color: var(--amber); letter-spacing: .05em; }
.hero-headline {
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.headline-accent {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,.78);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; gap: .2rem; }
.hero-stat-num { font-size: 1.5rem; font-weight: 700; color: var(--white); line-height: 1; }
.hero-stat-label { font-size: .75rem; color: rgba(255,255,255,.55); }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.18); }

/* Hero text classes — aliases for template compatibility */
.hero-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-title span { color: var(--blue); }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: .9375rem;
  color: rgba(255,255,255,.78);
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 540px;
}
.hero-tagline {
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 2rem;
  letter-spacing: .02em;
  white-space: nowrap;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Hero visual dashboard */
.hero-visual {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
}
.hv-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.hv-title { font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.6); }
.hv-badge { font-size: .6875rem; font-weight: 600; color: var(--green); }
.hv-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
  background: rgba(255,255,255,.05);
  border-radius: 12px;
  padding: 1rem;
}
.hv-stat-num { font-size: 1.5rem; font-weight: 800; color: #fff; }
.hv-stat-lbl { font-size: .7rem; color: rgba(255,255,255,.5); margin-top: .25rem; }
.hv-chart { margin-bottom: 1.25rem; }
.hv-chart-title { font-size: .75rem; color: rgba(255,255,255,.5); margin-bottom: .75rem; }
.hv-bars {
  display: flex;
  align-items: flex-end;
  gap: .375rem;
  height: 60px;
}
.hv-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--blue) 0%, var(--navy) 100%);
  border-radius: 4px 4px 0 0;
  opacity: .7;
}
.hv-bar:nth-child(1) { height: 45%; }
.hv-bar:nth-child(2) { height: 70%; }
.hv-bar:nth-child(3) { height: 55%; }
.hv-bar:nth-child(4) { height: 85%; }
.hv-bar:nth-child(5) { height: 65%; }
.hv-bar:nth-child(6) { height: 100%; }
.hv-tasks { display: flex; flex-direction: column; gap: .5rem; }
.hv-task {
  display: flex;
  align-items: center;
  gap: .625rem;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  padding: .5rem .75rem;
}
.hv-task-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-green { background: var(--green); }
.dot-blue  { background: var(--blue); }
.dot-amber { background: var(--amber); }
.hv-task-label { font-size: .8125rem; color: rgba(255,255,255,.8); flex: 1; }
.hv-task-status {
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .5rem;
  border-radius: 4px;
}
.status-done { background: rgba(16,185,129,.2); color: var(--green); }
.status-live { background: rgba(79,168,230,.2); color: var(--blue); }
.status-prog { background: rgba(245,158,11,.2); color: var(--amber); }

/* Dashboard card */
.dashboard-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
}
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.dashboard-title {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
}
.dashboard-live {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .6875rem;
  font-weight: 600;
  color: var(--green);
}
.live-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}
.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.metric-card {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: .875rem .75rem;
}
.metric-label { font-size: .6875rem; color: rgba(255,255,255,.5); font-weight: 500; }
.metric-value { font-size: 1.0625rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.metric-change { font-size: .6875rem; font-weight: 600; }
.metric-change.positive { color: var(--green); }

.dashboard-chart { margin-bottom: 1.25rem; }
.chart-svg { width: 100%; height: 80px; }
.chart-line { stroke-dasharray: 600; stroke-dashoffset: 600; animation: draw-line 1.8s ease forwards .5s; }
@keyframes draw-line { to { stroke-dashoffset: 0; } }
.chart-fill { opacity: 0; animation: fade-in-fill .8s ease forwards 2s; }
@keyframes fade-in-fill { to { opacity: 1; } }
.chart-dot { opacity: 0; animation: fade-in-fill .3s ease forwards 2.2s; }

.dashboard-vat { margin-bottom: 1rem; }
.vat-row { display: flex; justify-content: space-between; margin-bottom: .375rem; }
.vat-label { font-size: .6875rem; color: var(--blue); font-weight: 600; }
.vat-pct { font-size: .6875rem; font-weight: 700; color: var(--white); }
.vat-bar-track {
  height: 6px;
  background: rgba(255,255,255,.1);
  border-radius: 3px;
  overflow: hidden;
}
.vat-bar-fill {
  height: 100%;
  background: var(--blue);
  border-radius: 3px;
  width: 0;
  animation: bar-grow 1.4s ease forwards 1s;
}
@keyframes bar-grow { to { width: 100%; } }
.dashboard-sync {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .6875rem;
  color: rgba(255,255,255,.4);
}
.sync-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }

/* ============================================================
   TRUSTED BY
   ============================================================ */
.trusted-by {
  background: var(--white);
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.trusted-label {
  text-align: center;
  font-size: .8125rem;
  color: var(--slate);
  font-weight: 500;
  margin-bottom: 1.25rem;
  letter-spacing: .04em;
}
.logo-strip { overflow: hidden; mask-image: linear-gradient(90deg,transparent,black 10%,black 90%,transparent); }
.logo-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: logoTrackScroll 28s linear infinite;
}
@keyframes logoTrackScroll { to { transform: translateX(-50%); } }
.client-logo {
  display: flex;
  align-items: center;
  padding: .5rem 1.5rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .8125rem;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: .06em;
  white-space: nowrap;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-overview { background: var(--white); }
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.services-grid .svc-card {
  flex: 0 1 calc(33.333% - 1rem);
  min-width: 260px;
}
/* Centre the bottom 2 cards in a 5-card grid */
.services-grid .svc-card:nth-child(4),
.services-grid .svc-card:nth-child(5) {
  flex: 0 1 calc(33.333% - 1rem);
  transform: none;
  margin-left: 0;
}
.services-grid .svc-hub-card {
  flex: 0 1 calc(33.333% - 1rem);
  min-width: 260px;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: .625rem;
  text-decoration: none;
  color: inherit;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-tint);
  opacity: 0;
  transition: opacity .25s;
  border-radius: inherit;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.service-card:hover::before { opacity: 1; }
.service-card:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .5rem;
  position: relative;
}
.service-icon--navy { background: var(--navy-light); color: var(--navy); }
.service-icon--blue { background: var(--blue-light); color: var(--blue); }
.service-icon--green { background: var(--green-light); color: var(--green); }
.service-name { font-size: 1.0625rem; font-weight: 700; color: var(--dark); position: relative; }
.service-desc { font-size: .875rem; color: var(--slate); line-height: 1.65; position: relative; flex: 1; }
.service-arrow {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-size: 1.25rem;
  color: var(--blue);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity .2s, transform .2s;
}
.service-card:hover .service-arrow { opacity: 1; transform: translate(0,0); }
.services-footer { text-align: center; margin-top: 2.5rem; }

/* ============================================================
   WHY ACCOUNTIF
   ============================================================ */
.why-section { background: var(--grad-tint); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 5rem;
  align-items: start;
}
.why-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }
.why-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.why-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--grad-brand);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700;
  margin-top: .125rem;
}
.why-item-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .25rem; }
.why-item-desc { font-size: .875rem; color: var(--slate); line-height: 1.6; }

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.stat-block {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .375rem;
}
.stat-block--accent { background: var(--grad-brand); }
.stat-block--accent .stat-num,
.stat-block--accent .stat-label { color: var(--white); }
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat-suffix { font-size: 1.25rem; font-weight: 700; color: var(--navy); }
.stat-block--accent .stat-suffix { color: var(--white); }
.stat-label { font-size: .8rem; color: var(--slate); font-weight: 500; }

.why-logos {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.software-badge {
  padding: .375rem .875rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--navy);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section { background: var(--white); }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 2.5rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .625rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  position: relative;
}
.process-connector {
  flex-shrink: 0;
  width: 3rem;
  height: 2px;
  background: var(--border);
  margin-top: 3rem;
  position: relative;
}
.process-connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: var(--blue);
}
.process-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .25rem;
}
.process-icon--1 { background: var(--navy-light); color: var(--navy); }
.process-icon--2 { background: var(--blue-light); color: var(--blue); }
.process-icon--3 { background: var(--green-light); color: var(--green); }
.process-icon--4 { background: #FEF3C7; color: #92400E; }
.process-step-num {
  font-size: .6875rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.process-title { font-size: 1rem; font-weight: 700; color: var(--dark); }
.process-desc { font-size: .875rem; color: var(--slate); line-height: 1.6; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-section { background: var(--off-white); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .625rem;
  padding: 1.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s, color .2s;
}
.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
  color: var(--navy);
}
.industry-card:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.industry-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--navy-light);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.industry-card:hover .industry-card-icon { background: var(--blue-light); color: var(--blue); }

/* ============================================================
   STATS BANNER
   ============================================================ */
.stats-banner {
  background: var(--dark);
  padding: 5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.stats-prefix { font-size: 1.25rem; font-weight: 800; color: var(--white); }
.stats-num { font-size: 2.75rem; font-weight: 800; color: var(--white); line-height: 1; }
.stats-suffix { font-size: 1.5rem; font-weight: 700; color: var(--blue); }
.stats-label { font-size: .875rem; color: rgba(255,255,255,.5); font-weight: 500; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--white); }
.google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: .75rem;
}
.rating-stars { color: var(--amber); letter-spacing: .1em; }
.rating-score { font-weight: 700; font-size: .9375rem; color: var(--dark); }
.rating-count { font-size: .875rem; color: var(--slate); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  border-left: 4px solid var(--blue);
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-card:nth-child(2) { border-left-color: var(--green); }
.testimonial-card:nth-child(3) { border-left-color: var(--navy); }
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.testimonial-stars { color: var(--amber); font-size: 1rem; letter-spacing: .1em; }
.testimonial-text {
  font-size: .9375rem;
  color: var(--dark);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: .875rem; margin-top: auto; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .8125rem; font-weight: 700;
  flex-shrink: 0;
}
.author-avatar--green { background: var(--green); }
.author-avatar--blue { background: var(--blue); }
.author-name { display: block; font-size: .9rem; font-weight: 700; color: var(--dark); font-style: normal; }
.author-role { display: block; font-size: .8rem; color: var(--slate); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section { background: var(--off-white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: box-shadow .2s;
}
.pricing-card:hover { box-shadow: var(--shadow-md); }
.pricing-card--featured {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow-md);
}
.plan-badge {
  position: absolute;
  top: -1px; right: 1.5rem;
  background: var(--blue);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .875rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.plan-name { font-size: 1.125rem; font-weight: 700; color: var(--dark); }
.plan-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: .125rem;
}
.plan-price--custom { font-size: 1.75rem; }
.plan-currency { font-size: 1.25rem; font-weight: 600; align-self: flex-start; margin-top: .5rem; }
.plan-period { font-size: 1rem; font-weight: 400; color: var(--slate); margin-left: .25rem; }
.plan-desc { font-size: .875rem; color: var(--slate); line-height: 1.6; }
.plan-features {
  display: flex;
  flex-direction: column;
  gap: .625rem;
  flex: 1;
}
.plan-feature { display: flex; align-items: flex-start; gap: .625rem; font-size: .875rem; color: var(--dark); line-height: 1.5; }
.feature-check { color: var(--green); font-weight: 700; flex-shrink: 0; }
.pricing-note {
  text-align: center;
  font-size: .9rem;
  color: var(--slate);
  margin-top: 1.5rem;
}

/* ============================================================
   INSIGHTS
   ============================================================ */
.insights-section { background: var(--white); }
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.insight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  color: inherit;
}
.insight-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.insight-tag {
  display: inline-block;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 999px;
}
.insight-tag--navy { background: var(--navy-light); color: var(--navy); }
.insight-tag--blue { background: var(--blue-light); color: #0C447C; }
.insight-tag--green { background: var(--green-light); color: #065F46; }
.insight-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
}
.insight-excerpt { font-size: .875rem; color: var(--slate); line-height: 1.65; flex: 1; }
.insight-meta { display: flex; justify-content: space-between; align-items: center; }
.insight-read, .insight-date { font-size: .8rem; color: var(--slate); font-weight: 500; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--off-white); }
.faq-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 5rem;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--dark);
  background: none;
  border: none;
  text-align: left;
  transition: color .15s;
}
.faq-question:hover { color: var(--navy); }
.faq-question[aria-expanded="true"] { color: var(--navy); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); color: var(--blue); }
.faq-icon { font-size: 1.25rem; color: var(--blue); transition: transform .25s; flex-shrink: 0; }
.faq-answer {
  padding: 0 1.25rem 1.125rem;
  font-size: .9rem;
  color: var(--slate);
  line-height: 1.7;
}
.faq-answer[hidden] { display: none; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--grad-brand);
  padding: 6rem 0;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
}
.cta-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.cta-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.newsletter-block {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}
.newsletter-label { font-size: .875rem; color: rgba(255,255,255,.75); margin-bottom: 1rem; line-height: 1.5; }
.newsletter-form { display: flex; gap: .5rem; }
.newsletter-form input[type="email"] {
  flex: 1;
  padding: .625rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-family: var(--font-base);
  font-size: .875rem;
}
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,.45); }
.newsletter-form input[type="email"]:focus {
  outline: 2px solid rgba(255,255,255,.6);
  outline-offset: 2px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding-top: 4rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
}
.footer-logo { display: block; width: 200px; height: auto; object-fit: contain; }
.footer-tagline {
  font-size: .875rem;
  color: #111;
  line-height: 1.65;
  margin: 1rem 0;
}
.footer-social { display: flex; gap: .625rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--slate);
  transition: border-color .2s, color .2s, background .2s;
}
.social-link:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.footer-col-title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--dark);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a {
  font-size: .875rem;
  color: #111;
  transition: color .15s;
}
.footer-col a:hover { color: var(--navy); }
.footer-badges { display: flex; flex-direction: column; gap: .375rem; margin-top: 1rem; }
.footer-badge {
  display: inline-block;
  width: fit-content;
  padding: .25rem .75rem;
  background: rgba(79,168,230,.08);
  border: 1px solid rgba(79,168,230,.2);
  border-radius: 999px;
  font-size: .6875rem;
  font-weight: 600;
  color: var(--blue);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .8rem; color: #111; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .8rem; color: #111; transition: color .15s; }
.footer-legal a:hover { color: var(--navy); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: var(--grad-brand);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform .2s, opacity .2s;
  z-index: 900;
  cursor: pointer;
}
.back-to-top:hover { transform: translateY(-3px); }
.back-to-top[hidden] { display: none; }


/* ============================================================
   HOMEPAGE SECTION STYLES (from index.html inline styles)
   ============================================================ */


/* ── NAV ── */
.mega-menu { min-width: 520px; }

/* ── HERO ── */
.hero {
  background: var(--grad-hero);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  min-width: 0;
}
.hero-inner > * {
  min-width: 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(1.875rem, 3.5vw, 2.875rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-title span { color: var(--blue); }
.hero-sub {
  font-size: .9375rem;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: .875rem;
  max-width: 520px;
}
.hero-tagline {
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: .375rem;
  white-space: nowrap;
}
.hero-tagline::before { content: ''; display: inline-block; width: 16px; height: 2px; background: var(--blue); flex-shrink: 0; }
.hero-buttons { display: flex; gap: .875rem; flex-wrap: wrap; }

/* animated dashboard */
.hero-visual {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  padding: 1.75rem;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
.hv-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.hv-title { font-size: .8125rem; font-weight: 700; color: rgba(255,255,255,.9); }
.hv-badge {
  font-size: .65rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 999px;
  background: rgba(16,185,129,.2);
  color: #34D399;
}
.hv-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .875rem;
  margin-bottom: 1.5rem;
}
.hv-stat {
  background: rgba(255,255,255,.07);
  border-radius: 12px;
  padding: .875rem;
  text-align: center;
}
.hv-stat-num {
  font-size: 1.375rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: .25rem;
}
.hv-stat-lbl { font-size: .65rem; color: rgba(255,255,255,.5); }
.hv-chart { margin-bottom: 1.25rem; }
.hv-chart-title { font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.5); margin-bottom: .75rem; text-transform: uppercase; letter-spacing: .06em; }
.hv-bars { display: flex; align-items: flex-end; gap: .375rem; height: 72px; }
.hv-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  animation: barGrow 1.2s ease-out forwards;
  transform-origin: bottom;
}
@keyframes barGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.hv-bar:nth-child(1) { background: rgba(79,168,230,.4); height: 45%; animation-delay: .1s; }
.hv-bar:nth-child(2) { background: rgba(79,168,230,.5); height: 60%; animation-delay: .2s; }
.hv-bar:nth-child(3) { background: rgba(79,168,230,.5); height: 52%; animation-delay: .3s; }
.hv-bar:nth-child(4) { background: rgba(79,168,230,.6); height: 75%; animation-delay: .4s; }
.hv-bar:nth-child(5) { background: rgba(79,168,230,.7); height: 65%; animation-delay: .5s; }
.hv-bar:nth-child(6) { background: rgba(46,50,126,.9);  height: 88%; animation-delay: .6s; }
.hv-tasks { display: flex; flex-direction: column; gap: .5rem; }
.hv-task {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .75rem;
  color: rgba(255,255,255,.75);
  padding: .5rem .75rem;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
}
.hv-task-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-green { background: #34D399; }
.dot-blue  { background: var(--blue); }
.dot-amber { background: #FBBF24; }
.hv-task-label { flex: 1; }
.hv-task-status {
  font-size: .65rem;
  font-weight: 700;
  padding: .15rem .5rem;
  border-radius: 999px;
}
.status-done  { background: rgba(52,211,153,.15); color: #34D399; }
.status-live  { background: rgba(79,168,230,.15); color: var(--blue); }
.status-prog  { background: rgba(251,191,36,.15);  color: #FBBF24; }

/* ── TRUSTED BY ── */
.trusted-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}
.trusted-inner {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  will-change: transform;
}
.trusted-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--slate);
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0 2rem;
}
.trusted-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  border-left: 1px solid var(--border);
  flex-shrink: 0;
  opacity: .85;
  transition: opacity .2s;
}
.trusted-item:hover { opacity: 1; }
.trusted-item img {
  height: 36px;
  width: auto;
  max-width: 140px;
  display: block;
  object-fit: contain;
}
/* ── ABOUT ── */
.about-section { background: #fff; padding: 96px 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual {
  background: var(--grad-tint);
  border-radius: 20px;
  padding: 2.25rem;
  border: 1px solid rgba(46,50,126,.1);
}
.av-principle {
  display: flex;
  gap: .875rem;
  align-items: flex-start;
  padding: .875rem 0;
  border-bottom: 1px solid rgba(46,50,126,.08);
}
.av-principle:last-child { border-bottom: none; padding-bottom: 0; }
.av-num {
  font-size: .65rem;
  font-weight: 800;
  color: var(--blue);
  background: var(--blue-light);
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.av-title { font-size: .9375rem; font-weight: 700; color: var(--dark); margin-bottom: .2rem; }
.av-desc  { font-size: .8125rem; color: var(--slate); line-height: 1.6; }

/* ── SERVICES ── */
.services-section { background: var(--off-white); padding: 96px 0; }
.services-grid { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.svc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.si-navy  { background: var(--navy-light); color: var(--navy); }
.si-blue  { background: var(--blue-light); color: var(--blue); }
.si-green { background: var(--green-light); color: var(--green); }
.si-amber { background: #FEF3C7; color: #92400E; }
.svc-name { font-size: 1.0625rem; font-weight: 700; color: var(--dark); }
.svc-desc { font-size: .875rem; color: var(--slate); line-height: 1.7; flex: 1; }
.svc-link { font-size: .875rem; font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: .375rem; margin-top: .25rem; }
.svc-link:hover { text-decoration: underline; }

/* ── WHY US ── */
.why-section { background: #fff; padding: 96px 0; }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.why-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.375rem;
  transition: box-shadow .2s;
}
.why-card:hover { box-shadow: var(--shadow-md); }
.why-icon { font-size: 1.5rem; margin-bottom: .625rem; }
.why-title { font-size: .9375rem; font-weight: 700; color: var(--dark); margin-bottom: .375rem; }
.why-desc  { font-size: .8125rem; color: var(--slate); line-height: 1.6; }

/* ── WHO WE SERVE ── */
.serve-section { background: var(--grad-hero); padding: 96px 0; }
.serve-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.serve-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 1.5rem;
  transition: background .2s;
}
.serve-card:hover { background: rgba(255,255,255,.12); }
.serve-icon { font-size: 1.75rem; margin-bottom: .75rem; }
.serve-title { font-size: .9375rem; font-weight: 700; color: #fff; margin-bottom: .375rem; }
.serve-desc  { font-size: .8125rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ── PROCESS ── */
.process-section { background: var(--off-white); padding: 96px 0; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.proc-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.proc-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-md);
}
.proc-title { font-size: .9375rem; font-weight: 700; color: var(--dark); margin-bottom: .375rem; }
.proc-desc  { font-size: .8rem; color: var(--slate); line-height: 1.6; }

/* ── OUTSOURCING ── */
.outsource-section { background: #fff; padding: 96px 0; }
.outsource-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.outsource-benefits { display: flex; flex-direction: column; gap: .75rem; margin: 1.5rem 0; }
.ob-item { display: flex; align-items: flex-start; gap: .75rem; font-size: .9375rem; color: var(--dark); }
.ob-check { color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: .05rem; }
.outsource-visual {
  background: var(--grad-tint);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(46,50,126,.1);
}
.ov-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--slate); margin-bottom: 1rem; }
.ov-items { display: flex; flex-direction: column; gap: .625rem; }
.ov-item {
  display: flex; align-items: center; gap: .875rem;
  background: #fff; border-radius: 10px; padding: .875rem 1rem;
  box-shadow: var(--shadow-sm); font-size: .875rem; font-weight: 600; color: var(--dark);
}
.ov-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* ── TECH ── */
.tech-section { background: var(--off-white); padding: 64px 0; }
.tech-grid { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 2rem; }
.tech-card {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: .875rem 1.5rem; font-size: .9375rem; font-weight: 700; color: var(--dark);
  display: flex; align-items: center; gap: .625rem;
  transition: box-shadow .2s, border-color .2s;
}
.tech-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue); }
.tech-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }

/* ── STATS ── */
.stats-section { background: var(--grad-brand); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-item { text-align: center; }
.stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: .375rem;
}
.stat-lbl { font-size: .875rem; color: rgba(255,255,255,.65); }

/* ── FAQ ── */
.faq-section { background: var(--off-white); padding: 96px 0; }
.faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

/* ── CTA ── */
.cta-section {
  background: var(--grad-hero);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.cta-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.cta-title { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 1rem; }
.cta-sub   { font-size: .9375rem; color: rgba(255,255,255,.72); line-height: 1.75; margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: .875rem; flex-wrap: wrap; }
.newsletter-block { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 2rem; }
.newsletter-label { font-size: .875rem; color: rgba(255,255,255,.75); margin-bottom: 1rem; line-height: 1.6; }
.newsletter-form { display: flex; gap: .625rem; }
.newsletter-form input {
  flex: 1; padding: .6875rem 1rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,.1);
  color: #fff; font-family: var(--font-base); font-size: .9rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.45); }
.newsletter-form input:focus { outline: none; border-color: var(--blue); }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .hero-inner, .about-inner, .why-inner, .outsource-inner, .cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .serve-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr 1fr; }
  .process-steps::before { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .faq-cols { grid-template-columns: 1fr; }
}
@media(max-width:768px) {
  .services-grid, .why-grid, .serve-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-buttons, .cta-buttons { flex-direction: column; }
  .newsletter-form { flex-direction: column; }
}
@media(max-width:480px) {
  .process-steps, .stats-grid { grid-template-columns: 1fr; }
}
  
/* ── FRONT-PAGE.PHP CLASS ALIASES ── */
/* Why section cards */
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.why-card { background: var(--off-white); border: 1px solid var(--border); border-radius: 14px; padding: 1.375rem; }
.wc-num { font-size: .65rem; font-weight: 800; color: var(--blue); background: var(--blue-light); width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: .625rem; }
.wc-title { font-size: .9375rem; font-weight: 700; color: var(--dark); margin-bottom: .375rem; }
.wc-desc  { font-size: .8125rem; color: var(--slate); line-height: 1.6; }

/* Who we serve — list style used in front-page.php */
.serve-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.serve-item { display: flex; align-items: flex-start; gap: .625rem; font-size: .9375rem; font-weight: 500; color: rgba(255,255,255,.85); }
.serve-check { color: var(--green); font-weight: 700; flex-shrink: 0; }

/* Process steps */
.process-step { text-align: center; padding: 2.5rem 1.25rem 1.5rem; background: #fff; border: 1px solid var(--border); border-radius: 14px; position: relative; }
.ps-num { width: 52px; height: 52px; border-radius: 50%; background: var(--grad-brand); color: #fff; font-size: 1rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.ps-title { font-size: .9375rem; font-weight: 700; color: var(--dark); margin-bottom: .375rem; }
.ps-desc  { font-size: .8125rem; color: var(--slate); line-height: 1.6; }

/* Stats */
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-item { text-align: center; }
.stat-num { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; line-height: 1; margin-bottom: .375rem; }
.stat-label { font-size: .875rem; color: rgba(255,255,255,.65); }

/* Resources / blog cards */
.resources-section { background: #fff; padding: 80px 0; }
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.resource-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; }
.resource-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.rc-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.rc-title { font-size: 1rem; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: .625rem; }
.rc-title a { color: inherit; }
.rc-title a:hover { color: var(--blue); }
.rc-excerpt { font-size: .875rem; color: var(--slate); line-height: 1.65; flex: 1; }
.rc-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--border); }
.rc-link { font-size: .875rem; font-weight: 700; color: var(--blue); }
.rc-link:hover { text-decoration: underline; }

/* Responsive additions */
@media(max-width:1024px) {
  .why-cards { grid-template-columns: 1fr 1fr; }
  .serve-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .resources-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:768px) {
  .why-cards, .serve-grid, .resources-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}
@media(max-width:480px) {
  .stats-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   WORDPRESS ENTRY CONTENT STYLES
   Styles for blog post / page content from the block editor
   ============================================================ */
.entry-content ul,
.entry-content ol {
  padding-left: 1.5rem;
  margin: 1rem 0 1.25rem;
  display: block;
}
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content ul ul { list-style: circle; margin: .375rem 0 .375rem 1rem; }
.entry-content li {
  font-size: .9375rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: .375rem;
  display: list-item;
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  color: var(--dark);
  font-weight: 700;
  line-height: 1.3;
  margin: 1.75rem 0 .75rem;
}
.entry-content h2 { font-size: 1.5rem; }
.entry-content h3 { font-size: 1.25rem; }
.entry-content h4 { font-size: 1.0625rem; }
.entry-content p {
  font-size: .9375rem;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.entry-content a { color: var(--blue); text-decoration: underline; }
.entry-content a:hover { color: var(--navy); }
.entry-content strong, .entry-content b { font-weight: 700; color: var(--dark); }
.entry-content em, .entry-content i { font-style: italic; }
.entry-content blockquote {
  border-left: 4px solid var(--blue);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--off-white);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--slate);
}
.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 1rem 0;
}
.entry-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: .875rem;
}
.entry-content th,
.entry-content td {
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  text-align: left;
}
.entry-content th {
  background: var(--off-white);
  font-weight: 700;
  color: var(--dark);
}
.entry-content code {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: .125rem .375rem;
  font-size: .875em;
  font-family: monospace;
}
.entry-content pre {
  background: var(--navy);
  color: #e2e8f0;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}
.entry-content pre code {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
}

/* WordPress caption and figure */
.entry-content figure { margin: 1.5rem 0; }
.entry-content figcaption {
  font-size: .8125rem;
  color: #94A3B8;
  text-align: center;
  margin-top: .5rem;
}

/* WordPress block: separator */
.entry-content .wp-block-separator {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

/* ============================================================
   WORDPRESS BLOCK EDITOR — LIST & CONTENT FIX
   Target both classic and block editor output classes
   ============================================================ */

/* Block editor wraps lists in .wp-block-list */
.entry-content .wp-block-list,
.entry-content ul,
.entry-content ol {
  padding-left: 1.75rem !important;
  margin: .75rem 0 1.25rem !important;
  display: block !important;
}
.entry-content ul,
.entry-content .wp-block-list:not(ol) {
  list-style: disc !important;
}
.entry-content ol {
  list-style: decimal !important;
}
.entry-content li,
.entry-content .wp-block-list li {
  display: list-item !important;
  font-size: .9375rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: .375rem;
}

/* Block editor paragraph */
.entry-content .wp-block-paragraph,
.entry-content p {
  font-size: .9375rem;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Block editor headings */
.entry-content .wp-block-heading,
.entry-content h1, .entry-content h2,
.entry-content h3, .entry-content h4,
.entry-content h5, .entry-content h6 {
  color: var(--dark);
  font-weight: 700;
  line-height: 1.3;
  margin: 1.75rem 0 .75rem;
}
.entry-content h2, .entry-content .wp-block-heading h2 { font-size: 1.5rem; }
.entry-content h3, .entry-content .wp-block-heading h3 { font-size: 1.25rem; }
.entry-content h4 { font-size: 1.0625rem; }

/* Block editor image */
.entry-content .wp-block-image img,
.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 1rem 0;
  display: block;
}

/* Block editor quote */
.entry-content .wp-block-quote,
.entry-content blockquote {
  border-left: 4px solid var(--blue);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--off-white);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--slate);
}

/* Block editor table */
.entry-content .wp-block-table table,
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: .875rem;
}
.entry-content .wp-block-table td,
.entry-content .wp-block-table th,
.entry-content td,
.entry-content th {
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  text-align: left;
}
.entry-content .wp-block-table th,
.entry-content th {
  background: var(--off-white);
  font-weight: 700;
  color: var(--dark);
}

/* Block editor code */
.entry-content .wp-block-code,
.entry-content pre {
  background: var(--navy);
  color: #e2e8f0;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}
.entry-content code {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: .125rem .375rem;
  font-size: .875em;
  font-family: monospace;
}

/* Block separator */
.entry-content .wp-block-separator,
.entry-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

/* Buttons in content */
.entry-content .wp-block-button__link {
  background: var(--grad-brand);
  color: #fff;
  padding: .75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}


/* ============================================================
   ABOUT PAGE STYLES (from about.html inline styles)
   ============================================================ */


/* ── HERO ── */
.about-hero {
  background: var(--grad-hero);
  padding: 6rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 28px 28px;
}
.about-hero-content { position: relative; z-index: 1; }
.about-hero-title {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.about-hero-sub {
  font-size: .9375rem;
  color: rgba(255,255,255,.72);
  max-width: 660px;
  margin: 0 auto 1rem;
  line-height: 1.8;
}

/* ── SHARED SECTION ── */
.about-section { padding: 80px 0; border-bottom: 1px solid var(--border); }
.about-section:last-of-type { border-bottom: none; }
.about-section--alt { background: var(--off-white); }
.about-section--dark { background: var(--navy); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}
.about-inner--rev { direction: rtl; }
.about-inner--rev > * { direction: ltr; }

.about-h2 {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: .875rem;
}
.about-h2--light { color: #fff; }
.about-p {
  font-size: .9375rem;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-p:last-child { margin-bottom: 0; }
.about-p--light { color: rgba(255,255,255,.72); }

/* ── WHO WE ARE visual ── */
.wwa-visual {
  background: var(--grad-tint);
  border: 1px solid rgba(46,50,126,.1);
  border-radius: 20px;
  padding: 2rem;
}
.wwa-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--slate);
  margin-bottom: 1rem;
}
.wwa-items { display: flex; flex-direction: column; gap: .625rem; }
.wwa-item {
  display: flex;
  align-items: center;
  gap: .875rem;
  background: #fff;
  border-radius: 10px;
  padding: .875rem 1rem;
  box-shadow: var(--shadow-sm);
  font-size: .875rem;
  font-weight: 600;
  color: var(--dark);
}
.wwa-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.wwa-note {
  margin-top: 1.25rem;
  background: rgba(255,255,255,.85);
  border-radius: 10px;
  padding: 1rem 1.125rem;
  font-size: .8125rem;
  color: var(--slate);
  line-height: 1.6;
  border-left: 3px solid var(--blue);
}

/* ── PURPOSE ── */
.purpose-visual {
  background: var(--grad-brand);
  border-radius: 20px;
  padding: 2.25rem;
}
.pv-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
}
.pv-items { display: flex; flex-direction: column; gap: .875rem; }
.pv-item {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  background: rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 1rem 1.125rem;
}
.pv-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.15);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.pv-text { font-size: .875rem; color: rgba(255,255,255,.85); line-height: 1.6; }

/* ── APPROACH ── */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.approach-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  transition: box-shadow .2s, border-color .2s;
}
.approach-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.ac-num {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .625rem;
}
.ac-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
}
.ac-desc {
  font-size: .875rem;
  color: var(--slate);
  line-height: 1.65;
}

/* ── WHO WE SUPPORT ── */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.support-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: .875rem 1rem;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
}
.si-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* ── WHY CLIENTS ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .875rem 1rem;
  font-size: .875rem;
  color: var(--dark);
  line-height: 1.5;
}
.wi-check { color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: .05rem; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.cta-band-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-band-title { font-size: clamp(1.5rem,3vw,2rem); font-weight: 800; color: #fff; margin-bottom: .875rem; }
.cta-band-sub   { font-size: .9375rem; color: rgba(255,255,255,.7); line-height: 1.8; margin-bottom: 2rem; }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-inner--rev { direction: ltr; }
  .approach-grid { grid-template-columns: 1fr 1fr; }
  .support-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:768px) {
  .approach-grid, .support-grid, .why-grid { grid-template-columns: 1fr; }
}
  
/* ── BREADCRUMB ── */
.breadcrumb { background: var(--off-white); border-bottom: 1px solid var(--border); padding: .875rem 0; }
.breadcrumb-list { display: flex; align-items: center; gap: .5rem; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.breadcrumb-item { font-size: .8125rem; color: var(--slate); }
.breadcrumb-item a { color: var(--blue); font-weight: 500; }
.breadcrumb-item a:hover { text-decoration: underline; }
.breadcrumb-item.active { color: var(--dark); font-weight: 600; }
.breadcrumb-sep { color: var(--slate); font-size: .75rem; opacity: .5; }

/* ── SP-HERO (used on all inner pages) ── */
.sp-hero { background: var(--grad-hero); padding: 6rem 0 4rem; position: relative; overflow: hidden; text-align: center; }
.sp-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.045) 1px, transparent 1px); background-size: 28px 28px; }
.sp-hero-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.sp-hero-title { font-size: clamp(1.875rem,3.5vw,2.75rem); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 1rem; }
.sp-hero-sub { font-size: .9375rem; color: rgba(255,255,255,.72); line-height: 1.8; margin-bottom: 1rem; max-width: 680px; margin-left: auto; margin-right: auto; }

/* ── CONTACT FORM ── */
.form-group { display: flex; flex-direction: column; gap: .375rem; }
.form-label { font-size: .8125rem; font-weight: 600; color: var(--dark); }
.form-control { width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--border); border-radius: 10px; font-size: .9375rem; font-family: inherit; color: var(--dark); background: #fff; transition: border-color .15s, box-shadow .15s; outline: none; }
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(79,168,230,.15); }
.form-control::placeholder { color: #94A3B8; }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }

/* ── HOW IT WORKS PAGE ── */
.hiw-step { padding: 60px 0; border-bottom: 1px solid var(--border); }
.hiw-step:last-child { border-bottom: none; }

/* ── INDUSTRIES PAGE ── */
.ind-section { padding: 60px 0; border-bottom: 1px solid var(--border); }
.ind-section:last-child { border-bottom: none; }

/* ── SERVICES HUB ── */
.svc-hub-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 2rem; display: flex; flex-direction: column; gap: .875rem; transition: transform .2s, box-shadow .2s, border-color .2s; }
.svc-hub-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue); }

/* ── COUNTER (stats section) ── */
.counter { display: inline-block; }

/* ── PROCESS STEPS (5-step with connecting line) ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  position: relative;
  margin-top: 2.5rem;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.proc-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.proc-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-md);
}
.proc-title { font-size: .9375rem; font-weight: 700; color: var(--dark); margin-bottom: .375rem; }
.proc-desc  { font-size: .8rem; color: var(--slate); line-height: 1.6; }

@media(max-width:1024px) {
  .process-steps { grid-template-columns: 1fr 1fr 1fr; }
  .process-steps::before { display: none; }
}
@media(max-width:768px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
}
@media(max-width:480px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ── PAGINATION ──────────────────────────────────────────────────────────── */
.pagination,
.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.pagination .page-numbers,
.pagination .nav-links .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 .875rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--dark);
  background: #fff;
  transition: all .15s;
  text-decoration: none;
}
.pagination .page-numbers:hover,
.pagination .nav-links .page-numbers:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
}
.pagination .page-numbers.current,
.pagination .nav-links .page-numbers.current {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.pagination .page-numbers.dots,
.pagination .nav-links .page-numbers.dots {
  border: none;
  background: none;
  color: var(--slate);
}
.pagination .prev,
.pagination .next,
.pagination .nav-links .prev,
.pagination .nav-links .next {
  padding: 0 1.125rem;
  color: var(--navy);
  border-color: var(--navy);
}
.pagination .prev:hover,
.pagination .next:hover,
.pagination .nav-links .prev:hover,
.pagination .nav-links .next:hover {
  background: var(--navy);
  color: #fff;
}

/* ── HERO PROCESS CARD ───────────────────────────────────────────────────── */
.hv-process-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  padding: 2rem;
}
.hv-process-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .375rem;
  line-height: 1.3;
}
.hv-process-sub {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.75rem;
}
.hv-process-steps {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1.75rem;
}
.hv-proc-step {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .625rem;
}
.hv-proc-num {
  font-size: .75rem;
  font-weight: 800;
  color: var(--blue);
  background: rgba(79,168,230,.15);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hv-proc-icon {
  color: rgba(255,255,255,.7);
}
.hv-proc-label {
  font-size: .8125rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.hv-proc-desc {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  line-height: 1.4;
}
.hv-proc-arrow {
  font-size: 1.5rem;
  color: rgba(255,255,255,.3);
  flex-shrink: 0;
  margin-top: 2.5rem;
}
.hv-process-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .875rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hv-feat {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.65);
}
.hv-feat svg { flex-shrink: 0; }
.hv-feat-dot { color: rgba(255,255,255,.25); font-size: .5rem; }

/* ── TEAM SECTION ────────────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
  padding: 2.5rem 1.75rem 2rem;
}
.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--navy);
  margin: 0 auto 1.25rem;
  border: 4px solid var(--blue-light);
  flex-shrink: 0;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.team-photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-brand);
}
.team-info {
  flex: 1;
}
.team-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .25rem;
}
.team-role {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .875rem;
}
.team-bio {
  font-size: .875rem;
  color: var(--slate);
  line-height: 1.7;
  text-align: left;
}

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

/* ── 404 SEARCH FORM ─────────────────────────────────────────────────────── */
.error-search-form input[type="search"]::placeholder { color: rgba(255,255,255,.55); }
.error-search-form input[type="search"]:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(255,255,255,.14);
}
