/* =============================================================
   ENTERSLICE IPO PAGES — MASTER STYLESHEET v3
   Bootstrap 5.3 · Font Awesome 6.6 · Plus Jakarta Sans
   Unified design system for all 17 service pages
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,opsz,wght@0,6..18,300..800;1,6..18,300..800&display=swap');

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --es-blue:        #2563EB;
  --es-blue-d:      #1d4ed8;
  --es-blue-l:      #3b82f6;
  --es-blue-xl:     #60a5fa;
  --es-blue-50:     #eff6ff;
  --es-blue-100:    #dbeafe;
  --es-blue-200:    #bfdbfe;
  --es-blue-glow:   rgba(37,99,235,.12);
  --es-dark:        #0c111d;
  --es-dark-2:      #161b2e;
  --es-dark-3:      #1e2640;
  --es-text:        #0f172a;
  --es-text-2:      #334155;
  --es-text-3:      #64748b;
  --es-text-4:      #94a3b8;
  --es-white:       #fff;
  --es-off:         #f8fafc;
  --es-gray:        #f1f5f9;
  --es-border:      #e2e8f0;
  --es-border-2:    #cbd5e1;
  --es-green:       #059669;
  --es-amber:       #d97706;
  --es-r:           14px;
  --es-r2:          20px;
  --es-r3:          28px;
  --es-shadow-sm:   0 1px 3px rgba(0,0,0,.06);
  --es-shadow:      0 4px 20px rgba(0,0,0,.07);
  --es-shadow-md:   0 8px 30px rgba(0,0,0,.10);
  --es-shadow-lg:   0 20px 60px rgba(0,0,0,.12);
  --es-shadow-blue: 0 8px 32px rgba(37,99,235,.25);
  --es-shadow-card: 0 2px 8px rgba(37,99,235,.06), 0 8px 24px rgba(0,0,0,.06);
  --es-trans:       .3s cubic-bezier(.4,0,.2,1);
  --es-grad-blue:   linear-gradient(135deg, var(--es-blue), var(--es-blue-l));
  --es-grad-dark:   linear-gradient(135deg, var(--es-dark) 0%, var(--es-dark-2) 50%, #1a2340 100%);
}

/* ── BASE ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--es-text);
  line-height: 1.65;
  background: var(--es-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--es-trans); }
img { max-width: 100%; }
::selection { background: var(--es-blue); color: #fff; }

/* ── UTILITIES ─────────────────────────────────────────────── */
.es-gradient-text {
  background: var(--es-grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTON SYSTEM (Bootstrap overrides) ───────────────────── */
.btn-primary {
  background: var(--es-grad-blue);
  border: none;
  font-weight: 700;
  font-family: inherit;
  border-radius: 12px;
  transition: var(--es-trans);
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(135deg, var(--es-blue-d), var(--es-blue));
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,99,235,.35);
}
.btn-outline-primary {
  color: var(--es-blue);
  border-color: var(--es-blue);
  border-width: 2px;
  font-weight: 700;
  font-family: inherit;
  border-radius: 12px;
  transition: var(--es-trans);
}
.btn-outline-primary:hover {
  background: var(--es-blue);
  border-color: var(--es-blue);
  transform: translateY(-2px);
  box-shadow: var(--es-shadow-blue);
}

/* ── NEW BUTTON CLASSES (all pages) ────────────────────────── */
/* ── CTA BUTTONS — unified blue color family ────────────────── */
.btn.es-btn-primary {
  background: var(--es-blue);
  border: 2px solid var(--es-blue);
  color: #fff;
  font-weight: 700;
  font-family: inherit;
  border-radius: 50px;
  letter-spacing: .25px;
  box-shadow: 0 2px 14px rgba(37,99,235,.28);
  transition: all .22s ease;
}
.btn.es-btn-primary:hover, .btn.es-btn-primary:focus {
  color: #fff;
  background: var(--es-blue-d);
  border-color: var(--es-blue-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,99,235,.48);
}
.btn.es-btn-outline {
  background: transparent;
  border: 2px solid var(--es-blue);
  color: var(--es-blue);
  font-weight: 700;
  font-family: inherit;
  border-radius: 50px;
  transition: all .22s ease;
}
.btn.es-btn-outline:hover, .btn.es-btn-outline:focus {
  background: var(--es-blue);
  border-color: var(--es-blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,99,235,.38);
}
.btn.es-btn-light {
  background: #fff;
  border: 2px solid #fff;
  color: var(--es-blue);
  font-weight: 800;
  font-family: inherit;
  border-radius: 50px;
  transition: all .22s ease;
}
.btn.es-btn-light:hover, .btn.es-btn-light:focus {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,255,255,.18);
}
.btn.es-btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
  font-weight: 700;
  font-family: inherit;
  border-radius: 50px;
  transition: all .22s ease;
}
.btn.es-btn-outline-light:hover, .btn.es-btn-outline-light:focus {
  border-color: #fff;
  background: rgba(255,255,255,.12);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255,255,255,.12);
}

/* Legacy button classes (old pages) */
.btn-es-danger {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border: none;
  color: #fff;
  font-weight: 700;
  font-family: inherit;
  border-radius: 10px;
  font-size: .84rem;
  padding: 9px 20px;
  cursor: pointer;
  transition: var(--es-trans);
  display: inline-block;
}
.btn-es-danger:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 4px 18px rgba(220,38,38,.35); }
.btn-es-white {
  background: var(--es-white);
  color: var(--es-dark);
  font-weight: 800;
  font-family: inherit;
  border-radius: 12px;
  border: none;
  padding: 13px 28px;
  font-size: .9rem;
  cursor: pointer;
  transition: var(--es-trans);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-es-white:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,.28); color: var(--es-blue); }

/* ── TOPBAR ─────────────────────────────────────────────────── */
.es-topbar {
  background: var(--es-dark);
  padding: 8px 0;
  font-size: .79rem;
}
/* New-style topbar links */
.es-topbar-link {
  color: rgba(255,255,255,.55);
  font-size: .79rem;
  font-weight: 500;
  transition: .2s;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.es-topbar-link:hover { color: var(--es-blue-xl); }
.es-topbar-div {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.18);
  display: inline-block;
  vertical-align: middle;
}
/* Legacy topbar */
.es-topbar a { color: rgba(255,255,255,.55); transition: .2s; }
.es-topbar a:hover { color: var(--es-blue-xl); }
.es-topbar-phone { color: rgba(255,255,255,.55); }
.es-topbar-sep { color: rgba(255,255,255,.18); margin: 0 12px; }
.es-topbar-social a {
  width: 27px; height: 27px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  color: rgba(255,255,255,.55);
  transition: var(--es-trans);
}
.es-topbar-social a:hover { background: var(--es-blue); color: #fff; transform: scale(1.1); }

/* ── NAVBAR ─────────────────────────────────────────────────── */
.es-navbar {
  background: rgba(255,255,255,.97) !important;
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid rgba(226,232,240,.8);
  padding: 0;
}
/* Logo */
.es-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--es-grad-blue);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 8px;
  margin-right: 6px;
  flex-shrink: 0;
}
.es-logo-text {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--es-text);
  letter-spacing: -.4px;
}
.es-navbar .navbar-brand {
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--es-text);
  padding: 8px 0;
  display: flex;
  align-items: center;
}
.es-navbar .navbar-brand:hover { color: var(--es-text); }
.es-navbar .navbar-brand b { color: var(--es-blue); }
/* Image logo */
.es-nav-logo {
  height: 44px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
  object-position: left center;
}
.es-nav-logo-offcanvas {
  height: 36px;
  max-width: 150px;
  filter: brightness(0) invert(1);
}
@media (max-width: 575.98px) {
  .es-nav-logo { height: 36px; max-width: 140px; }
}
/* Nav links */
.es-navbar .nav-link {
  font-size: .86rem;
  font-weight: 600;
  color: var(--es-text-2) !important;
  padding: 20px 13px !important;
  white-space: nowrap;
  transition: color .2s;
  position: relative;
}
.es-navbar .nav-link::after { display: none !important; }
.es-navbar .nav-link:hover { color: var(--es-blue) !important; }
.es-navbar .nav-link.active-page { color: var(--es-blue) !important; }
/* Hamburger */
.es-mob-call-btn {
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  padding: 7px 14px;
  white-space: nowrap;
}
@media (max-width: 575.98px) {
  .es-mob-call-btn { padding: 8px 10px; }
}
.es-toggler {
  border: none !important;
  padding: 8px !important;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.es-toggler:focus { box-shadow: none !important; outline: none; }
.es-toggler span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--es-text);
  border-radius: 2px;
  transition: .3s;
}
.es-navbar .navbar-toggler { border: none; padding: 8px; color: var(--es-text); font-size: 1.1rem; }
.es-navbar .navbar-toggler:focus { box-shadow: none; }

/* ── NAVBAR DROPDOWN (Desktop hover) ───────────────────────── */
@media (min-width: 1200px) {
  .es-navbar .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0; left: 13px; right: 13px;
    height: 2.5px;
    background: var(--es-grad-blue);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s cubic-bezier(.4,0,.2,1);
  }
  .es-navbar .dropdown.es-open > .nav-link::before,
  .es-navbar .nav-link.active-page::before { transform: scaleX(1); }

  .es-navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(.97);
    transition: opacity .22s cubic-bezier(.4,0,.2,1), visibility .22s, transform .22s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
    margin-top: 0 !important;
  }
  .es-navbar .dropdown.es-open > .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
  }
  .es-navbar .dropdown.es-open > .nav-link > .fa-xs {
    transform: rotate(-8deg) scale(1.18);
    color: var(--es-blue);
  }
  .es-navbar .nav-link > .fa-xs { transition: transform .2s, color .2s; }
  .es-navbar .dropdown.es-open > .nav-link { color: var(--es-blue) !important; }
}

.es-navbar .dropdown-menu,
.es-dropdown-menu {
  min-width: 280px;
  border: 1px solid rgba(226,232,240,.8);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 25px 60px -15px rgba(0,0,0,.14), 0 0 0 1px rgba(37,99,235,.04);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  background: rgba(255,255,255,.97);
}
.es-navbar .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: .84rem;
  font-weight: 500;
  color: var(--es-text-2);
  transition: .15s;
}
.es-navbar .dropdown-item:hover {
  background: var(--es-blue-50);
  color: var(--es-blue);
}
.es-navbar .dropdown-item.active {
  background: var(--es-blue-50);
  color: var(--es-blue);
  font-weight: 700;
}
.es-navbar .dropdown-divider { border-color: var(--es-border); margin: 5px 8px; }

/* Legacy dd-ico / dd-info dropdown items */
.dd-ico {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--es-blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  color: var(--es-blue);
  flex-shrink: 0;
  transition: var(--es-trans);
}
.es-navbar .dropdown-item:hover .dd-ico { background: var(--es-blue); color: #fff; }
.dd-info { line-height: 1.28; }
.dd-info span { display: block; font-weight: 700; font-size: .82rem; color: var(--es-text); }
.dd-info small { font-size: .7rem; color: var(--es-text-4); font-weight: 400; }

/* ── MOBILE OFFCANVAS ───────────────────────────────────────── */
.es-offcanvas { background: var(--es-white); }
.es-offcanvas .offcanvas-header {
  background: var(--es-dark);
  padding: 16px 20px;
}
.es-offcanvas .offcanvas-header .navbar-brand { color: #fff; padding: 0; font-size: 1.1rem; display: flex; align-items: center; }
.es-offcanvas .offcanvas-header .navbar-brand b { color: var(--es-blue-xl); }
.es-offcanvas .offcanvas-header .es-nav-logo-offcanvas { height: 36px; max-width: 140px; filter: brightness(0) invert(1); }
.es-offcanvas .offcanvas-body { padding: 0; }
/* Legacy offcanvas nav links */
.es-offcanvas .nav-link {
  padding: 13px 20px !important;
  border-bottom: 1px solid var(--es-border);
  color: var(--es-text) !important;
  font-size: .88rem !important;
  font-weight: 600 !important;
}
.es-offcanvas .dropdown-menu {
  position: static !important;
  transform: none !important;
  box-shadow: none !important;
  border: none !important;
  border-left: 3px solid var(--es-blue-100) !important;
  border-radius: 0 !important;
  padding: 4px 0 4px 16px !important;
  margin: 0 0 4px !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}
.es-offcanvas .dropdown-item { font-size: .83rem; padding: 7px 12px; }

/* New mobile accordion offcanvas */
.es-mob-acc { padding: 0; }
.es-mob-acc .accordion-item { border-radius: 0 !important; border-left: none !important; border-right: none !important; border-top: none !important; }
.es-mob-acc-btn {
  font-weight: 700 !important;
  font-size: .88rem !important;
  color: var(--es-text) !important;
  padding: 14px 20px !important;
  background: var(--es-white) !important;
  border-bottom: 1px solid var(--es-border) !important;
  box-shadow: none !important;
  font-family: inherit !important;
}
.es-mob-acc-btn:not(.collapsed) {
  background: var(--es-blue-50) !important;
  color: var(--es-blue) !important;
}
.es-mob-acc-btn::after {
  filter: none !important;
  opacity: .5;
}
.es-mob-link {
  display: block;
  padding: 10px 20px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--es-text-2);
  border-bottom: 1px solid var(--es-border);
  transition: .15s;
}
.es-mob-link:hover { color: var(--es-blue); background: var(--es-blue-50); }
.es-mob-link.active { color: var(--es-blue); font-weight: 700; background: var(--es-blue-50); }

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.es-breadcrumb {
  background: var(--es-off);
  border-bottom: 1px solid var(--es-border);
  padding: 9px 0;
  font-size: .79rem;
}
.es-breadcrumb .breadcrumb { margin: 0; padding: 0; }
.es-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--es-text-4); font-size: .7rem; }
.es-breadcrumb .breadcrumb-item a { color: var(--es-blue); font-weight: 500; }
.es-breadcrumb .breadcrumb-item a:hover { color: var(--es-blue-d); }
.es-breadcrumb .breadcrumb-item.active { color: var(--es-text); font-weight: 700; }

/* ── BADGE ──────────────────────────────────────────────────── */
.es-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--es-blue-50);
  border: 1px solid var(--es-blue-100);
  color: var(--es-blue);
  font-size: .74rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: .3px;
}
.es-badge-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.9);
  font-size: .74rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: .3px;
}
/* Legacy eyebrow/tag */
.es-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--es-blue-100);
  padding: 6px 16px 6px 8px;
  border-radius: 50px;
  font-size: .77rem;
  font-weight: 700;
  color: var(--es-blue);
  margin-bottom: 22px;
  box-shadow: 0 2px 12px rgba(37,99,235,.1);
}
.es-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--es-green);
  flex-shrink: 0;
  animation: esPulse 2s ease infinite;
}
@keyframes esPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(5,150,105,.4); }
  50%       { opacity: .5; }
  70%       { box-shadow: 0 0 0 6px rgba(5,150,105,0); }
}
.es-tag {
  display: inline-block;
  background: var(--es-blue-50);
  color: var(--es-blue);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: .71rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 14px;
  border: 1px solid var(--es-blue-100);
}

/* ── HERO (new design) ──────────────────────────────────────── */
.es-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
  background: linear-gradient(165deg, #eef4ff 0%, #e5eeff 25%, #f0f5ff 55%, #fafcff 80%, #fff 100%);
}
/* New orb system */
.es-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.es-hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,.13) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: esFloat 22s ease-in-out infinite;
}
.es-hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(96,165,250,.09) 0%, transparent 70%);
  bottom: -150px; left: -80px;
  animation: esFloat 28s ease-in-out infinite reverse;
}
.es-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.028) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
@keyframes esFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(20px,-20px) scale(1.02); }
  66%       { transform: translate(-15px,15px) scale(.98); }
}
/* Legacy orb system */
.es-hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.es-orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .45; }
.es-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,.1) 0%, transparent 70%);
  top: -250px; right: -150px;
  animation: esFloat 22s ease-in-out infinite;
}
.es-orb-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(37,99,235,.07) 0%, transparent 70%);
  bottom: -200px; left: -100px;
  animation: esFloat 28s ease-in-out infinite reverse;
}
.es-orb-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(96,165,250,.08) 0%, transparent 70%);
  top: 30%; left: 40%;
  animation: esFloat 18s ease-in-out infinite .5s;
}
.es-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.025) 1px, transparent 1px);
  background-size: 64px 64px;
}
.es-hero-inner { position: relative; z-index: 1; }

/* Hero typography — new */
.es-hero-title {
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.12;
  color: var(--es-text);
  margin-bottom: 20px;
  letter-spacing: -.6px;
}
.es-hero-sub {
  font-size: 1.02rem;
  color: var(--es-text-2);
  line-height: 1.78;
  margin-bottom: 0;
  max-width: 580px;
}
.es-hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--es-text-2);
}
/* Hero metric cards grid */
.es-hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.es-hero-metric-card {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(226,232,240,.9);
  border-radius: var(--es-r);
  padding: 22px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(37,99,235,.07);
  backdrop-filter: blur(12px);
  transition: var(--es-trans);
}
.es-hero-metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(37,99,235,.14);
  border-color: var(--es-blue-200);
}
.es-hero-metric-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--es-blue);
  line-height: 1;
  letter-spacing: -.5px;
}
.es-hero-metric-label {
  font-size: .73rem;
  color: var(--es-text-3);
  font-weight: 600;
  margin-top: 6px;
  line-height: 1.3;
}

/* Hero typography — legacy */
.es-hero h1 {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--es-text);
  margin-bottom: 20px;
  letter-spacing: -.6px;
}
.es-hero h1 em {
  font-style: normal;
  color: var(--es-blue);
  position: relative;
}
.es-hero h1 em::after {
  content: '';
  position: absolute;
  left: 0; bottom: 2px;
  width: 100%; height: 12px;
  background: linear-gradient(90deg, rgba(37,99,235,.12), rgba(96,165,250,.08));
  border-radius: 4px;
  z-index: -1;
}
.es-hero-desc {
  font-size: 1.05rem;
  color: var(--es-text-2);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 560px;
}
/* Legacy hero stat chips */
.es-hero-stats { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.es-hero-stat-chip {
  background: rgba(255,255,255,.85);
  border: 1px solid var(--es-blue-100);
  border-radius: 50px;
  padding: 6px 14px 6px 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--es-text-2);
  box-shadow: var(--es-shadow-sm);
  backdrop-filter: blur(6px);
  transition: var(--es-trans);
}
.es-hero-stat-chip:hover { border-color: var(--es-blue); color: var(--es-blue); transform: translateY(-2px); box-shadow: var(--es-shadow-blue); }
.es-hero-stat-chip .chip-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--es-blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  color: var(--es-blue);
  flex-shrink: 0;
}

/* ── TRUST BAR ──────────────────────────────────────────────── */
.es-trust-bar {
  background: linear-gradient(90deg, #f8fafc 0%, #fff 50%, #f8fafc 100%);
  border-bottom: 1px solid var(--es-border);
  padding: 12px 0;
  overflow: hidden;
}
.es-trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.es-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 22px;
  font-size: .79rem;
  font-weight: 600;
  color: var(--es-text-2);
  border-right: 1px solid var(--es-border);
  white-space: nowrap;
  transition: .2s;
}
.es-trust-item:last-child { border-right: none; }
.es-trust-item i { color: var(--es-blue); font-size: .82rem; }
.es-trust-item strong { color: var(--es-text); font-weight: 800; }
.es-trust-item:hover { color: var(--es-blue); }

/* ── SHOWCASE (light — new design) ─────────────────────────── */
.es-showcase {
  background: linear-gradient(160deg, var(--es-dark) 0%, var(--es-dark-2) 55%, #1a2340 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.es-showcase::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 75% 15%, rgba(37,99,235,.2) 0%, transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(37,99,235,.1) 0%, transparent 40%);
  pointer-events: none;
}
.es-showcase::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.es-showcase .container-xl { position: relative; z-index: 1; }
.es-showcase-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 16px;
  letter-spacing: -.3px;
}
.es-showcase-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.62);
  line-height: 1.78;
  margin-bottom: 28px;
}
.es-showcase-stat {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--es-r);
  padding: 22px 18px;
  text-align: center;
  transition: var(--es-trans);
  height: 100%;
}
.es-showcase-stat:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-4px);
}
.es-showcase-stat-val {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -.4px;
}
.es-showcase-stat-label {
  font-size: .73rem;
  color: rgba(255,255,255,.5);
  font-weight: 600;
  margin-top: 8px;
  line-height: 1.4;
}

/* ── METRICS STRIP (legacy) ─────────────────────────────────── */
.es-metrics {
  background: #fff;
  border-bottom: 1px solid var(--es-border);
  position: relative;
}
.es-metrics::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--es-grad-blue);
  opacity: .6;
}
.es-metric-item {
  text-align: center;
  padding: 28px 16px;
  position: relative;
  transition: var(--es-trans);
}
.es-metric-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%;
  height: 60%; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--es-border), transparent);
}
.es-metric-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--es-blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--es-blue);
  margin: 0 auto 10px;
  transition: var(--es-trans);
}
.es-metric-item:hover .es-metric-icon { background: var(--es-blue); color: #fff; transform: scale(1.08); box-shadow: var(--es-shadow-blue); }
.es-metric-num { font-size: 2.1rem; font-weight: 800; color: var(--es-blue); letter-spacing: -.5px; line-height: 1; }
.es-metric-label { font-size: .77rem; color: var(--es-text-3); margin-top: 5px; font-weight: 600; }

/* ── SECTIONS ───────────────────────────────────────────────── */
.es-sec { padding: 88px 0; }
.es-sec-alt { background: var(--es-off); }
/* New section headers */
.es-sec-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--es-text);
  letter-spacing: -.35px;
  margin-bottom: 12px;
  line-height: 1.2;
}
.es-sec-sub {
  color: var(--es-text-3);
  font-size: .97rem;
  line-height: 1.72;
  max-width: 640px;
  margin: 0 auto;
}
/* Legacy section head */
.es-sec-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.es-sec-head h2 { font-size: 2rem; font-weight: 800; color: var(--es-text); letter-spacing: -.35px; margin-bottom: 12px; line-height: 1.2; }
.es-sec-head p { color: var(--es-text-3); font-size: .96rem; line-height: 1.72; margin: 0; }

/* ── SERVICE CARDS ──────────────────────────────────────────── */
.es-card {
  background: #fff;
  border: 1.5px solid var(--es-border);
  border-radius: var(--es-r);
  padding: 30px 28px;
  transition: var(--es-trans);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.es-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--es-grad-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--es-trans);
}
.es-card:hover {
  border-color: rgba(37,99,235,.35);
  box-shadow: var(--es-shadow-card), 0 0 0 3px rgba(37,99,235,.05), 0 20px 50px rgba(37,99,235,.08);
  transform: translateY(-8px);
}
.es-card:hover::before { transform: scaleX(1); }
/* New card icon */
.es-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--es-blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--es-blue);
  margin-bottom: 18px;
  transition: var(--es-trans);
  flex-shrink: 0;
}
.es-card:hover .es-card-icon { background: var(--es-blue); color: #fff; box-shadow: var(--es-shadow-blue); transform: scale(1.08) rotate(-4deg); }
.es-card-title { font-size: 1.05rem; font-weight: 800; color: var(--es-text); margin-bottom: 10px; line-height: 1.3; }
.es-card-text { font-size: .87rem; color: var(--es-text-3); line-height: 1.68; margin-bottom: 16px; }
.es-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.es-card-list li {
  font-size: .83rem;
  color: var(--es-text-2);
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.es-card-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--es-blue);
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
/* Legacy card elements */
.es-card-num {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--es-blue-50);
  line-height: 1;
  letter-spacing: -2px;
  pointer-events: none;
  transition: var(--es-trans);
}
.es-card:hover .es-card-num { color: var(--es-blue-100); }
.es-card-ico {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--es-blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--es-blue);
  margin-bottom: 18px;
  transition: var(--es-trans);
}
.es-card:hover .es-card-ico { background: var(--es-blue); color: #fff; box-shadow: var(--es-shadow-blue); transform: scale(1.08) rotate(-4deg); }
.es-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--es-text); margin-bottom: 9px; line-height: 1.3; }
.es-card-desc { font-size: .87rem; color: var(--es-text-3); line-height: 1.68; margin-bottom: 16px; }
.es-feat-list { list-style: none; padding: 0; margin: 0; }
.es-feat-list li {
  font-size: .83rem;
  color: var(--es-text-2);
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.es-feat-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--es-blue);
  flex-shrink: 0;
  margin-top: 5px;
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

/* ── HIGHLIGHT BOX ──────────────────────────────────────────── */
.es-highlight-box {
  background: linear-gradient(135deg, var(--es-blue-50) 0%, rgba(219,234,254,.4) 100%);
  border: 1px solid var(--es-blue-100);
  border-radius: var(--es-r2);
  padding: 24px 28px;
  position: relative;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.es-highlight-box::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--es-grad-blue);
  border-radius: 4px 0 0 4px;
}
.es-highlight-box-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--es-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}
.es-highlight-box strong { color: var(--es-text); font-weight: 700; display: block; margin-bottom: 4px; }
.es-highlight-box p, .es-highlight-box div > *:last-child { font-size: .88rem; color: var(--es-text-2); line-height: 1.7; margin: 0; }

/* ── CHECKLIST ──────────────────────────────────────────────── */
.es-checklist { list-style: none; padding: 0; margin: 0; }
.es-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  font-size: .88rem;
  color: var(--es-text-2);
  border-bottom: 1px solid var(--es-border);
  line-height: 1.55;
}
.es-checklist-item:last-child { border-bottom: none; }
.es-checklist-item i { flex-shrink: 0; margin-top: 2px; font-size: .8rem; }

/* ── FLOW / PROCESS CARDS ───────────────────────────────────── */
.es-flow-card {
  background: #fff;
  border: 1.5px solid var(--es-border);
  border-radius: var(--es-r);
  padding: 24px 22px;
  position: relative;
  transition: var(--es-trans);
  height: 100%;
}
.es-flow-card:hover {
  border-color: var(--es-blue-200);
  box-shadow: 0 8px 24px rgba(37,99,235,.1);
  transform: translateY(-4px);
}
.es-flow-card-cta {
  background: var(--es-grad-blue);
  border-color: transparent !important;
  color: #fff;
}
.es-flow-card-cta:hover {
  box-shadow: 0 12px 36px rgba(37,99,235,.35) !important;
  transform: translateY(-6px) !important;
}
.es-flow-cta-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 16px;
}
.es-flow-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--es-grad-blue);
  color: #fff;
  font-weight: 800;
  font-size: .88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(37,99,235,.25);
  flex-shrink: 0;
}
.es-flow-card-cta .es-flow-num { background: rgba(255,255,255,.25); box-shadow: none; }
.es-flow-title { font-weight: 800; font-size: .92rem; color: var(--es-text); margin-bottom: 8px; line-height: 1.3; }
.es-flow-card-cta .es-flow-title { color: #fff; }
.es-flow-text, .es-flow-desc { font-size: .83rem; color: var(--es-text-3); line-height: 1.6; margin: 0; }
.es-flow-card-cta .es-flow-text, .es-flow-card-cta .es-flow-desc { color: rgba(255,255,255,.75); }
.es-flow-time,
.es-flow-tag {
  display: inline-block;
  font-size: .71rem;
  color: var(--es-blue);
  margin-top: 10px;
  font-weight: 700;
  background: var(--es-blue-50);
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid var(--es-blue-100);
}

/* ── BENEFIT CARDS ──────────────────────────────────────────── */
.es-benefit-card {
  background: #fff;
  border: 1.5px solid var(--es-border);
  border-radius: var(--es-r);
  padding: 28px 24px;
  transition: var(--es-trans);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.es-benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--es-grad-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--es-trans);
}
.es-benefit-card:hover {
  border-color: rgba(37,99,235,.3);
  box-shadow: var(--es-shadow-card);
  transform: translateY(-5px);
}
.es-benefit-card:hover::after { transform: scaleX(1); }
/* New icon style (no header wrapper) */
.es-benefit-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--es-blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--es-blue);
  flex-shrink: 0;
  transition: var(--es-trans);
  margin-bottom: 16px;
}
.es-benefit-card:hover .es-benefit-icon { background: var(--es-blue); color: #fff; box-shadow: var(--es-shadow-blue); transform: scale(1.08) rotate(-4deg); }
.es-benefit-card h4 { font-size: 1rem; font-weight: 800; color: var(--es-text); margin-bottom: 8px; line-height: 1.3; }
.es-benefit-card p { font-size: .86rem; color: var(--es-text-3); line-height: 1.65; margin: 0; }
/* Legacy benefit elements */
.es-benefit-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 14px; }
.es-benefit-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--es-blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--es-blue);
  flex-shrink: 0;
  transition: var(--es-trans);
}
.es-benefit-card:hover .es-benefit-ico { background: var(--es-blue); color: #fff; box-shadow: var(--es-shadow-blue); transform: scale(1.08) rotate(-4deg); }
.es-benefit-card h3 { font-size: 1rem; font-weight: 800; color: var(--es-text); margin: 0 0 4px; line-height: 1.3; }

/* ── WHY ENTERSLICE CARDS ───────────────────────────────────── */
.es-why-card {
  background: #fff;
  border: 1.5px solid var(--es-border);
  border-radius: var(--es-r);
  padding: 28px 24px;
  transition: var(--es-trans);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.es-why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--es-grad-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--es-trans);
}
.es-why-card:hover {
  border-color: rgba(37,99,235,.3);
  box-shadow: var(--es-shadow-card), 0 0 0 3px rgba(37,99,235,.04);
  transform: translateY(-7px);
}
.es-why-card:hover::before { transform: scaleX(1); }
/* New icon */
.es-why-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--es-blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--es-blue);
  margin-bottom: 16px;
  transition: var(--es-trans);
}
.es-why-card:hover .es-why-icon { background: var(--es-blue); color: #fff; box-shadow: var(--es-shadow-blue); }
.es-why-card h4 { font-size: 1rem; font-weight: 800; color: var(--es-text); margin-bottom: 8px; line-height: 1.3; }
.es-why-card p { font-size: .85rem; color: var(--es-text-3); line-height: 1.65; margin: 0; }
/* Legacy */
.es-why-num {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--es-blue-50);
  line-height: 1;
  letter-spacing: -3px;
  position: absolute;
  top: 14px; right: 18px;
  pointer-events: none;
  transition: var(--es-trans);
}
.es-why-ico {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--es-blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--es-blue);
  margin-bottom: 16px;
  transition: var(--es-trans);
}
.es-why-card:hover .es-why-ico { background: var(--es-blue); color: #fff; box-shadow: var(--es-shadow-blue); }
.es-why-card:hover .es-why-num { color: var(--es-blue-100); }
.es-why-card h3 { font-size: 1rem; font-weight: 800; color: var(--es-text); margin-bottom: 8px; line-height: 1.3; position: relative; z-index: 1; }

/* ── SIDEBAR CARD ───────────────────────────────────────────── */
.es-sidebar-card {
  background: #fff;
  border: 1.5px solid var(--es-border);
  border-radius: var(--es-r2);
  padding: 28px 24px;
  position: sticky;
  top: 88px;
  box-shadow: var(--es-shadow);
}
.es-sidebar-card-title {
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--es-blue);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--es-blue-100);
}
.es-sidebar-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--es-border);
  font-size: .84rem;
}
.es-sidebar-item:last-of-type { border-bottom: none; }
.es-sidebar-item span { color: var(--es-text-3); }
.es-sidebar-item strong { color: var(--es-text); font-weight: 700; text-align: right; }

/* ── ARTICLE ────────────────────────────────────────────────── */
.es-article { max-width: 900px; margin: 0 auto; line-height: 1.88; }
.es-article h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--es-text);
  margin-bottom: 20px;
  padding-left: 18px;
  border-left: 4px solid var(--es-blue);
}
.es-article p { font-size: .95rem; color: var(--es-text-2); margin-bottom: 20px; }
.es-article strong { color: var(--es-text); font-weight: 700; }

/* ── TIMELINE ───────────────────────────────────────────────── */
.es-timeline-wrap { position: relative; }
.es-timeline-line {
  position: absolute;
  top: 23px;
  left: calc(50% / 8 + 6px);
  right: calc(50% / 8 + 6px);
  height: 2px;
  background: linear-gradient(90deg, var(--es-blue-100), var(--es-blue-200), var(--es-blue-100));
  z-index: 0;
  display: none;
}
.es-timeline-step { padding: 0 6px; text-align: left; position: relative; z-index: 1; }
.es-timeline-num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--es-grad-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 14px;
  box-shadow: var(--es-shadow-blue);
  transition: var(--es-trans);
  flex-shrink: 0;
}
.es-timeline-step:hover .es-timeline-num { transform: scale(1.12); box-shadow: 0 10px 28px rgba(37,99,235,.35); }
.es-timeline-title { font-weight: 800; color: var(--es-text); font-size: .88rem; margin-bottom: 6px; line-height: 1.3; }
.es-timeline-desc { font-size: .77rem; color: var(--es-text-3); line-height: 1.55; }
.es-timeline-time {
  display: inline-block;
  font-size: .72rem;
  color: var(--es-blue);
  margin-top: 9px;
  font-weight: 700;
  background: var(--es-blue-50);
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid var(--es-blue-100);
}

/* ── FAQ — New accordion ────────────────────────────────────── */
.es-faq-acc .accordion-item {
  border: 1.5px solid var(--es-border) !important;
  border-radius: var(--es-r) !important;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.es-faq-acc .accordion-item:hover { border-color: var(--es-blue-200) !important; }
.es-faq-acc .accordion-button {
  font-weight: 700;
  font-size: .92rem;
  color: var(--es-text);
  background: #fff;
  padding: 18px 22px;
  box-shadow: none !important;
  font-family: inherit;
  line-height: 1.4;
}
.es-faq-acc .accordion-button:not(.collapsed) {
  background: var(--es-blue-50);
  color: var(--es-blue);
  box-shadow: none !important;
}
.es-faq-acc .accordion-button::after {
  background-image: none;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  content: '\f067';
  font-size: .72rem;
  color: var(--es-blue);
  width: 26px; height: 26px;
  border-radius: 7px;
  background-color: var(--es-blue-50);
  border: 1px solid var(--es-blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transform: none;
}
.es-faq-acc .accordion-button:not(.collapsed)::after {
  content: '\f068';
  background-color: var(--es-blue);
  border-color: var(--es-blue);
  color: #fff;
  transform: none;
}
.es-faq-acc .accordion-body {
  padding: 4px 22px 20px;
  font-size: .9rem;
  color: var(--es-text-2);
  line-height: 1.82;
  background: var(--es-blue-50);
}

/* ── FAQ — Legacy accordion ─────────────────────────────────── */
.es-faq-wrap { max-width: 800px; }
.es-faq .accordion-item {
  border: 1.5px solid var(--es-border) !important;
  border-radius: var(--es-r) !important;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .2s;
}
.es-faq .accordion-item:hover { border-color: var(--es-blue-200) !important; }
.es-faq .accordion-button {
  font-weight: 700;
  font-size: .92rem;
  color: var(--es-text);
  background: #fff;
  padding: 20px 24px;
  box-shadow: none !important;
  font-family: inherit;
}
.es-faq .accordion-button:not(.collapsed) { background: var(--es-blue-50); color: var(--es-blue); }
.es-faq .accordion-body {
  padding: 4px 24px 22px;
  font-size: .91rem;
  color: var(--es-text-2);
  line-height: 1.85;
  background: var(--es-blue-50);
}

/* ── RELATED SERVICES ───────────────────────────────────────── */
.es-related-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1.5px solid var(--es-border);
  border-radius: var(--es-r);
  padding: 16px 18px;
  transition: var(--es-trans);
  height: 100%;
  color: var(--es-text-2);
}
.es-related-card:hover {
  border-color: var(--es-blue);
  background: var(--es-blue-50);
  box-shadow: 0 6px 20px rgba(37,99,235,.1);
  transform: translateY(-3px);
  color: var(--es-blue);
}
.es-related-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--es-blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--es-blue);
  flex-shrink: 0;
  transition: var(--es-trans);
}
.es-related-card:hover .es-related-icon { background: var(--es-blue); color: #fff; }
.es-related-card strong { display: block; font-size: .87rem; font-weight: 700; color: var(--es-text); line-height: 1.3; }
.es-related-card span { display: block; font-size: .76rem; color: var(--es-text-4); margin-top: 2px; }
.es-related-card:hover strong { color: var(--es-blue); }

/* ── CONSULT CARD (legacy) ──────────────────────────────────── */
.es-consult {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  border-radius: var(--es-r2);
  padding: 32px 28px;
  box-shadow: 0 20px 60px -15px rgba(0,0,0,.12), 0 0 0 1px rgba(37,99,235,.06);
  border: 1px solid rgba(255,255,255,.6);
  position: relative;
  overflow: hidden;
}
.es-consult::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--es-grad-blue);
}
.es-consult h3 { font-size: 1.02rem; font-weight: 800; text-align: center; margin-bottom: 4px; color: var(--es-text); }
.es-sub { text-align: center; font-size: .81rem; color: var(--es-text-3); margin-bottom: 22px; }
.es-consult .form-control,
.es-consult .form-select {
  border: 1.5px solid var(--es-border);
  border-radius: 10px;
  font-family: inherit;
  font-size: .87rem;
  background: var(--es-off);
  color: var(--es-text);
  padding: 11px 15px;
  margin-bottom: 10px;
  transition: var(--es-trans);
}
.es-consult .form-control:focus,
.es-consult .form-select:focus { border-color: var(--es-blue); background: #fff; box-shadow: 0 0 0 4px rgba(37,99,235,.08); outline: none; }
.es-consult-btn {
  width: 100%;
  padding: 14px;
  background: var(--es-grad-blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--es-trans);
}
.es-consult-btn:hover { box-shadow: 0 8px 28px rgba(37,99,235,.35); transform: translateY(-2px); }
.es-trust { text-align: center; margin-top: 14px; font-size: .78rem; color: var(--es-text-4); }
.es-trust .es-stars { color: #f59e0b; display: block; margin-bottom: 2px; letter-spacing: 1px; }
.es-trust b { color: var(--es-text-2); }

/* ── INDUSTRY PILLS (legacy) ────────────────────────────────── */
.es-industry-pill {
  background: #fff;
  border: 1.5px solid var(--es-border);
  padding: 9px 18px;
  border-radius: 50px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--es-text-2);
  transition: var(--es-trans);
  cursor: default;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.es-industry-pill:hover { border-color: var(--es-blue); color: var(--es-blue); background: var(--es-blue-50); transform: translateY(-3px); }
.es-industry-pill .pill-icon { font-size: .75rem; color: var(--es-blue); opacity: .7; }

/* ── TABLE (legacy) ─────────────────────────────────────────── */
.es-table-wrap { border-radius: var(--es-r); overflow: hidden; border: 1px solid var(--es-border); box-shadow: var(--es-shadow-sm); }
.es-table-wrap .table { margin: 0; }
.es-table-wrap thead th { background: var(--es-grad-blue); color: #fff; font-size: .83rem; font-weight: 700; padding: 15px 20px; border: none; white-space: nowrap; }
.es-table-wrap tbody td { padding: 14px 20px; font-size: .87rem; color: var(--es-text-2); border-color: var(--es-border); vertical-align: middle; }
.es-table-wrap tbody tr:hover { background: var(--es-blue-50); }
.es-insight {
  background: linear-gradient(135deg, var(--es-blue-50), rgba(219,234,254,.5));
  border-left: 4px solid var(--es-blue);
  border-radius: 0 var(--es-r) var(--es-r) 0;
  padding: 20px 24px;
}
.es-insight p { font-size: .93rem; color: var(--es-text); margin: 0; line-height: 1.7; }

/* ── STAT STRIP ─────────────────────────────────────────────── */
.es-stat-strip {
  display: flex;
  gap: 0;
  background: #fff;
  border: 1.5px solid var(--es-border);
  border-radius: var(--es-r2);
  overflow: hidden;
  box-shadow: var(--es-shadow-sm);
}
.es-stat-strip-item { flex: 1; text-align: center; padding: 24px 16px; position: relative; }
.es-stat-strip-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--es-border);
}
.es-stat-strip-num { font-size: 1.8rem; font-weight: 800; color: var(--es-blue); letter-spacing: -.5px; line-height: 1; }
.es-stat-strip-label { font-size: .74rem; color: var(--es-text-3); font-weight: 600; margin-top: 4px; }

/* ── CTA SECTION (new) ──────────────────────────────────────── */
.es-cta-section {
  background: linear-gradient(135deg, var(--es-dark) 0%, var(--es-dark-2) 50%, #1a2340 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.es-cta-orb {
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.2) 0%, transparent 65%);
  pointer-events: none;
}
.es-cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.es-cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -.3px;
  line-height: 1.18;
}
.es-cta-sub {
  font-size: .97rem;
  color: rgba(255,255,255,.62);
  line-height: 1.78;
  margin-bottom: 0;
}
.es-cta-trust {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  font-weight: 600;
}
.es-cta-trust i { color: rgba(255,255,255,.85); }

/* ── CTA BANNER (legacy) ────────────────────────────────────── */
.es-cta-banner {
  background: var(--es-grad-blue);
  border-radius: var(--es-r3);
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.es-cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 22px 22px;
}
.es-cta-inner { position: relative; z-index: 1; }
.es-cta-banner h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 12px; letter-spacing: -.3px; }
.es-cta-banner p { color: rgba(255,255,255,.75); font-size: 1rem; margin-bottom: 28px; }
.es-cta-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: rgba(255,255,255,.75);
  font-weight: 600;
}
.es-cta-trust-item i { color: rgba(255,255,255,.9); font-size: .8rem; }

/* ── PRE-FOOTER CTA STRIP ───────────────────────────────────── */
.es-prefooter {
  background: var(--es-blue);
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}
.es-prefooter::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.es-prefooter .container-xl { position: relative; }
.es-prefooter-title {
  color: #fff;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 800;
  margin: 0 0 4px;
  letter-spacing: -.2px;
}
.es-prefooter-sub {
  color: rgba(255,255,255,.72);
  font-size: .875rem;
  margin: 0;
}

/* ── FOOTER (new) ───────────────────────────────────────────── */
.es-footer {
  background: var(--es-dark);
  color: #fff;
  padding: 52px 0 0;
  position: relative;
}
.es-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--es-grad-blue);
}
/* -- FOOTER MAINBOARD IPO CTA ---------------------------------- */
.es-footer-mainboard {
  background: linear-gradient(135deg, rgba(37,99,235,.18) 0%, rgba(37,99,235,.07) 100%);
  border: 1px solid rgba(37,99,235,.3);
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 44px;
}
.es-footer-mainboard-tag {
  display: inline-block;
  background: var(--es-blue);
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 3px 11px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.es-footer-mainboard-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.es-footer-mainboard-desc {
  color: rgba(255,255,255,.55);
  font-size: .82rem;
  line-height: 1.6;
  margin: 0;
}
.es-footer-mainboard-check {
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  font-weight: 600;
}
.es-footer-mainboard-note {
  color: rgba(255,255,255,.38);
  font-size: .72rem;
}
/* \u2500\u2500 FOOTER STATS ROW \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */ ───────────────────────────────────────── */
.es-footer-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 16px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 44px;
}
.es-footer-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 80px;
}
.es-footer-stat-val {
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -.5px;
}
.es-footer-stat-label {
  font-size: .7rem;
  color: rgba(255,255,255,.42);
  margin-top: 5px;
  font-weight: 500;
  white-space: nowrap;
}
.es-footer-stat-div {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .es-footer-stats { justify-content: center; gap: 16px 28px; }
  .es-footer-stat-div { display: none; }
  .es-footer-stat { min-width: 70px; }
}
.es-footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.es-footer-brand .es-logo-mark { width: 28px; height: 28px; font-size: .85rem; }
.es-footer-brand .es-logo-text { font-size: 1.1rem; color: #fff; }
.es-footer-about {
  color: rgba(255,255,255,.42);
  font-size: .82rem;
  line-height: 1.78;
  max-width: 300px;
}
.es-footer-heading {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: rgba(255,255,255,.9);
  margin-bottom: 16px;
  padding-bottom: 10px;
  position: relative;
}
.es-footer-heading::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 24px; height: 2px;
  background: var(--es-blue);
  border-radius: 2px;
}
.es-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.es-footer-links li { margin-bottom: 8px; }
.es-footer-links a {
  color: rgba(255,255,255,.42);
  font-size: .82rem;
  transition: .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.es-footer-links a:hover { color: var(--es-blue-l); padding-left: 4px; }
.es-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 56px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .74rem;
  color: rgba(255,255,255,.28);
}
.es-footer-bottom-link {
  color: rgba(255,255,255,.4) !important;
  font-size: .74rem;
  transition: .2s;
}
.es-footer-bottom-link:hover { color: var(--es-blue-l) !important; }
/* Legacy footer */
.es-footer-brand-name { font-size: 1.22rem; font-weight: 800; letter-spacing: -.5px; color: #fff; display: inline-block; margin-bottom: 12px; }
.es-footer-brand-name b { color: var(--es-blue-l); }
.es-footer-desc { color: rgba(255,255,255,.42); font-size: .82rem; line-height: 1.78; max-width: 300px; }
.es-footer h5 {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 18px;
  color: rgba(255,255,255,.9);
  position: relative;
  padding-bottom: 10px;
}
.es-footer h5::after { content: ''; position: absolute; left: 0; bottom: 0; width: 28px; height: 2px; background: var(--es-blue); border-radius: 2px; }
.es-footer ul { list-style: none; padding: 0; margin: 0; }
.es-footer li { margin-bottom: 9px; }
.es-footer a { color: rgba(255,255,255,.42); font-size: .82rem; transition: .2s; }
.es-footer a:hover { color: var(--es-blue-l); padding-left: 4px; }
.es-footer-bar { border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0; margin-top: 48px; font-size: .74rem; color: rgba(255,255,255,.28); }
.es-footer-bar a { color: var(--es-blue-l); font-size: .74rem; }

/* ── SOCIAL LINKS ───────────────────────────────────────────── */
.es-social-link {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  transition: var(--es-trans);
}
.es-social-link:hover { background: var(--es-blue); color: #fff; transform: translateY(-2px); }
/* Legacy social links */
.es-footer-social-links { display: flex; gap: 8px; margin-top: 20px; }
.es-footer-social-links a {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  transition: var(--es-trans);
}
.es-footer-social-links a:hover { background: var(--es-blue); color: #fff; transform: translateY(-2px); padding-left: 0; }

/* ── SHOWCASE (dark banner — legacy alias) ──────────────────── */
.es-showcase-dark {
  background: var(--es-grad-dark);
  border-radius: var(--es-r3);
  padding: 60px 56px;
  position: relative;
  overflow: hidden;
}
.es-showcase-dark::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(37,99,235,.18) 0%, transparent 45%), radial-gradient(circle at 10% 80%, rgba(37,99,235,.1) 0%, transparent 40%);
  pointer-events: none;
}
.es-showcase-dark h2 { font-size: 2.1rem; font-weight: 800; color: #fff; line-height: 1.18; margin-bottom: 18px; letter-spacing: -.3px; }
.es-showcase-dark p { color: rgba(255,255,255,.62); font-size: .97rem; line-height: 1.8; margin-bottom: 30px; }
.es-showcase-inner { position: relative; z-index: 1; }
/* Dark showcase metric cards */
.es-sm-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--es-r);
  padding: 24px 20px;
  text-align: center;
  transition: var(--es-trans);
}
.es-sm-card:hover { background: rgba(255,255,255,.11); transform: translateY(-5px); border-color: rgba(255,255,255,.16); }
.es-sm-num { font-size: 1.65rem; font-weight: 800; color: #fff; line-height: 1; }
.es-sm-label { font-size: .74rem; color: rgba(255,255,255,.5); margin-top: 7px; font-weight: 600; letter-spacing: .3px; }
.es-sm-bar { height: 3px; background: rgba(255,255,255,.1); border-radius: 4px; margin-top: 14px; overflow: hidden; }
.es-bar-fill { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--es-blue-l), #93c5fd); width: 0; }
.bar-78  { animation: esGrow78  2.8s ease forwards .3s; }
.bar-80  { animation: esGrow80  2.8s ease forwards .3s; }
.bar-85  { animation: esGrow85  2.8s ease forwards .3s; }
.bar-88  { animation: esGrow88  2.8s ease forwards .3s; }
.bar-90  { animation: esGrow90  2.8s ease forwards .3s; }
.bar-92  { animation: esGrow92  2.8s ease forwards .3s; }
.bar-94  { animation: esGrow94  2.8s ease forwards .3s; }
.bar-95  { animation: esGrow95  2.8s ease forwards .3s; }
.bar-96  { animation: esGrow96  2.8s ease forwards .3s; }
.bar-100 { animation: esGrow100 2.8s ease forwards .3s; }
@keyframes esGrow78  { to { width: 78%;  } }
@keyframes esGrow80  { to { width: 80%;  } }
@keyframes esGrow85  { to { width: 85%;  } }
@keyframes esGrow88  { to { width: 88%;  } }
@keyframes esGrow90  { to { width: 90%;  } }
@keyframes esGrow92  { to { width: 92%;  } }
@keyframes esGrow94  { to { width: 94%;  } }
@keyframes esGrow95  { to { width: 95%;  } }
@keyframes esGrow96  { to { width: 96%;  } }
@keyframes esGrow100 { to { width: 100%; } }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (min-width: 992px) {
  .es-timeline-line { display: block; }
}
@media (max-width: 1199.98px) {
  .es-hero-title { font-size: 2.4rem; }
  .es-hero h1 { font-size: 2.5rem; }
  .es-showcase-title { font-size: 1.75rem; }
  .es-cta-title { font-size: 1.75rem; }
  .es-sec { padding: 72px 0; }
  .es-showcase { padding: 68px 0; }
  .es-cta-section { padding: 72px 0; }
  .es-showcase-dark { padding: 44px 36px; }
  .es-showcase-dark h2 { font-size: 1.8rem; }
}
@media (max-width: 991.98px) {
  .es-hero { padding: 56px 0 44px; }
  .es-hero-title { font-size: 2rem; }
  .es-hero h1 { font-size: 2.1rem; }
  .es-hero-sub { max-width: 100%; }
  .es-hero-desc { max-width: 100%; }
  .es-hero-card-grid { gap: 12px; }
  .es-hero-metric-val { font-size: 1.55rem; }
  .es-sec { padding: 64px 0; }
  .es-sec-head { margin-bottom: 44px; }
  .es-showcase { padding: 56px 0; }
  .es-showcase-title { font-size: 1.6rem; }
  .es-cta-section { padding: 60px 0; }
  .es-cta-title { font-size: 1.6rem; }
  .es-metric-item:nth-child(even)::after { display: none; }
  .es-showcase-dark { padding: 44px 32px; }
  .es-sidebar-card { position: static; }
  .es-consult { margin-top: 32px; }
}
@media (max-width: 767.98px) {
  .es-topbar { padding: 7px 0; }
  /* Trust bar: horizontal scroll on mobile instead of hidden */
  .es-trust-bar { overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 8px 0; }
  .es-trust-bar::-webkit-scrollbar { display: none; }
  .es-trust-bar-inner { flex-wrap: nowrap; justify-content: flex-start; padding: 0 12px; width: max-content; min-width: 100%; }
  .es-trust-item { padding: 4px 16px; flex-shrink: 0; font-size: .76rem; }
  /* Hero */
  .es-hero { padding: 44px 0 36px; }
  .es-hero-title { font-size: 1.75rem; letter-spacing: -.4px; }
  .es-hero-sub { font-size: .93rem; }
  .es-hero h1 { font-size: 1.85rem; letter-spacing: -.4px; }
  .es-hero-desc { font-size: .95rem; max-width: 100%; }
  .es-hero-stats { gap: 7px; margin-bottom: 24px; }
  /* Hero orbs scaled down to prevent overflow */
  .es-hero-orb-1 { width: 340px; height: 340px; top: -120px; right: -60px; }
  .es-hero-orb-2 { width: 240px; height: 240px; bottom: -90px; left: -50px; }
  .es-hero-card-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .es-hero-metric-card { padding: 16px 14px; }
  .es-hero-metric-val { font-size: 1.35rem; }
  /* Sections */
  .es-sec { padding: 52px 0; }
  .es-sec-head { margin-bottom: 36px; }
  .es-sec-head h2, .es-sec-title { font-size: 1.5rem; }
  .es-showcase { padding: 48px 0; }
  .es-showcase-title { font-size: 1.45rem; }
  .es-showcase-sub { font-size: .9rem; }
  .es-cta-section { padding: 52px 0; }
  .es-cta-title { font-size: 1.5rem; }
  .es-cta-sub { font-size: .9rem; }
  .es-metric-item::after { display: none; }
  .es-metric-item { padding: 20px 10px; }
  .es-showcase-dark { padding: 28px 22px; }
  .es-showcase-dark h2 { font-size: 1.45rem; }
  /* Cards */
  .es-card { padding: 24px 20px; }
  .es-benefit-card { padding: 22px 18px; }
  .es-why-card { padding: 22px 18px; }
  .es-flow-card { padding: 18px 16px; }
  .es-consult { max-width: 520px; margin: 28px auto 0; padding: 24px 20px; }
  .es-highlight-box { padding: 18px 20px; }
  .es-faq-acc .accordion-button { font-size: .88rem; padding: 15px 18px; }
  .es-faq-acc .accordion-body { font-size: .87rem; padding: 4px 18px 18px; }
  .es-footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 575.98px) {
  /* Topbar: hide right-side items, keep phone only */
  .es-topbar { font-size: .75rem; }
  .es-topbar > .container-xl { flex-wrap: nowrap; }
  .es-topbar > .container-xl > div:last-child { display: none !important; }
  .es-topbar-phone.ms-1, .es-topbar-sep { display: none !important; }
  /* Hero */
  .es-hero { padding: 32px 0 28px; }
  .es-hero-orb-1 { width: 220px; height: 220px; top: -80px; right: -40px; }
  .es-hero-orb-2 { width: 160px; height: 160px; bottom: -60px; left: -30px; }
  .es-hero-title { font-size: 1.5rem; letter-spacing: -.3px; line-height: 1.15; }
  .es-hero-sub { font-size: .88rem; }
  .es-hero h1 { font-size: 1.55rem; }
  .es-hero-trust { font-size: .78rem; }
  .es-eyebrow { font-size: .71rem; }
  .es-badge { font-size: .7rem; padding: 4px 12px; }
  /* Hero metric cards */
  .es-hero-card-grid { gap: 8px; }
  .es-hero-metric-card { padding: 14px 12px; }
  .es-hero-metric-val { font-size: 1.2rem; }
  .es-hero-metric-label { font-size: .68rem; }
  /* Buttons: ensure min touch target */
  .btn-lg { padding: 12px 22px; font-size: .92rem; }
  /* Sections */
  .es-sec { padding: 40px 0; }
  .es-sec-head { margin-bottom: 28px; }
  .es-sec-head h2, .es-sec-title { font-size: 1.35rem; }
  .es-sec-sub { font-size: .88rem; }
  /* Trust bar item smaller on xs */
  .es-trust-item { padding: 4px 12px; font-size: .73rem; }
  /* Showcase */
  .es-showcase { padding: 40px 0; }
  .es-showcase-title { font-size: 1.3rem; }
  .es-showcase-stat-val { font-size: 1.4rem; }
  /* CTA */
  .es-cta-section { padding: 44px 0; }
  .es-cta-title { font-size: 1.35rem; }
  /* Cards */
  .es-card { padding: 20px 16px; }
  .es-card-icon, .es-card-ico { width: 44px; height: 44px; font-size: 1rem; border-radius: 11px; }
  .es-card-title, .es-card h3 { font-size: .95rem; }
  .es-benefit-card { padding: 18px 16px; }
  .es-benefit-icon, .es-benefit-ico { width: 44px; height: 44px; font-size: 1rem; border-radius: 11px; }
  .es-why-card { padding: 18px 16px; }
  .es-why-icon, .es-why-ico { width: 42px; height: 42px; font-size: 1rem; border-radius: 11px; }
  .es-flow-card { padding: 16px 14px; }
  .es-flow-num { width: 32px; height: 32px; font-size: .8rem; }
  .es-sidebar-card { padding: 20px 18px; }
  .es-highlight-box { flex-direction: column; padding: 16px 18px; }
  .es-faq-acc .accordion-button { font-size: .84rem; padding: 14px 16px; }
  .es-stat-strip { flex-wrap: wrap; }
  .es-stat-strip-item { flex: 1 1 50%; }
  .es-stat-strip-item:nth-child(2)::after { display: none; }
  /* Footer */
  .es-footer { padding: 44px 0 0; }
  .es-footer-about { max-width: 100%; }
  .es-footer-bottom { font-size: .7rem; }
  /* Tables */
  .es-table-wrap thead th { font-size: .75rem; padding: 10px 12px; white-space: normal; }
  .es-table-wrap tbody td { font-size: .79rem; padding: 10px 12px; }
  /* Legacy dark sections */
  .es-showcase-dark { padding: 22px 16px; border-radius: var(--es-r2); }
  .es-showcase-dark h2 { font-size: 1.25rem; }
  .es-cta-banner { padding: 28px 18px; border-radius: var(--es-r2); }
  .es-cta-banner h2 { font-size: 1.28rem; }
}

/* ── HERO CONSULTATION FORM ─────────────────────────────────── */
.es-hero-form-card {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border: 1px solid rgba(226,232,240,.9);
  border-radius: var(--es-r2);
  padding: 28px 26px 22px;
  box-shadow: 0 24px 64px rgba(37,99,235,.13), 0 4px 16px rgba(0,0,0,.06), 0 0 0 1px rgba(37,99,235,.05);
  position: relative;
  overflow: hidden;
}
.es-hero-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--es-grad-blue);
}
.es-hero-form-head { margin-bottom: 20px; }
.es-hero-form-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--es-text);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.es-hero-form-sub {
  font-size: .78rem;
  color: var(--es-text-3);
  margin: 0;
  line-height: 1.5;
}
.es-hero-form { display: flex; flex-direction: column; gap: 10px; }
.es-form-control {
  display: block;
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--es-border);
  border-radius: 10px;
  font-family: inherit;
  font-size: .87rem;
  color: var(--es-text);
  background: var(--es-off);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  -webkit-appearance: none;
  appearance: none;
}
.es-form-control:focus {
  border-color: var(--es-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37,99,235,.09);
}
.es-form-control::placeholder { color: var(--es-text-4); font-size: .85rem; }
select.es-form-control {
  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 fill='none' stroke='%2364748b' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.es-hero-form .btn.es-btn-primary { margin-top: 4px; padding: 13px; font-size: .92rem; border-radius: 12px; }
.es-hero-form-trust {
  text-align: center;
  font-size: .74rem;
  color: var(--es-text-4);
  margin-top: 14px;
  font-weight: 600;
  letter-spacing: .1px;
}
@media (max-width: 575.98px) {
  .es-hero-form-card { padding: 22px 18px 18px; }
  .es-form-control { font-size: .84rem; padding: 10px 13px; }
  .es-hero-form-title { font-size: 1rem; }
}

/* ── ADDITIONAL DESIGN POLISH ───────────────────────────────── */

/* Showcase stats: 2-col on mobile */
@media (max-width: 575.98px) {
  .es-showcase .row.g-3 > [class*="col-6"] { width: 50%; }
  .es-showcase-stat { padding: 16px 12px; }
}

/* Related cards: 2-col on xs */
@media (max-width: 575.98px) {
  .es-related-card { padding: 12px 14px; gap: 10px; }
  .es-related-icon { width: 34px; height: 34px; font-size: .8rem; }
  .es-related-card strong { font-size: .82rem; }
  .es-related-card span { font-size: .72rem; }
}

/* CTA trust items wrap nicely on mobile */
@media (max-width: 575.98px) {
  .es-cta-trust { font-size: .76rem; }
  .es-hero-trust { font-size: .75rem; gap: 4px; }
}

/* Sidebar item text wrapping on small widths */
@media (max-width: 767.98px) {
  .es-sidebar-item { flex-wrap: wrap; gap: 2px; }
  .es-sidebar-item strong { text-align: left; }
}

/* Smooth focus rings for accessibility */
.btn:focus-visible,
.es-mob-link:focus-visible,
.es-related-card:focus-visible,
.es-social-link:focus-visible,
.accordion-button:focus-visible {
  outline: 3px solid var(--es-blue);
  outline-offset: 2px;
}

/* Prevent card hover lift on touch devices to avoid sticky hover state */
@media (hover: none) {
  .es-card:hover,
  .es-benefit-card:hover,
  .es-why-card:hover,
  .es-flow-card:hover,
  .es-related-card:hover,
  .es-hero-metric-card:hover,
  .es-showcase-stat:hover { transform: none; }
}

/* Better overflow containment for hero section */
.es-hero { overflow-x: hidden; }

/* FAQ layout improvement: left-side text aligns better with accordion */
@media (max-width: 991.98px) {
  .es-faq-acc { margin-top: 0; }
}

/* Breadcrumb wraps cleanly on mobile */
@media (max-width: 575.98px) {
  .es-breadcrumb { font-size: .73rem; }
  .es-breadcrumb .breadcrumb-item.active { max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}

/* Footer columns even spacing on tablet */
@media (min-width: 576px) and (max-width: 991.98px) {
  .es-footer .row > [class*="col-sm-6"] { margin-bottom: 32px; }
}

/* Trust bar on tablet — allow 2-row wrap instead of cut-off */
@media (min-width: 768px) and (max-width: 991.98px) {
  .es-trust-bar-inner { flex-wrap: wrap; gap: 4px 0; justify-content: center; }
  .es-trust-item { padding: 4px 16px; }
}

/* Offcanvas body scroll */
.es-offcanvas .offcanvas-body { overflow-y: auto; }

/* Hero badge line-height for multi-word wrap */
.es-badge { line-height: 1.5; text-align: center; }

/* Flow card CTA button sizing on mobile */
@media (max-width: 575.98px) {
  .es-flow-card-cta .btn { font-size: .85rem; padding: 10px 18px; }
  .es-flow-cta-icon { width: 44px; height: 44px; font-size: 1.1rem; }
}

/* ── STICKY FLOATING CTA ───────────────────────────────────── */
.es-sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 1050;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--es-blue);
  color: #fff;
  padding: 13px 22px;
  border-radius: 50px;
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,99,235,.45), 0 2px 8px rgba(0,0,0,.15);
  transition: transform .2s ease, box-shadow .2s ease, opacity .3s;
  font-family: inherit;
}
.es-sticky-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,99,235,.55), 0 4px 12px rgba(0,0,0,.2);
  color: #fff;
}
.es-sticky-cta.es-sticky-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}
@media (max-width: 575.98px) {
  .es-sticky-cta { bottom: 16px; right: 12px; padding: 11px 16px; font-size: .82rem; }
  .es-sticky-cta span { display: none; }
  .es-sticky-cta { border-radius: 50%; width: 52px; height: 52px; justify-content: center; padding: 0; }
}

/* ── MID-PAGE CTA STRIP ────────────────────────────────────── */
.es-mid-cta {
  background: var(--es-blue);
  padding: 36px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.es-mid-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.es-mid-cta .container-xl { position: relative; }
.es-mid-cta-text {
  font-size: .875rem;
  color: rgba(255,255,255,.72);
  margin-top: 12px;
  margin-bottom: 0;
}

/* =============================================================

   FLOATING WHATSAPP BUTTON

   Fixed bottom-right button linking to WhatsApp chat.

   Stacked above the sticky CTA (bottom-right) to avoid overlap.

   Pulse ring draws attention.

   ============================================================= */

.es-whatsapp-btn {

  position: fixed;

  bottom: 100px;

  right: 24px;

  z-index: 1040;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 56px;

  height: 56px;

  border-radius: 50%;

  background: #25d366;

  color: #fff;

  font-size: 1.6rem;

  text-decoration: none;

  box-shadow: 0 4px 20px rgba(37, 211, 102, .45), 0 2px 8px rgba(0, 0, 0, .15);

  transition: transform .2s ease, box-shadow .2s ease;

}

.es-whatsapp-btn:hover {

  color: #fff;

  transform: translateY(-4px) scale(1.07);

  box-shadow: 0 8px 32px rgba(37, 211, 102, .6), 0 4px 12px rgba(0, 0, 0, .2);

}

/* Pulse ring animation — draws attention without being intrusive */

.es-whatsapp-btn::before {

  content: '';

  position: absolute;

  inset: -4px;

  border-radius: 50%;

  border: 2px solid rgba(37, 211, 102, .5);

  animation: es-wa-pulse 2s ease-out infinite;

}

@keyframes es-wa-pulse {

  0%   { opacity: 1;  transform: scale(1); }

  70%  { opacity: 0;  transform: scale(1.4); }

  100% { opacity: 0;  transform: scale(1.4); }

}

/* Smaller size on mobile */

@media (max-width: 575.98px) {

  .es-whatsapp-btn {

    bottom: 80px;

    right: 12px;

    width: 48px;

    height: 48px;

    font-size: 1.35rem;

  }

}

/* ── END FLOATING WHATSAPP BUTTON ───────────────────────────── */ 