@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  /** @font family declaration */
  --hpi-ff-body: "Montserrat", sans-serif;
  --hpi-ff-p: "Montserrat", sans-serif;
  --hpi-ff-fontawesome: "Font Awesome 6 Pro";
  --hpi-ff-title: "Montserrat", sans-serif;
  /** @font size declaration */
  --hpi-fs-body: 16px;
  --hpi-fs-p: 16px;
  --hpi-fs-h1: 68px;
  --hpi-fs-h2: 36px;
  --hpi-fs-h3: 32px;
  --hpi-fs-h4: 28px;
  --hpi-fs-h5: 24px;
  --hpi-fs-h6: 18px;
  --hpi-fs-b1: 14px;
  --hpi-fs-b2: 16px;
  --hpi-fs-b3: 18px;
  --hpi-fs-b4: 22px;
  /** @font weight declaration */
  --hpi-fw-normal: normal;
  --hpi-fw-thin: 100;
  --hpi-fw-elight: 200;
  --hpi-fw-light: 300;
  --hpi-fw-regular: 400;
  --hpi-fw-medium: 500;
  --hpi-fw-sbold: 600;
  --hpi-fw-bold: 700;
  --hpi-fw-ebold: 800;
  --hpi-fw-black: 900;
  --hpi-body-text: #4D5E6F;
  --hpi-white: #FFFFFF;
  --hpi-light: #f0f4f8;
  --hpi-light-alt: #e8edf5;
  --hpi-black: #18100f;
  --hpi-text-body: #334155;
  --hpi-border: rgba(255, 255, 255, 0.1);
  --hpi-border-light: rgba(255, 255, 255, 0.15);
  --hpi-primary: #1e2473;
  --hpi-primary-dark: #003fe8;
  --hpi-primary-mid: #0d1f45;
  --hpi-secondary: #1e3a8a;
  --hpi-accent: #1d4ed8;
  --hpi-accent-light: #60a5fa;
  --hpi-glow-color: #00d4ff;
  --hpi-color-tertiary: #00b09b;
  --hpi-border-color: #d9d9d9;
  --hpi-success: #10b981;
  --hpi-warning: #f59e0b;
  --hpi-danger: #ef4444;
  --hpi-info: #06b6d4;
  --hpi-gradient: linear-gradient(135deg, #060e22 0%, #0a1836 40%, #0e2356 70%, #152b68 100%);
  --hpi-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --navy: #071540;
  --navy-mid: #0c2060;
  --blue-btn-bg: transparent;
  --blue-accent: #2563eb;
  --text-white: #ffffff;
  --text-sub: #94b4d8;
  --panel-bg: linear-gradient(135deg,#cdd9ef 0%,#dce8f8 40%,#eaf2ff 70%,#d8e6f6 100%);
  --divider: rgba(80,130,210,.2);
  --bg-deep: #020d2a;
  --bg-mid: #041235;
  --bg-card: rgba(5, 20, 60, 0.85);
  --blue-bright: #2d7aff;
  --blue-glow: #1a5fff;
  --cyan: #4af0ff;
  --text-white: #ffffff;
  --text-sub: #a0bedc;
  --text-muted: #5a80a8;
  --card-border: rgba(60, 120, 255, 0.35);
  --card-border-h:rgba(80, 160, 255, 0.7);
  --bg-page: #040e22;
  --bg-panel: #071428;
  --bg-card: #081932;
  --bg-card-inner: #0a1f3d;
  --blue-core: #0088ff;
  --blue-bright: #00aaff;
  --blue-pale: #007acc;
  --cyan-accent: #00cfff;
  --glow-color: rgba(0, 136, 255, 0.55);
  --glow-dim: rgba(0, 136, 255, 0.18);
  --text-primary: #e8f4ff;
  --text-secondary: #7aafd4;
  --text-muted: #3a6080;
  --border-subtle: rgba(0, 100, 200, 0.25);
  --border-card: rgba(0, 100, 200, 0.35);
  --radius-panel: 16px;
  --radius-card: 12px;
  --radius-inner: 8px;
}

.p-0 {
  padding: 0px;
}

.pt-0 {
  padding-top: 0px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pl-0 {
  padding-left: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}

.py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.p-5 {
  padding: 5px;
}

.pt-5 {
  padding-top: 5px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pl-5 {
  padding-left: 5px;
}

.pr-5 {
  padding-right: 5px;
}

.px-5 {
  padding-left: 5px;
  padding-right: 5px;
}

.py-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.p-10 {
  padding: 10px;
}

.pt-10 {
  padding-top: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pl-10 {
  padding-left: 10px;
}

.pr-10 {
  padding-right: 10px;
}

.px-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.p-15 {
  padding: 15px;
}

.pt-15 {
  padding-top: 15px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pl-15 {
  padding-left: 15px;
}

.pr-15 {
  padding-right: 15px;
}

.px-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.py-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.p-16 {
  padding: 16px;
}

.pt-16 {
  padding-top: 16px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pl-16 {
  padding-left: 16px;
}

.pr-16 {
  padding-right: 16px;
}

.px-16 {
  padding-left: 16px;
  padding-right: 16px;
}

.py-16 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.p-20 {
  padding: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.p-25 {
  padding: 25px;
}

.pt-25 {
  padding-top: 25px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pl-25 {
  padding-left: 25px;
}

.pr-25 {
  padding-right: 25px;
}

.px-25 {
  padding-left: 25px;
  padding-right: 25px;
}

.py-25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.p-30 {
  padding: 30px;
}

.pt-30 {
  padding-top: 30px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-30 {
  padding-right: 30px;
}

.px-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.py-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.p-35 {
  padding: 35px;
}

.pt-35 {
  padding-top: 35px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pl-35 {
  padding-left: 35px;
}

.pr-35 {
  padding-right: 35px;
}

.px-35 {
  padding-left: 35px;
  padding-right: 35px;
}

.py-35 {
  padding-top: 35px;
  padding-bottom: 35px;
}

.p-40 {
  padding: 40px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pl-40 {
  padding-left: 40px;
}

.pr-40 {
  padding-right: 40px;
}

.px-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.p-45 {
  padding: 45px;
}

.pt-45 {
  padding-top: 45px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pl-45 {
  padding-left: 45px;
}

.pr-45 {
  padding-right: 45px;
}

.px-45 {
  padding-left: 45px;
  padding-right: 45px;
}

.py-45 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.p-50 {
  padding: 50px;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pl-50 {
  padding-left: 50px;
}

.pr-50 {
  padding-right: 50px;
}

.px-50 {
  padding-left: 50px;
  padding-right: 50px;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.p-60 {
  padding: 60px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pl-60 {
  padding-left: 60px;
}

.pr-60 {
  padding-right: 60px;
}

.px-60 {
  padding-left: 60px;
  padding-right: 60px;
}

.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.p-70 {
  padding: 70px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pl-70 {
  padding-left: 70px;
}

.pr-70 {
  padding-right: 70px;
}

.px-70 {
  padding-left: 70px;
  padding-right: 70px;
}

.py-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.p-80 {
  padding: 80px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pl-80 {
  padding-left: 80px;
}

.pr-80 {
  padding-right: 80px;
}

.px-80 {
  padding-left: 80px;
  padding-right: 80px;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.p-90 {
  padding: 90px;
}

.pt-90 {
  padding-top: 90px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pl-90 {
  padding-left: 90px;
}

.pr-90 {
  padding-right: 90px;
}

.px-90 {
  padding-left: 90px;
  padding-right: 90px;
}

.py-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.p-100 {
  padding: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pl-100 {
  padding-left: 100px;
}

.pr-100 {
  padding-right: 100px;
}

.px-100 {
  padding-left: 100px;
  padding-right: 100px;
}

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.m-0 {
  margin: 0px;
}

.mt-0 {
  margin-top: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

.ml-0 {
  margin-left: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.mx-0 {
  margin-left: 0px;
  margin-right: 0px;
}

.my-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.m-5 {
  margin: 5px;
}

.mt-5 {
  margin-top: 5px;
}

.mb-5 {
  margin-bottom: 5px;
}

.ml-5 {
  margin-left: 5px;
}

.mr-5 {
  margin-right: 5px;
}

.mx-5 {
  margin-left: 5px;
  margin-right: 5px;
}

.my-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.m-10 {
  margin: 10px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.mx-10 {
  margin-left: 10px;
  margin-right: 10px;
}

.my-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.m-15 {
  margin: 15px;
}

.mt-15 {
  margin-top: 15px;
}

.mb-15 {
  margin-bottom: 15px;
}

.ml-15 {
  margin-left: 15px;
}

.mr-15 {
  margin-right: 15px;
}

.mx-15 {
  margin-left: 15px;
  margin-right: 15px;
}

.my-15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.m-16 {
  margin: 16px;
}

.mt-16 {
  margin-top: 16px;
}

.mb-16 {
  margin-bottom: 16px;
}

.ml-16 {
  margin-left: 16px;
}

.mr-16 {
  margin-right: 16px;
}

.mx-16 {
  margin-left: 16px;
  margin-right: 16px;
}

.my-16 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.m-20 {
  margin: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.mx-20 {
  margin-left: 20px;
  margin-right: 20px;
}

.my-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.m-25 {
  margin: 25px;
}

.mt-25 {
  margin-top: 25px;
}

.mb-25 {
  margin-bottom: 25px;
}

.ml-25 {
  margin-left: 25px;
}

.mr-25 {
  margin-right: 25px;
}

.mx-25 {
  margin-left: 25px;
  margin-right: 25px;
}

.my-25 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.m-30 {
  margin: 30px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.ml-30 {
  margin-left: 30px;
}

.mr-30 {
  margin-right: 30px;
}

.mx-30 {
  margin-left: 30px;
  margin-right: 30px;
}

.my-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.m-35 {
  margin: 35px;
}

.mt-35 {
  margin-top: 35px;
}

.mb-35 {
  margin-bottom: 35px;
}

.ml-35 {
  margin-left: 35px;
}

.mr-35 {
  margin-right: 35px;
}

.mx-35 {
  margin-left: 35px;
  margin-right: 35px;
}

.my-35 {
  margin-top: 35px;
  margin-bottom: 35px;
}

.m-40 {
  margin: 40px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.ml-40 {
  margin-left: 40px;
}

.mr-40 {
  margin-right: 40px;
}

.mx-40 {
  margin-left: 40px;
  margin-right: 40px;
}

.my-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.m-45 {
  margin: 45px;
}

.mt-45 {
  margin-top: 45px;
}

.mb-45 {
  margin-bottom: 45px;
}

.ml-45 {
  margin-left: 45px;
}

.mr-45 {
  margin-right: 45px;
}

.mx-45 {
  margin-left: 45px;
  margin-right: 45px;
}

.my-45 {
  margin-top: 45px;
  margin-bottom: 45px;
}

.m-50 {
  margin: 50px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.ml-50 {
  margin-left: 50px;
}

.mr-50 {
  margin-right: 50px;
}

.mx-50 {
  margin-left: 50px;
  margin-right: 50px;
}

.my-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.m-60 {
  margin: 60px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.ml-60 {
  margin-left: 60px;
}

.mr-60 {
  margin-right: 60px;
}

.mx-60 {
  margin-left: 60px;
  margin-right: 60px;
}

.my-60 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.m-70 {
  margin: 70px;
}

.mt-70 {
  margin-top: 70px;
}

.mb-70 {
  margin-bottom: 70px;
}

.ml-70 {
  margin-left: 70px;
}

.mr-70 {
  margin-right: 70px;
}

.mx-70 {
  margin-left: 70px;
  margin-right: 70px;
}

.my-70 {
  margin-top: 70px;
  margin-bottom: 70px;
}

.m-80 {
  margin: 80px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.ml-80 {
  margin-left: 80px;
}

.mr-80 {
  margin-right: 80px;
}

.mx-80 {
  margin-left: 80px;
  margin-right: 80px;
}

.my-80 {
  margin-top: 80px;
  margin-bottom: 80px;
}

.m-90 {
  margin: 90px;
}

.mt-90 {
  margin-top: 90px;
}

.mb-90 {
  margin-bottom: 90px;
}

.ml-90 {
  margin-left: 90px;
}

.mr-90 {
  margin-right: 90px;
}

.mx-90 {
  margin-left: 90px;
  margin-right: 90px;
}

.my-90 {
  margin-top: 90px;
  margin-bottom: 90px;
}

.m-100 {
  margin: 100px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.ml-100 {
  margin-left: 100px;
}

.mr-100 {
  margin-right: 100px;
}

.mx-100 {
  margin-left: 100px;
  margin-right: 100px;
}

.my-100 {
  margin-top: 100px;
  margin-bottom: 100px;
}

.w-130 {
  width: 130px;
}

.w-135 {
  width: 135px;
}

.w-140 {
  width: 140px;
}

.w-150 {
  width: 150px;
}

.w-200 {
  width: 200px;
}

.mt--50 {
  margin-top: -50px;
}

.m-auto {
  margin: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.mt-auto {
  margin-top: auto;
}

.mb-auto {
  margin-bottom: auto;
}

.gap-05 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-16 {
  gap: 16px;
}

.gap-20 {
  gap: 20px;
}

.gap-25 {
  gap: 25px;
}

.gap-30 {
  gap: 30px;
}

.gap-35 {
  gap: 35px;
}

.hpi-img-border {
  border-radius: 100%;
  border: 4px solid rgba(255, 255, 255, 0.25);
}

.hpi-bt {
  border-top: 1px solid #e4ecf7;
}

.hpi-br {
  border-right: 1px solid #e4ecf7;
}

.hpi-bb {
  border-bottom: 1px solid #e4ecf7;
}

.hpi-bl {
  border-left: 1px solid #e4ecf7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #eee;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--hpi-ff-title);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 10px;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

.page-breadcrumb-wrap {
  font-family: var(--hpi-ff-body);
  font-size: 0.9rem;
  color: var(--hpi-body-text);
  margin-bottom: 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

.hpi-play-btn {
  animation: pulse-white 2s infinite;
}

.hpi-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2.5px solid #5892d3;
  background: linear-gradient(to right, #fbfbfd 0%, #f7f8fc 35%, #e5effb 45%, #caddf6 65%, #c3d9f6 75%, #a7c6ef 90%, #8fb7ea 100%);
  padding: 0;
  box-shadow: 0 6px 32px rgba(0, 59, 140, 0.45), 0 2px 8px rgba(0, 30, 80, 0.3);
}

.hpi-nav-inner {
  display: flex;
  align-items: stretch;
  padding: 0;
  gap: 0;
}

.hpi-header-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  padding: 0 10px 1px 0;
}
.hpi-header-logo-wrap.left-sidebar {
  margin-left: -18px;
}
.hpi-header-logo-wrap::before {
  content: "";
  position: absolute;
  top: 71px;
  bottom: 0;
  right: 99%;
  width: 500px;
  background: #fbfbfd;
  height: 32px;
}
.hpi-header-logo-wrap a.logo {
  z-index: 2;
  position: relative;
  display: flex;
  align-items: center;
}
.hpi-header-logo-wrap a.logo img {
  height: 97px;
  width: auto;
  margin-bottom: -34px;
}
.hpi-header-logo-wrap .hpi-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  z-index: 2;
  position: relative;
}
.hpi-header-logo-wrap .hpi-logo-text .logo-top {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  color: #1a3a8a;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hpi-header-logo-wrap .hpi-logo-text .logo-main {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #1a3a8a;
  letter-spacing: -0.01em;
}
.hpi-header-logo-wrap .hpi-logo-text .logo-sub {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  color: #4a6fa5;
  letter-spacing: 0.02em;
}

.hpi-header-wrap {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 24px;
  padding-left: 0;
}

.hpi-nav-collapse {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 20px 0;
  margin-bottom: 1px;
}

.hpi-nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
}
.hpi-nav-links .nav-link {
  position: relative;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1e2473;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.hpi-nav-links .nav-link:hover {
  color: var(--hpi-primary-dark);
  background: rgba(255, 255, 255, 0.15);
}
.hpi-nav-links .nav-link.active {
  color: var(--hpi-primary-dark);
  background: rgba(255, 255, 255, 0.18);
}
.hpi-nav-links .nav-link.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 3px;
  background: var(--hpi-primary-dark);
  border-radius: 2px;
}
@media (max-width: 1199.98px) {
  .hpi-nav-links {
    gap: 0;
  }
  .hpi-nav-links .nav-link {
    padding: 8px 9px;
    font-size: 0.75rem;
  }
}

.hpi-btn-classy {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #1a60ff 0%, #0d40e0 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(26, 77, 255, 0.4), 0 1px 4px rgba(26, 77, 255, 0.3);
  transition: box-shadow 0.25s, transform 0.2s;
  margin-left: 20px;
  letter-spacing: 0.01em;
}
.hpi-btn-classy i {
  font-size: 0.78rem;
  transition: transform 0.2s ease;
}
.hpi-btn-classy:hover {
  box-shadow: 0 6px 28px rgba(26, 77, 255, 0.55), 0 2px 8px rgba(26, 77, 255, 0.4);
  transform: translateY(-1px);
}
.hpi-btn-classy:hover i {
  transform: translateX(3px);
}

.hpi-toggler {
  display: none;
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  color: #ffffff;
  margin-left: auto;
}
@media (max-width: 991.98px) {
  .hpi-toggler {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 991.98px) {
  .hpi-navbar {
    background: #fbfbfd !important;
    height: 72px;
  }
  .hpi-toggler i {
    color: #1e2473;
    font-size: 1.25rem;
  }
  .hpi-nav-collapse {
    display: none;
    width: 100%;
    flex: none;
  }
  .hpi-nav-collapse.open {
    display: block;
    padding: 12px 0 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  .hpi-nav-collapse.open .hpi-nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .hpi-header-wrap {
    position: absolute;
    padding-bottom: 0;
    background-color: #fff;
    z-index: 999;
  }
  .hpi-header-wrap .hpi-nav-cta > a {
    margin-top: 10px;
  }
  .hpi-header-logo-wrap::before {
    top: 59px;
    height: 38px;
  }
  .mobile-menu.offcanvas {
    background: linear-gradient(150deg, #041e40 0%, #010d25 50%, #010917 100%);
  }
  .mobile-menu__header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .mobile-menu__close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
  }
  .mobile-menu__title img {
    height: 90px;
    width: auto;
    padding: 10px 0 10px 20px;
  }
  .mobile-menu__body {
    display: flex;
    flex-direction: column;
    padding: 40px 20px 20px;
    gap: 24px;
  }
  .mobile-menu__body .hpi-nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .mobile-menu__body .hpi-nav-links .nav-link {
    font-size: 14px;
    padding: 7px 12px;
    color: #fff;
    font-weight: 400;
  }
  .mobile-menu__body .hpi-nav-cta > a {
    font-size: 1.25rem;
    padding: 12px 20px;
  }
}
.hpi_bg-glow {
  position: relative;
}
.hpi_bg-glow::before {
  content: "";
  position: absolute;
  left: -330px;
  top: -160px;
  right: auto;
  bottom: auto;
  z-index: -1;
  background: #fff;
  pointer-events: none;
  width: 900px;
  height: 600px;
  opacity: 1;
  -webkit-filter: blur(80px);
  filter: blur(80px);
}

.hpi-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: url(../images/shape/header-bg.png);
  background-size: 100% 100%; /* makes it fill the screen */
  background-repeat: no-repeat; /* prevents tiling */
  background-position: center; /* centers the image */
}
.hpi-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(29, 114, 232, 0.18) 0%, transparent 60%), radial-gradient(ellipse 40% 50% at 55% 30%, rgba(0, 180, 216, 0.1) 0%, transparent 55%);
  pointer-events: none;
}
.hpi-hero .hpi-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 620px;
  padding: 0;
  gap: 40px;
}
@media (max-width: 991.98px) {
  .hpi-hero .hpi-hero-inner {
    flex-direction: column;
    padding: 100px 0 60px;
  }
}
.hpi-hero .hpi-hero-text {
  flex: 0 0 52%;
  max-width: 52%;
}
@media (max-width: 1199.98px) {
  .hpi-hero .hpi-hero-text {
    flex: 0 0 55%;
    max-width: 55%;
  }
}
@media (max-width: 991.98px) {
  .hpi-hero .hpi-hero-text {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
}
.hpi-hero .hpi-hero-label {
  display: inline-block;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--hpi-primary);
  margin-bottom: 16px;
}
.hpi-hero .hpi-hero-heading {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--hpi-black);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hpi-hero .hpi-hero-heading span {
  color: #60a5fa;
}
.hpi-hero .hpi-hero-desc {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 0.95rem;
  color: var(--hpi-text-body);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 32px;
}
@media (max-width: 991.98px) {
  .hpi-hero .hpi-hero-desc {
    margin: 0 auto 32px;
  }
}
.hpi-hero .hpi-hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
@media (max-width: 991.98px) {
  .hpi-hero .hpi-hero-ctas {
    justify-content: center;
  }
}
.hpi-hero .btn-hpi-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #1e2473;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.15s ease;
}
.hpi-hero .btn-hpi-outline i {
  font-size: 0.8rem;
  transition: transform 0.2s;
}
.hpi-hero .btn-hpi-outline:hover {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  color: var(--hpi-primary-dark);
}
.hpi-hero .btn-hpi-outline:hover i {
  transform: translateX(3px);
}
.hpi-hero .btn-hpi-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: #1d72e8;
  color: #ffffff;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.15s ease;
  border: none;
}
.hpi-hero .btn-hpi-solid i {
  font-size: 0.8rem;
  transition: transform 0.2s;
}
.hpi-hero .btn-hpi-solid:hover {
  background: #1a5ece;
  color: #ffffff;
}
.hpi-hero .btn-hpi-solid:hover i {
  transform: translateX(3px);
}

.hpi-hero-bottom {
  background: rgba(0, 31, 83, 0.9);
  z-index: 1;
  padding: 15px 0;
}
.hpi-hero-bottom .hpi-trust-bar {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  .hpi-hero-bottom .hpi-trust-bar {
    justify-content: center;
  }
}
.hpi-hero-bottom .hpi-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.hpi-hero-bottom .hpi-trust-item:first-child {
  padding-left: 0;
}
.hpi-hero-bottom .hpi-trust-item:last-child {
  border-right: none;
}
.hpi-hero-bottom .hpi-trust-item i {
  font-size: 0.9rem;
  color: #60a5fa;
}
.hpi-hero-bottom .hpi-trust-item span {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--hpi-white);
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .hpi-hero-bottom .hpi-trust-item {
    padding: 6px 12px;
    border-right: none;
  }
}

.hpi-hero-visual {
  flex: 0 0 48%;
  max-width: 48%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 1199.98px) {
  .hpi-hero-visual {
    flex: 0 0 45%;
    max-width: 45%;
  }
}
@media (max-width: 991.98px) {
  .hpi-hero-visual {
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }
}

.hpi-hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
}
.hpi-hero-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
  filter: drop-shadow(0 20px 60px rgba(29, 114, 232, 0.4));
}

.hpi-live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}
.hpi-live-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 8px #f59e0b;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hpi-score-main {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hpi-score-main .hpi-score-label {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}
.hpi-score-main .hpi-score-value {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.03em;
}
.hpi-score-main .hpi-score-value sup {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  top: -0.8em;
}
.hpi-score-main .hpi-score-tag {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  color: #34d399;
  margin-top: 2px;
}

.hpi-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.hpi-metric:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.hpi-metric .hpi-metric-label {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hpi-metric .hpi-metric-val {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  color: #ffffff;
}
.hpi-metric .hpi-metric-stars {
  color: #fbbf24;
  font-size: 0.7rem;
  letter-spacing: 1px;
}

.hpi-ring-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.hpi-ring-wrap svg {
  flex-shrink: 0;
}
.hpi-ring-wrap .hpi-ring-info .hpi-metric-label {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 0.63rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hpi-ring-wrap .hpi-ring-info .hpi-metric-val {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  color: #ffffff;
}

/* ---- panel wrapper ---- */
.hpi-live-card {
  width: 405px;
  z-index: 9;
  margin-bottom: -50px;
  background: var(--bg-panel);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-panel);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0, 80, 180, 0.25), 0 0 120px rgba(0, 60, 140, 0.15);
  /* ---- panel header ---- */
  /* ---- cards list ---- */
  /* =========================================================
    GLOW BORDER CARD
    The trick:
      .card is the outer shell — its ::before is the glow layer.
      .card-inner is the visible surface on top.
    ========================================================= */
  /* Glow gradient layer — follows mouse via CSS vars */
  /* Static border overlay (always) */
  /* Actual card surface sits above the glow layer */
  /* big score */
  /* stars */
  /* ---- sparkline ---- */
  /* ---- section divider between score-card and sub-cards ---- */
}
.hpi-live-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px 10px;
  background: linear-gradient(180deg, #0b2248 0%, #071428 100%);
  border-bottom: 1px solid var(--border-subtle);
}
.hpi-live-card-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
}
.hpi-live-card .live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  color: var(--cyan-accent);
  letter-spacing: 0.08em;
}
.hpi-live-card .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan-accent);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
.hpi-live-card .cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 7px 7px 7px;
  gap: 7px;
}
.hpi-live-card .card {
  position: relative;
  border-radius: var(--radius-card);
  padding: 1.5px; /* space for the glow border */
  cursor: default;
  isolation: isolate;
  /* static dim border always present */
  background: var(--bg-card);
  transition: box-shadow 0.3s ease;
}
.hpi-live-card .card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(600px circle at var(--mx) var(--my), rgba(0, 160, 255, 0.65), rgba(0, 80, 200, 0.15) 45%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}
.hpi-live-card .card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid var(--border-card);
  pointer-events: none;
  z-index: 2;
  transition: border-color 0.3s ease;
}
.hpi-live-card .card:hover::before {
  opacity: 1;
}
.hpi-live-card .card:hover::after {
  border-color: rgba(0, 160, 255, 0.55);
}
.hpi-live-card .card:hover {
  box-shadow: 0 0 30px rgba(0, 120, 255, 0.2), 0 0 60px rgba(0, 80, 200, 0.12);
}
.hpi-live-card .card-inner {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border-radius: calc(var(--radius-card) - 1.5px);
  padding: 10px 10px 16px;
  /* ---- card label row ---- */
  /* ---- arc gauge (HPI Score card) ---- */
  /* ---- metric row ---- */
}
.hpi-live-card .card-inner .card-label {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--hpi-white);
  margin: 2px 0 8px 5px;
}
.hpi-live-card .card-inner .gauge-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  margin-top: -20px;
}
.hpi-live-card .card-inner .gauge-label {
  position: absolute;
  text-align: center;
  top: 75%;
  left: 49%;
  transform: translate(-50%, -44%);
}
.hpi-live-card .card-inner .metric-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  margin-left: 5px;
  /* icon circle */
}
.hpi-live-card .card-inner .metric-row .icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border-card);
  background: var(--bg-card-inner);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.hpi-live-card .card-inner .metric-row .card:hover .icon-wrap {
  border-color: rgba(0, 160, 255, 0.5);
  box-shadow: 0 0 16px rgba(0, 120, 255, 0.3);
}
.hpi-live-card .card-inner .metric-row .icon-wrap svg {
  display: block;
}
.hpi-live-card .score-block {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.hpi-live-card .score-value {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.hpi-live-card .score-denom {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.hpi-live-card .score-pct {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.hpi-live-card .score-label {
  font-size: 10px;
  color: var(--text-secondary);
  margin-top: 2px;
}
.hpi-live-card .stars {
  display: flex;
  gap: 3px;
  margin-bottom: 2px;
}
.hpi-live-card .star {
  width: 18px;
  height: 18px;
  color: #f5b400;
}
.hpi-live-card .star-half {
  color: rgba(245, 180, 0, 0.5019607843);
}
.hpi-live-card .sparkline-wrap {
  margin-top: 10px;
  opacity: 0.55;
}
.hpi-live-card .sparkline-wrap svg {
  display: block;
  width: 100%;
  height: 28px;
}
.hpi-live-card .hpi-scorebox .sparkline-wrap {
  margin-top: 2px;
}
.hpi-live-card .cards-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 0 -14px;
  display: none;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 207, 255, 0.6);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
    box-shadow: 0 0 0 5px rgba(0, 207, 255, 0);
  }
}
/* ---- responsive centering ---- */
@media (max-width: 991.98px) {
  .hpi-hero .hpi-hero-inner {
    padding: 40px 20px;
  }
  .hpi-hero {
    background-size: 600% 100%;
    background-position: 0% center;
    animation: bg-pan 20s linear infinite;
  }
  .hpi-hero .hpi-hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .hpi-hero .hpi-hero-ctas {
    justify-content: center;
    margin-bottom: 0;
  }
}
.hpi-features {
  width: 100%;
  background: linear-gradient(135deg, #ccddf0 0%, #e8f1fb 30%, #f0f6ff 50%, #e4eef9 70%, #c8d9ee 100%);
  border-radius: 14px;
  border: 1px solid rgba(100, 150, 220, 0.2);
  box-shadow: 0 2px 20px rgba(60, 100, 180, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: stretch;
  padding: 30px 0;
  overflow: hidden;
  /* vertical divider */
}
.hpi-features .feature {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 20px;
  position: relative;
  transition: background 0.25s ease;
}
.hpi-features .feature:hover {
  background: rgba(255, 255, 255, 0.35);
}
.hpi-features .feature + .feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(80, 130, 200, 0.3) 30%, rgba(80, 130, 200, 0.3) 70%, transparent);
}
.hpi-features .icon-wrap {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 8px rgba(0, 80, 200, 0.35));
}
.hpi-features .icon-wrap svg, .hpi-features .icon-wrap img {
  width: 68px;
  height: auto;
}
.hpi-features .text {
  flex: 1;
  min-width: 0;
}
.hpi-features .feat-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a2d4a;
  line-height: 1.25;
  margin-bottom: 7px;
  letter-spacing: -0.01em;
}
.hpi-features .feat-desc {
  font-size: 12.5px;
  color: #4a6080;
  line-height: 1.5;
  font-weight: 400;
}

/* ---- responsive ---- */
@media (max-width: 700px) {
  .strip {
    flex-direction: column;
  }
  .feature + .feature::before {
    top: 0;
    bottom: auto;
    left: 16px;
    right: 16px;
    width: auto;
    height: 1px;
  }
}
@media (max-width: 991.98px) {
  .hpi-features {
    padding: 20px 0;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
  }
  .hpi-features .feature {
    min-width: 280px;
    scroll-snap-align: start;
  }
}
.hpi-pillars {
  width: 100%;
  padding: 40px 40px 48px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 120% 80% at 50% 0%, #0a2060 0%, #041235 45%, #020d2a 100%);
  /* ===================== HEADER ===================== */
  /* ===================== SWIPER ===================== */
  /* ===================== CARD ===================== */
  /* top glow streak */
  /* bottom subtle gradient */
  /* icon area */
  /* ===================== SWIPER PAGINATION ===================== */
  /* ===================== SWIPER NAV ===================== */
  /* ===================== PROGRESS BAR ===================== */
}
.hpi-pillars::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(1px 1px at 15% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 100%), radial-gradient(1px 1px at 70% 15%, rgba(255, 255, 255, 0.25) 0%, transparent 100%), radial-gradient(1.5px 1.5px at 40% 60%, rgba(255, 255, 255, 0.2) 0%, transparent 100%), radial-gradient(1px 1px at 85% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 100%), radial-gradient(1px 1px at 25% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
  pointer-events: none;
}
.hpi-pillars .header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.hpi-pillars .header-text {
  text-align: center;
  flex: 1;
  padding: 0 120px;
}
.hpi-pillars .eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-sub);
  margin-bottom: 10px;
}
.hpi-pillars .main-title {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  color: var(--hpi-white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 10px;
  text-shadow: 0 0 40px rgba(80, 140, 255, 0.5);
}
.hpi-pillars .subtitle {
  font-size: 14px;
  color: var(--text-sub);
  font-weight: 400;
}
.hpi-pillars .btn-explore {
  flex-shrink: 0;
  align-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-bright);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 0 24px rgba(45, 122, 255, 0.5);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
}
.hpi-pillars .btn-explore:hover {
  box-shadow: 0 0 36px rgba(45, 122, 255, 0.75);
  transform: translateY(-1px);
}
.hpi-pillars .btn-explore svg {
  width: 16px;
  height: 16px;
}
.hpi-pillars .swiper {
  width: 100%;
  padding: 10px 4px 52px !important;
  position: relative;
  z-index: 1;
}
.hpi-pillars .swiper-slide {
  height: auto;
  display: flex;
}
.hpi-pillars .card {
  flex: 1;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 22px 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  backdrop-filter: blur(10px);
  /* inner top gradient */
  background: linear-gradient(180deg, #0844b7 0%, #0730a3 3%, #00074e 35%, #00074e 100%);
}
.hpi-pillars .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100, 170, 255, 0.7), transparent);
  transition: opacity 0.3s;
}
.hpi-pillars .card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(0deg, rgba(10, 30, 80, 0.4), transparent);
  pointer-events: none;
}
.hpi-pillars .card:hover {
  border-color: var(--card-border-h);
  box-shadow: 0 0 30px rgba(60, 120, 255, 0.3), 0 0 60px rgba(30, 80, 200, 0.15), inset 0 0 20px rgba(60, 120, 255, 0.06);
  transform: translateY(-4px);
}
.hpi-pillars .card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hpi-pillars .card-icon svg, .hpi-pillars .card-icon img {
  width: 72px;
  height: auto;
  border: 1px solid #0730a3;
  border-radius: 100%;
}
.hpi-pillars .card-num {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-white);
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
}
.hpi-pillars .card-title {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-white);
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
.hpi-pillars .swiper-pagination {
  bottom: 10px !important;
}
.hpi-pillars .swiper-pagination-bullet {
  background: rgba(80, 140, 255, 0.4) !important;
  opacity: 1 !important;
  width: 6px !important;
  height: 6px !important;
  transition: background 0.3s, width 0.3s;
}
.hpi-pillars .swiper-pagination-bullet-active {
  background: var(--blue-bright) !important;
  width: 20px !important;
  border-radius: 3px !important;
}
.hpi-pillars .swiper-button-prev,
.hpi-pillars .swiper-button-next {
  width: 36px !important;
  height: 36px !important;
  background: rgba(10, 30, 80, 0.85) !important;
  border: 1px solid rgba(60, 120, 255, 0.4) !important;
  border-radius: 50% !important;
  top: calc(50% - 26px) !important;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 12px rgba(40, 100, 255, 0.2);
}
.hpi-pillars .swiper-button-prev:hover,
.hpi-pillars .swiper-button-next:hover {
  background: rgba(30, 70, 180, 0.9) !important;
  box-shadow: 0 0 20px rgba(60, 140, 255, 0.4) !important;
}
.hpi-pillars .swiper-button-prev::after,
.hpi-pillars .swiper-button-next::after {
  font-size: 12px !important;
  color: #ffffff !important;
  font-weight: 700;
}
.hpi-pillars .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-bright), var(--cyan));
  border-radius: 1px;
  animation: progress 3s linear infinite;
  box-shadow: 0 0 8px rgba(74, 240, 255, 0.6);
}

@keyframes progress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .hpi-pillars {
    padding: 30px 20px 40px;
  }
  .hpi-pillars .header {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hpi-pillars .header-text {
    padding: 0;
  }
}
.hpi-score-section {
  background: #020d2a;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.hpi-score-section .hpi-score-boxview {
  width: 100%;
  background: radial-gradient(ellipse 120% 80% at 50% 0%, #e5ecf7 0%, #d5e0f3 45%, #dbe5f5 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.hpi-score-section .hpi-score-boxview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 0% 50%, rgba(29, 114, 232, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hpi-score-layout {
  justify-content: space-between;
}

.hpi-score-left {
  padding: 0 30px;
}
@media (max-width: 991.98px) {
  .hpi-score-left {
    padding: 0;
  }
}

.hpi-dash-prev {
  display: flex;
  gap: 0;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 16px 50px rgba(10, 30, 100, 0.2);
}
.hpi-dash-prev .dash-menubar {
  margin-top: 10px;
}
.hpi-dash-prev .dash-menubar img {
  width: 66px;
  height: auto;
  border-radius: 16px;
}
.hpi-dash-prev .dash-preview-swiper {
  border: 10px solid #e5ecf7;
  border-radius: 20px;
}
.hpi-dash-prev .dash-preview-swiper img {
  width: 100%;
  height: auto;
}

.hpi-score-trademark {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hpi-accent);
  margin-bottom: 15px;
  margin-top: 30px;
}

.hpi-score-headline {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  color: var(--hpi-primary-dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hpi-score-body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--hpi-body);
  line-height: 1.8;
  margin-bottom: 28px;
}

.hpi-score-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  color: #60a5fa;
  text-decoration: none;
  margin-bottom: 32px;
  transition: all 0.15s ease;
}
.hpi-score-link i {
  font-size: 0.8rem;
  transition: transform 0.2s;
}
.hpi-score-link:hover {
  color: #93c5fd;
}
.hpi-score-link:hover i {
  transform: translateX(3px);
}

.hpi-scale {
  display: flex;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 8px;
  gap: 10px;
}
.hpi-scale .hpi-scale-band {
  flex: 1;
  height: 6px;
}
.hpi-scale .hpi-scale-band.band-elite {
  background: #10b981;
}
.hpi-scale .hpi-scale-band.band-advanced {
  background: #1d72e8;
}
.hpi-scale .hpi-scale-band.band-progress {
  background: #6366f1;
}
.hpi-scale .hpi-scale-band.band-develop {
  background: #f59e0b;
}
.hpi-scale .hpi-scale-band.band-needs {
  background: #ef4444;
}

.hpi-scale-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.hpi-scale-labels span {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--hpi-primary-dark);
  text-align: center;
  flex: 1;
}

hpi-dash-prev end .hpi-dash-preview {
  background: linear-gradient(150deg, #041e40 0%, #010d25 50%, #010917 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.hpi-dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.hpi-dash-topbar .dash-title {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hpi-white);
}
.hpi-dash-topbar .dash-dots {
  display: flex;
  gap: 5px;
}
.hpi-dash-topbar .dash-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
}
.hpi-dash-topbar .dash-dots span:nth-child(1) {
  background: #ef4444;
}
.hpi-dash-topbar .dash-dots span:nth-child(2) {
  background: #f59e0b;
}
.hpi-dash-topbar .dash-dots span:nth-child(3) {
  background: #10b981;
}

.hpi-dash-body {
  display: flex;
}
@media (max-width: 767.98px) {
  .hpi-dash-body {
    flex-direction: column;
  }
}

.hpi-dash-sidebar {
  width: 48px;
  background: linear-gradient(150deg, #002769 0%, #012158 50%, #01173f 100%);
  box-shadow: 0 4px 10px rgba(0, 78, 252, 0.4), 0 3px 4px rgba(26, 77, 255, 0.3);
  border-radius: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 8px;
}
@media (max-width: 767.98px) {
  .hpi-dash-sidebar {
    display: none;
  }
}

.hpi-dash-tab {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--hpi-primary-dark);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.hpi-dash-tab i {
  color: var(--hpi-white);
}
.hpi-dash-tab.active, .hpi-dash-tab:hover {
  background: linear-gradient(150deg, #005efa 0%, #0030c6 50%, #003ae2 100%);
  color: #f9f9fe;
}

.hpi-dash-content {
  flex: 1;
  padding: 20px;
}

.hpi-dash-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 991.98px) {
  .hpi-dash-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575.98px) {
  .hpi-dash-row {
    grid-template-columns: 1fr;
  }
}

.hpi-dash-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px;
}
.hpi-dash-panel .panel-label {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hpi-white);
  margin-bottom: 10px;
}

.hpi-gauge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hpi-gauge-wrap .gauge-svg {
  width: 100px;
  height: 100px;
}
.hpi-gauge-wrap .gauge-score {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 1.6rem;
  color: var(--hpi-white);
  line-height: 1;
}
.hpi-gauge-wrap .gauge-score sup {
  font-size: 0.65rem;
  color: var(--hpi-white);
}
.hpi-gauge-wrap .gauge-tag {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  color: #34d399;
  text-align: center;
}

.hpi-trend-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
.hpi-trend-labels span {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 0.58rem;
  color: var(--hpi-white);
}

.hpi-dash-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 991.98px) {
  .hpi-dash-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .hpi-dash-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hpi-dash-metric {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px;
}
.hpi-dash-metric .dm-icon {
  font-size: 1rem;
  margin-bottom: 6px;
  display: block;
}
.hpi-dash-metric .dm-label {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--hpi-white);
  margin-bottom: 4px;
}
.hpi-dash-metric .dm-value {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--hpi-white);
  line-height: 1;
}
.hpi-dash-metric .dm-value span {
  font-size: 0.62rem;
  color: var(--hpi-white);
}

.hpi-dash-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--hpi-body);
  text-align: right;
}
.hpi-dash-footer a {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--hpi-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
}
.hpi-dash-footer a i {
  font-size: 0.7rem;
  transition: transform 0.2s;
}
.hpi-dash-footer a:hover {
  color: #93c5fd;
}
.hpi-dash-footer a:hover i {
  transform: translateX(3px);
}

@media (max-width: 991.98px) {
  .hpi-score-left {
    order: 1;
    text-align: center;
    padding: 0 10px;
  }
  .hpi-score-link {
    justify-content: center;
  }
  .hpi-dash-prev {
    order: 2;
  }
  .hpi-score-section {
    padding: 0;
  }
  .hpi-score-section .hpi-score-boxview {
    width: 100%;
    margin: 30px 0 30px 1px;
  }
}
.hpi-impact {
  display: flex;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(10, 30, 100, 0.2);
  min-height: 160px;
  /* ============ LEFT PANEL ============ */
  /* subtle shimmer overlay */
  /* ============ RIGHT PANEL ============ */
  /* ============ FEATURE ITEM ============ */
  /* vertical divider */
  /* icon */
}
.hpi-impact .left {
  flex-shrink: 0;
  width: 280px;
  background: linear-gradient(150deg, #132460 0%, #0a1840 50%, #060f2c 100%);
  padding: 28px 15px 28px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.hpi-impact .left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 140% 100% at 110% -10%, rgba(60, 120, 255, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hpi-impact .eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-sub);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.hpi-impact .hero-text {
  font-size: 24px;
  font-weight: 400;
  color: var(--text-white);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.hpi-impact .btn-discover {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 50px;
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
  z-index: 1;
}
.hpi-impact .btn-discover:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}
.hpi-impact .btn-discover svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}
.hpi-impact .right {
  flex: 1;
  background: var(--panel-bg);
  display: flex;
  align-items: stretch;
}
.hpi-impact .feature {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 10px 10px;
  position: relative;
  cursor: default;
  transition: background 0.25s;
}
.hpi-impact .feature:hover {
  background: rgba(255, 255, 255, 0.4);
}
.hpi-impact .feature + .feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--divider) 30%, var(--divider) 70%, transparent);
}
.hpi-impact .icon-wrap {
  width: 72px;
  height: 72px;
  margin-bottom: 12px;
  filter: drop-shadow(0 5px 10px rgba(20, 70, 200, 0.3));
  flex-shrink: 0;
}
.hpi-impact .icon-wrap svg,
.hpi-impact .icon-wrap img {
  width: 72px;
  height: 72px;
}
.hpi-impact .feat-title {
  font-size: 18px;
  font-weight: 400;
  color: #1a2e58;
  margin-bottom: 7px;
  line-height: 1.25;
}
.hpi-impact .feat-desc {
  font-size: 14px;
  color: #4a6080;
  line-height: 1.55;
  max-width: 190px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 720px) {
  .banner {
    flex-direction: column;
  }
  .left {
    width: 100%;
  }
  .feature + .feature::before {
    top: 0;
    bottom: auto;
    left: 16px;
    right: 16px;
    width: auto;
    height: 1px;
  }
}
@media (max-width: 991.98px) {
  .hpi-impact {
    flex-direction: column;
    min-height: auto;
    padding-top: 20px;
  }
  .hpi-impact .left {
    width: 100%;
  }
  .hpi-impact .right {
    padding: 20px 0;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
  }
  .hpi-impact .right .feature {
    min-width: 230px;
    scroll-snap-align: start;
  }
  .hpi-impact .feature {
    padding: 10px 20px;
  }
}
.hpi-footer {
  background: linear-gradient(135deg, #04091a 0%, #060e28 50%, #04091a 100%);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.hpi-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 40% 50%, rgba(29, 114, 232, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hpi-footer .footer-brand {
  padding-right: 2rem;
}
.hpi-footer .footer-brand .brand-logo {
  margin-bottom: 2rem;
  color: var(--hpi-white);
}
.hpi-footer .footer-brand .brand-logo .brand-med {
  color: var(--hpi-primary);
}
.hpi-footer .footer-brand .brand-logo img {
  max-width: 170px;
  height: auto;
}
.hpi-footer .footer-brand .brand-tagline {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--hpi-white);
  margin-bottom: 2rem;
  max-width: 280px;
  font-weight: 300;
}
.hpi-footer .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.hpi-footer .social-links .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--hpi-white);
  font-size: 1rem;
  text-decoration: none;
  transition: var(--hpi-transition);
  position: relative;
  overflow: hidden;
}
.hpi-footer .social-links .social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--hpi-primary);
  transform: translateY(100%);
  transition: var(--hpi-transition);
  z-index: -1;
}
.hpi-footer .social-links .social-link:hover {
  color: var(--hpi-white);
  border-color: var(--hpi-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}
.hpi-footer .social-links .social-link:hover::before {
  transform: translateY(0);
}
.hpi-footer .social-links .social-link i {
  position: relative;
  z-index: 1;
}
.hpi-footer .footer-links .footer-title {
  font-size: 1rem;
  font-weight: 200;
  color: var(--hpi-white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}
.hpi-footer .footer-links .footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--hpi-primary);
  border-radius: 2px;
}
.hpi-footer .footer-links .links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hpi-footer .footer-links .links-list li {
  margin-bottom: 0.75rem;
}
.hpi-footer .footer-links .links-list li a {
  color: var(--hpi-white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 300;
  transition: var(--hpi-transition);
  display: inline-block;
  position: relative;
}
.hpi-footer .footer-links .links-list li a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--hpi-text-hover);
  transition: var(--hpi-transition);
}
.hpi-footer .footer-links .links-list li a:hover {
  color: var(--hpi-white);
  transform: translateX(5px);
  text-decoration: underline;
}
.hpi-footer .footer-links .links-list li a:hover::before {
  width: 100%;
}

.hpi-footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.hpi-footer-tagline {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: -0.01em;
  max-width: 240px;
}
.hpi-footer-tagline span {
  color: var(--hpi-accent);
}

.hpi-footer-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.hpi-footer-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.hpi-footer-stat:first-child {
  padding-left: 0;
}
.hpi-footer-stat:last-child {
  border-right: none;
}
.hpi-footer-stat .stat-icon {
  font-size: 1.1rem;
  color: var(--hpi-accent);
  flex-shrink: 0;
}
.hpi-footer-stat .stat-body .stat-value {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--hpi-white);
  line-height: 1.1;
}
.hpi-footer-stat .stat-body .stat-label {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--hpi-white);
}
@media (max-width: 991.98px) {
  .hpi-footer-stat {
    padding: 8px 16px;
  }
}
@media (max-width: 767.98px) {
  .hpi-footer-stat {
    padding: 6px 14px;
  }
}

.btn-hpi-partner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: #1d72e8;
  color: var(--hpi-white);
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.15s ease;
  flex-shrink: 0;
}
.btn-hpi-partner i {
  font-size: 0.8rem;
  transition: transform 0.2s;
}
.btn-hpi-partner:hover {
  background: #1a5ece;
  color: var(--hpi-white);
  box-shadow: 0 4px 20px rgba(29, 114, 232, 0.45);
}
.btn-hpi-partner:hover i {
  transform: translateX(3px);
}

.hpi-menu-footer-body {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  margin-top: 28px;
}

.hpi-sub-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.hpi-sub-footer .hpi-copy {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}
.hpi-sub-footer .hpi-footer-links {
  display: flex;
  gap: 20px;
}
.hpi-sub-footer .hpi-footer-links a {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.hpi-sub-footer .hpi-footer-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991.98px) {
  .hpi-footer {
    padding: 20px 20px;
  }
  .hpi-footer .footer-brand .brand-logo img {
    max-width: 230px;
  }
}
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 200;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.tl-nav-btn {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.about-page-hero {
  position: relative;
  min-height: 160px;
  background: url("../images/service-group-bg.png") center/cover no-repeat;
  flex-direction: column;
  padding: 30px 0 30px;
}
.about-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 15, 58, 0.85) 0%, rgba(22, 26, 92, 0.75) 100%);
}
.about-page-hero .about-hero-inner {
  position: relative;
  z-index: 1;
}

.about-leaders {
  background: #eee;
}
.about-leaders .since-badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: rgba(30, 36, 115, 0.02);
  border: 1px solid rgba(30, 36, 115, 0.05);
  border-radius: 50px;
  padding: 6px 8px;
  color: #1e2473;
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 24px;
}
.about-leaders .since-badge img {
  width: 32px;
}
.about-leaders .since-badge i {
  font-size: 1rem;
}
.about-leaders .about-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.about-leaders .about-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1e2473;
  font-weight: 400;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.about-leaders .about-check-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e2473 0%, #1e3a8a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
  background-color: #1e2473;
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}
.about-leaders .about-img-wrap {
  position: relative;
  text-align: right;
  padding-top: 20px;
}
.about-leaders .about-img-wrap .main-img {
  width: 100%;
  border-radius: 14px;
  object-fit: contain;
  max-height: 480px;
}
.about-leaders .about-img-wrap .about-floating-card {
  position: absolute;
  bottom: 24px;
  right: 70px;
  background: var(--hpi-white);
  border-radius: 100%;
  padding: 20px 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 100px;
}
.about-leaders .about-img-wrap .about-floating-card .floating-text {
  text-align: center;
  width: 100%;
}
.about-leaders .about-img-wrap .about-floating-card .floating-text img {
  width: 58px;
  height: auto;
}

.about-business {
  background: #f0f4f8;
  padding: 80px 0;
}
.about-business .business-header {
  text-align: center;
  margin-bottom: 50px;
}
.about-business .biz-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-business .biz-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.35);
}
.about-business .biz-card .biz-card-img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
}
.about-business .biz-card .biz-card-icon-wrap {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 36, 115, 0.08) 0%, rgba(30, 36, 115, 0.15) 100%);
}
.about-business .biz-card .biz-card-icon-wrap .biz-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e2473 0%, #1e3a8a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #ffffff;
}
.about-business .biz-card .biz-card-body {
  padding: 24px 22px;
}
.about-business .biz-card .biz-card-body h4 {
  font-weight: 300;
  color: #1e2473;
  margin-bottom: 15px;
}
.about-business .biz-card .biz-card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-business .biz-card .biz-card-body ul li {
  font-size: 1rem;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #e8edf5;
}
.about-business .biz-card .biz-card-body ul li:last-child {
  border-bottom: none;
}
.about-business .biz-card .biz-card-body ul li i {
  color: #1e2473;
  font-size: 0.8rem;
}
.about-business .biz-card .biz-card-body p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}
.about-business .mission-strip {
  background: #ffffff;
  border-radius: 14px;
  padding: 32px 36px;
  margin-top: 30px;
  border-left: 5px solid #1e2473;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}
.about-business .mission-strip h4 {
  font-weight: 300;
  color: #1e2473;
  margin-bottom: 10px;
}
.about-business .mission-strip h4 span {
  color: #1e2473;
}
.about-business .mission-strip p {
  line-height: 1.75;
  margin: 0;
}

.about-journey {
  background: #ffffff;
  padding: 80px 0;
}
.about-journey .journey-header {
  margin-bottom: 48px;
}
.about-journey .timeline-swiper {
  overflow: hidden;
}
.about-journey .tl-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.about-journey .tl-slide .tl-top {
  padding: 0 12px 20px;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.about-journey .tl-slide .tl-top .tl-title {
  font-size: 1.25rem;
  font-weight: 300;
  color: #1e2473;
  margin-bottom: 12px;
}
.about-journey .tl-slide .tl-top .tl-desc {
  font-size: 14px;
  color: #334155;
  line-height: 1.55;
}
.about-journey .tl-slide .tl-line-row {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.about-journey .tl-slide .tl-line-row::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(30, 36, 115, 0.25);
  transform: translateY(-50%);
  z-index: 0;
}
.about-journey .tl-slide .tl-line-row .tl-year-dot {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a60ff 0%, #0d40e0 100%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 5px 16px;
  border-radius: 50px;
  box-shadow: 0 0 0 2px rgba(30, 36, 115, 0.15);
  white-space: nowrap;
}
.about-journey .tl-slide .tl-bottom {
  padding-top: 20px;
}
.about-journey .tl-slide .tl-bottom .tl-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(30, 36, 115, 0.05);
  border: 1px solid rgba(30, 36, 115, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #1e2473;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.about-journey .tl-slide .tl-bottom .tl-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-journey .tl-slide .tl-bottom .tl-icon--photo {
  border-color: #1e2473;
}
.about-journey .tl-slide:hover .tl-icon {
  background: linear-gradient(135deg, #1e2473 0%, #1e3a8a 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(30, 36, 115, 0.35);
}

.about-uniqueness {
  overflow: hidden;
  background: url("../images/tab-bg.jpg") left/cover no-repeat;
}
.about-uniqueness .uniq-tab-nav {
  position: relative;
  min-height: 520px;
  width: 25%;
  min-width: 280px;
  background: linear-gradient(150deg, #132460 0%, #0a1840 50%, #060f2c 100%);
  z-index: 2;
  border-radius: 14px 0 0 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
.about-uniqueness .uniq-tab-nav .uniq-nav-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 60px 30px;
}
.about-uniqueness .uniq-tab-nav .uniq-nav-inner .uniq-tab-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-uniqueness .uniq-tab-nav .uniq-nav-inner .uniq-tab-list .uniq-tab-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 3px solid transparent;
  border-radius: 10px;
}
.about-uniqueness .uniq-tab-nav .uniq-nav-inner .uniq-tab-list .uniq-tab-item .uniq-tab-arrow {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.25);
  transition: all 0.15s ease;
  flex-shrink: 0;
}
.about-uniqueness .uniq-tab-nav .uniq-nav-inner .uniq-tab-list .uniq-tab-item .sidebar__icon svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.7);
}
.about-uniqueness .uniq-tab-nav .uniq-nav-inner .uniq-tab-list .uniq-tab-item .uniq-tab-title {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.15s ease;
}
.about-uniqueness .uniq-tab-nav .uniq-nav-inner .uniq-tab-list .uniq-tab-item:hover {
  background: linear-gradient(135deg, #1a60ff 0%, #0d40e0 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.about-uniqueness .uniq-tab-nav .uniq-nav-inner .uniq-tab-list .uniq-tab-item:hover .uniq-tab-arrow {
  color: #ffffff;
}
.about-uniqueness .uniq-tab-nav .uniq-nav-inner .uniq-tab-list .uniq-tab-item:hover .sidebar__icon svg {
  width: 20px;
  height: 20px;
  color: #ffffff;
}
.about-uniqueness .uniq-tab-nav .uniq-nav-inner .uniq-tab-list .uniq-tab-item:hover .uniq-tab-title {
  color: #ffffff;
  font-weight: 200;
}
.about-uniqueness .uniq-tab-nav .uniq-nav-inner .uniq-tab-list .uniq-tab-item.active {
  background: linear-gradient(135deg, #1a60ff 0%, #0d40e0 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.about-uniqueness .uniq-tab-nav .uniq-nav-inner .uniq-tab-list .uniq-tab-item.active .uniq-tab-arrow {
  color: #ffffff;
}
.about-uniqueness .uniq-tab-nav .uniq-nav-inner .uniq-tab-list .uniq-tab-item.active .sidebar__icon svg {
  width: 20px;
  height: 20px;
  color: #ffffff;
}
.about-uniqueness .uniq-tab-nav .uniq-nav-inner .uniq-tab-list .uniq-tab-item.active .uniq-tab-title {
  color: #ffffff;
  font-weight: 200;
}
.about-uniqueness .uniq-tab-content-wrap {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 30px 20px;
  justify-content: center;
}
.about-uniqueness .uniq-tab-content-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 100%;
  background: rgba(22, 26, 92, 0.65);
  transform: translateY(-50%);
  z-index: 0;
}
.about-uniqueness .uniq-tab-panel {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 72%;
}
.about-uniqueness .uniq-tab-panel .uniq-panel-content {
  min-height: 520px;
  background-size: cover;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-position: center;
  border-radius: 0 14px 14px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
.about-uniqueness .uniq-tab-panel .uniq-panel-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(179deg, rgba(22, 26, 92, 0.4) 0%, rgba(22, 26, 92, 0.97) 90%);
  z-index: 0;
}
.about-uniqueness .uniq-tab-panel.active {
  display: flex;
}
.about-uniqueness .uniq-tab-panel .u-label {
  display: inline-block;
  align-items: center;
  background: linear-gradient(135deg, #1a60ff 0%, #0d40e0 100%);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 15px;
  border-radius: 16px;
  width: fit-content;
  z-index: 2;
  margin-bottom: 12px;
}
.about-uniqueness .uniq-tab-panel h2 {
  font-weight: 300;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 18px;
  z-index: 2;
}
.about-uniqueness .uniq-tab-panel p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin: 0;
  max-width: 75%;
  z-index: 2;
}
@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-uniqueness .uniq-tab-panel.active {
  animation: tabFadeIn 0.32s ease forwards;
}
@media (max-width: 991.98px) {
  .about-uniqueness .uniq-tab-nav {
    min-height: 320px;
  }
  .about-uniqueness .uniq-nav-inner {
    padding: 40px 24px;
  }
  .about-uniqueness .uniq-tab-panel {
    padding: 40px 28px;
  }
}

.about-team {
  background: #eee;
  padding: 80px 0;
}
.about-team .team-header {
  margin-bottom: 50px;
}
.about-team .consultant-card {
  background: #ffffff;
  border: 1px solid #e4ecf7;
  box-shadow: 0 2px 14px rgba(20, 40, 90, 0.05);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-team .consultant-card:hover {
  transform: translateY(-4px);
}
.about-team .consultant-card .consultant-photo {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top;
}
.about-team .consultant-card .consultant-photo-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, rgba(30, 36, 115, 0.1), rgba(30, 36, 115, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 400;
  color: #1e2473;
}
.about-team .consultant-card .consultant-info {
  padding: 18px 20px 20px;
}
.about-team .consultant-card .consultant-info h4 {
  font-weight: 300;
  color: #1e2473;
  margin-bottom: 10px;
  font-size: 20px;
}
.about-team .consultant-card .consultant-info .consultant-role {
  font-size: 14px;
}
.about-team .consultant-card .consultant-share {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-team .consultant-card .consultant-share::before {
  content: "SHARE";
  display: block;
  background: linear-gradient(135deg, #1e2473 0%, #1e3a8a 100%);
  color: #ffffff;
  font-size: 0.58rem;
  font-weight: 200;
  letter-spacing: 0.18em;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  padding: 14px 7px;
  border-radius: 0 0 0 6px;
  text-align: center;
}
.about-team .consultant-card .consultant-share .share-trigger {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  color: #1e2473;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, background 0.2s ease;
  margin-top: 6px;
}
.about-team .consultant-card .consultant-share .share-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  margin-top: 7px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.about-team .consultant-card .consultant-share .share-icons .share-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}
.about-team .consultant-card .consultant-share .share-icons .share-icon.si-linkedin {
  background: #0077b5;
}
.about-team .consultant-card .consultant-share .share-icons .share-icon.si-twitter {
  background: #000;
}
.about-team .consultant-card .consultant-share .share-icons .share-icon.si-facebook {
  background: #1877f2;
}
.about-team .consultant-card .consultant-share .share-icons .share-icon:hover {
  transform: scale(1.15);
}
.about-team .consultant-card .consultant-share .share-icons .share-icon:nth-child(1) {
  transition-delay: 0s;
}
.about-team .consultant-card .consultant-share .share-icons .share-icon:nth-child(2) {
  transition-delay: 0.05s;
}
.about-team .consultant-card .consultant-share .share-icons .share-icon:nth-child(3) {
  transition-delay: 0.1s;
}
.about-team .consultant-card .consultant-share:hover .share-trigger {
  background: #1e2473;
  color: #ffffff;
  transform: rotate(20deg);
}
.about-team .consultant-card .consultant-share:hover .share-icons {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 991px) {
  .about-leaders {
    padding-top: 30px !important;
  }
  .about-leaders .about-img-wrap {
    margin-top: 30px !important;
  }
  .about-uniqueness .uniq-tab-content-wrap {
    display: flex;
    flex-wrap: wrap;
    padding: 0 !important;
  }
  .about-uniqueness .uniq-tab-nav {
    width: 100% !important;
    min-height: auto;
    border-radius: 14px 0 0 14px;
  }
  .about-uniqueness .uniq-tab-panel {
    width: 100%;
    padding: 30px 20px;
  }
  .about-uniqueness .uniq-nav-inner {
    padding: 30px 20px;
  }
  .about-uniqueness .uniq-tab-panel .u-label {
    margin-top: 20px !important;
  }
  .about-uniqueness .uniq-tab-panel h2 {
    font-size: 1.5rem !important;
  }
  .about-uniqueness .uniq-tab-panel p {
    max-width: 100% !important;
  }
}
.blog-card {
  background: linear-gradient(135deg, #f0f4f8 0%, #e8edf5 100%);
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid rgba(30, 36, 115, 0.4);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: row;
  min-height: 320px;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.blog-image-section {
  position: relative;
  width: 285px;
  min-width: 285px;
  height: 100%;
  overflow: hidden;
}

/* Tablets (481px to 768px) */
@media (min-width: 1024px) and (max-width: 1200px) {
  .blog-image-section {
    min-width: 190px;
  }
}
.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-swiper .swiper-button-prev:hover,
.blog-swiper .swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.1);
}

.blog-swiper .swiper-button-prev,
.blog-swiper .swiper-button-next {
  top: 42%;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  transition: background 0.2s, transform 0.15s;
}

.blog-swiper .swiper-button-prev:hover,
.blog-swiper .swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.1);
}

.blog-swiper .swiper-button-prev::after,
.blog-swiper .swiper-button-next::after {
  font-size: 16px;
  color: #ffffff;
  font-weight: 200;
}

.image-overlay {
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(30, 36, 115, 0.01) 0%, rgba(22, 26, 92, 0.9) 70%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.image-text {
  color: white;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #1e2473;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.blog-content {
  padding: 24px 20px 20px;
}

.blog-title {
  color: #1e2473;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 14px;
  line-height: 1.3;
}

.blog-description {
  color: #334155;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 80px;
}

.author-section {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(74, 103, 133, 0.2);
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e2473 100%);
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.posted-by {
  font-size: 0.75rem;
  color: #334155;
  display: block;
}

.author-name {
  color: #1e2473;
  font-size: 16px;
  font-weight: 400;
}

/* Placeholder images using gradients */
.placeholder-image-1 {
  background: linear-gradient(135deg, #b8d4e8 0%, #8fb8d4 100%);
}

.placeholder-image-2 {
  background: linear-gradient(135deg, #a8c8e0 0%, #7fa8c8 100%);
}

@media (max-width: 960px) {
  .blog-container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .blog-card {
    flex-direction: column;
    min-height: auto;
  }
  .blog-image-section {
    width: 100%;
    height: 280px;
  }
}
.blogs-page-wrap {
  background: #ffffff;
}

.blp-sidebar {
  padding-right: 30px;
}
@media (max-width: 991.98px) {
  .blp-sidebar {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.blp-widget {
  margin-bottom: 40px;
}

.blp-widget-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 200;
  color: #1e2473;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid #e8edf5;
}
.blp-widget-title::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #1e2473;
  flex-shrink: 0;
  position: relative;
}
.blp-widget-title::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #1e2473;
  flex-shrink: 0;
  margin-left: -6px;
}
.blp-widget-title span {
  flex: 1;
}

.blp-cats {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blp-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #e8edf5;
  cursor: pointer;
  transition: all 0.15s ease;
}
.blp-cat-item:last-child {
  border-bottom: none;
}
.blp-cat-item:hover .blp-cat-name {
  color: #1e2473;
}
.blp-cat-item a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.blp-cat-item .blp-cat-name {
  font-size: 16px;
  font-weight: 300;
  color: #334155;
  letter-spacing: 0.08em;
  transition: all 0.15s ease;
}
.blp-cat-item .blp-cat-name i {
  margin-right: 10px;
  color: #1e2473;
}
.blp-cat-item .blp-cat-count {
  font-size: 14px;
  font-weight: 400;
  background: rgba(30, 36, 115, 0.1);
  color: #1e2473;
  border-radius: 50px;
  padding: 2px 10px;
  min-width: 28px;
  text-align: center;
}

.blp-recent-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blp-recent-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e8edf5;
  transition: all 0.15s ease;
}
.blp-recent-item:last-child {
  border-bottom: none;
}
.blp-recent-item:hover .blp-recent-title {
  color: #1e2473;
}
.blp-recent-item .blp-recent-thumb {
  width: 58px;
  height: 52px;
  border-radius: 6px;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
}
.blp-recent-item .blp-recent-meta {
  flex: 1;
  min-width: 0;
}
.blp-recent-item .blp-recent-date {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  margin-bottom: 10px;
}
.blp-recent-item .blp-recent-date i {
  color: #1e2473;
  font-size: 0.7rem;
}
.blp-recent-item .blp-recent-title {
  font-size: 20px;
  font-weight: 300;
  color: #1e2473;
  line-height: 1.35;
  transition: all 0.15s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blp-card {
  display: flex;
  background: #ffffff;
  border: 1px solid #e8edf5;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.blp-card:last-child {
  margin-bottom: 0;
}
.blp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
.blp-card .blp-img-wrap {
  position: relative;
  width: 42%;
  min-width: 42%;
  overflow: hidden;
  flex-shrink: 0;
}
.blp-card .blp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blp-card .blp-img-wrap .blp-img-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 1.1rem;
  font-weight: 200;
  color: #ffffff;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.blp-card .blp-img-wrap .blp-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #1e2473;
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
  z-index: 1;
}
.blp-card:hover .blp-img-wrap img {
  transform: scale(1.04);
}
.blp-card .blp-content {
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
}
.blp-card .blp-title {
  font-size: 1.75rem;
  color: #1e2473;
  line-height: 1.25;
  margin-bottom: 12px;
}
.blp-card .blp-title--teal {
  color: #1e2473;
}
.blp-card .blp-desc {
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.blp-card .blp-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid #e8edf5;
}
.blp-card .blp-author .blp-author-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e8edf5;
  flex-shrink: 0;
}
.blp-card .blp-author .blp-author-info .blp-posted-by {
  font-size: 0.75rem;
  color: #334155;
  display: block;
}
.blp-card .blp-author .blp-author-info .blp-author-name {
  font-size: 14px;
  font-weight: 400;
  color: #1e2473;
}
@media (max-width: 767.98px) {
  .blp-card {
    flex-direction: column;
  }
  .blp-card .blp-img-wrap {
    width: 100%;
    min-width: 100%;
    height: 560px;
  }
}

.blog-details-page-wrap {
  background: #ffffff;
}

.bld-layout {
  padding: 60px 0 80px;
  background: #ffffff;
}

.bld-article {
  background: #ffffff;
}

.bld-featured-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 32px;
  display: block;
}

.bld-body p {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.75;
  margin-bottom: 22px;
}
.bld-body h3 {
  font-size: 1.25rem;
  font-weight: 300;
  color: #1e2473;
  margin: 28px 0 10px;
  padding-left: 12px;
  border-left: 3px solid #1e2473;
}
.bld-body h4 {
  font-size: 0.95rem;
  font-weight: 200;
  color: #1e2473;
  margin: 22px 0 8px;
}
.bld-body .bld-inline-img {
  width: 100%;
  border-radius: 10px;
  margin: 20px 0;
  object-fit: cover;
  max-height: 260px;
}
.bld-body strong {
  color: #1e2473;
  font-weight: 200;
}

.bld-post-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 100;
}
.bld-post-nav .bld-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid rgba(30, 36, 115, 0.3);
  color: #1e2473;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.bld-post-nav .bld-nav-btn:hover {
  background: #1e2473;
  color: #ffffff;
  border-color: #1e2473;
  box-shadow: 0 4px 16px rgba(30, 36, 115, 0.35);
}
@media (max-width: 991.98px) {
  .bld-post-nav {
    display: none;
  }
}

.bld-related {
  background: #f0f4f8;
  padding: 60px 0 70px;
}
.bld-related .bld-related-heading {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 300;
  color: #1e2473;
  margin-bottom: 32px;
}

.bld-related-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.bld-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
.bld-related-card .bld-rc-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.bld-related-card .bld-rc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.bld-related-card .bld-rc-img-wrap .bld-rc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 36, 115, 0.65) 0%, transparent 55%);
}
.bld-related-card .bld-rc-img-wrap .bld-rc-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: #1e2473;
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 200;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 1;
}
.bld-related-card:hover .bld-rc-img-wrap img {
  transform: scale(1.05);
}
.bld-related-card .bld-rc-body {
  padding: 20px 22px 24px;
}
.bld-related-card .bld-rc-body .bld-rc-title {
  font-size: 24px;
  font-weight: 300;
  color: #1e2473;
  line-height: 1.35;
  margin-bottom: 12px;
  transition: all 0.15s ease;
}
.bld-related-card .bld-rc-body .bld-rc-title:hover {
  color: #1e2473;
}
.bld-related-card .bld-rc-body .bld-rc-desc {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.65;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bld-related-card .bld-rc-body .bld-rc-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  font-weight: 200;
  color: #1e2473;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.15s ease;
}
.bld-related-card .bld-rc-body .bld-rc-read-more i {
  transition: transform 0.2s ease;
  font-size: 0.75rem;
}
.bld-related-card .bld-rc-body .bld-rc-read-more:hover {
  color: #1e2473;
}
.bld-related-card .bld-rc-body .bld-rc-read-more:hover i {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .bld-layout {
    padding: 30px 20px !important;
  }
}
@media (max-width: 767px) {
  .content-details {
    padding-left: 10px;
    border: none;
  }
}
.pillar-overview-tabs {
  background: #f8fafe;
  border: 1px solid #e4ecf7;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(20, 40, 90, 0.05);
}

.ip-shell {
  display: flex;
  align-items: stretch;
  background: #fbfcff;
}

.ip-side {
  width: 300px;
  min-width: 300px;
  align-self: stretch;
  background: linear-gradient(180deg, #011c6c 0%, #011c6c 100%);
  color: #ffffff;
  padding: 26px 18px 30px;
  display: flex;
  flex-direction: column;
}
.ip-side .ip-side-label {
  font-size: 0.867rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  text-transform: uppercase;
  color: #ffffff;
  margin: 15px 0;
  padding-left: 20px;
}
.ip-side .ip-side-list {
  border-top: 1px solid #002685;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ip-side .ip-side-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 8px;
  border-left: 2px solid #002685;
  border-right: 2px solid #002685;
  border-bottom: 2px solid #002685;
  color: #cdd9f2;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease;
}
@media (max-width: 991.98px) {
  .ip-side .ip-side-item {
    gap: 3px;
    padding: 5px 5px;
  }
}
.ip-side .ip-side-item .ip-si-ic {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #9db8e8;
  overflow: hidden;
}
.ip-side .ip-side-item .ip-si-ic img {
  object-fit: contain;
  width: 36px;
  height: auto;
  border-radius: 100%;
  filter: drop-shadow(2px 12px 24px rgba(30, 64, 175, 0.35));
  border: 1px solid #002685;
}
.ip-side .ip-side-item .ip-si-ic img.extra-small {
  width: 28px;
}
.ip-side .ip-side-item .ip-si-txt {
  display: flex;
  flex-direction: column;
  line-height: 1.125;
  min-width: 0;
}
.ip-side .ip-side-item .ip-si-num {
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.8;
  padding-bottom: 4px;
}
.ip-side .ip-side-item .ip-si-title {
  font-size: 0.82rem;
  font-weight: 500;
  color: #e6eefc;
}
.ip-side .ip-side-item .ip-si-check {
  margin-left: auto;
  font-size: 0.85rem;
  opacity: 0;
  transition: all 0.15s ease;
}
.ip-side .ip-side-item:hover, .ip-side .ip-side-item.active {
  background: linear-gradient(180deg, #0144f6 0%, #003fe8 10%, #00249a 90%) padding-box, linear-gradient(180deg, #dce9f9 0%, #dce9f9 50%, #435eb0 100%) border-box;
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  border-top: 1px solid transparent;
  border-bottom: 2px solid transparent;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(26, 77, 255, 0.4);
}
.ip-side .ip-side-item:hover .ip-si-ic, .ip-side .ip-side-item.active .ip-si-ic {
  color: #ffffff;
}
.ip-side .ip-side-item:hover .ip-si-num, .ip-side .ip-side-item.active .ip-si-num {
  color: #ffffff;
  opacity: 0.8;
}
.ip-side .ip-side-item:hover .ip-si-title, .ip-side .ip-side-item.active .ip-si-title {
  color: #ffffff;
}
.ip-side .ip-side-item:hover .ip-si-check, .ip-side .ip-side-item.active .ip-si-check {
  opacity: 1;
  color: #ffffff;
}
.ip-side .ip-side-item:hover img, .ip-side .ip-side-item.active img {
  border: none;
}
.ip-side .ip-side-download {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: linear-gradient(135deg, #1a60ff 0%, #0d40e0 100%);
  color: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(26, 77, 255, 0.35);
  transition: all 0.15s ease;
}
.ip-side .ip-side-download .dl-ic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
}
.ip-side .ip-side-download:hover {
  transform: translateY(-2px);
}

.ip-main {
  flex: 1;
  min-width: 0;
  padding: 30px 34px 60px;
}
.ip-main.solution-bg {
  padding: 0 34px 60px;
}

.ip-eyebrow {
  display: block;
  color: #003fe8;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ip-card-title {
  color: #1e2473;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.ip-block-eyebrow {
  display: block;
  color: #003fe8;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.mth-hero {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.mth-hero .mth-hero-text {
  flex: 1 1 460px;
  min-width: 0;
}
.mth-hero h1 {
  font-size: 2.4rem;
  font-weight: 500;
  color: #1e2473;
  line-height: 1.1;
  margin: 6px 0 16px;
}
.mth-hero p {
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 560px;
}
.mth-hero .mth-hero-visual {
  flex: 0 0 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  color: #003fe8;
  align-self: center;
}
.mth-hero .mth-hero-visual i {
  filter: drop-shadow(0 12px 24px rgba(30, 64, 175, 0.3));
}

.mth-hero-chips {
  flex: 1 1 320px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 22px;
  background: #f4f8fe;
  border: 1px solid #e1ebfa;
  border-radius: 16px;
  padding: 22px;
}
.mth-hero-chips .mth-chip {
  display: flex;
  gap: 12px;
}
.mth-hero-chips .mth-chip .chip-ic {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(0, 63, 232, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #003fe8;
  font-size: 1rem;
}
.mth-hero-chips .mth-chip .chip-h {
  font-size: 0.85rem;
  font-weight: 500;
  color: #1e2473;
  margin-bottom: 2px;
}
.mth-hero-chips .mth-chip .chip-p {
  font-size: 0.72rem;
  color: #334155;
  line-height: 1.45;
}

.mth-grid {
  display: grid;
  gap: 22px;
  margin-bottom: 22px;
}
.mth-grid.cols-2 {
  grid-template-columns: 1fr 1.4fr;
}
.mth-grid.cols-2-even {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 991.98px) {
  .mth-grid {
    grid-template-columns: 1fr !important;
  }
}

.mth-ring {
  position: relative;
  width: 340px;
  height: 340px;
  margin: 10px auto 0;
}
.mth-ring .ring-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e2473 0%, #0d40e0 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.3;
  box-shadow: 0 10px 30px rgba(13, 64, 224, 0.4);
  z-index: 2;
}
.mth-ring .ring-node {
  position: absolute;
  width: 78px;
  transform: translate(-50%, -50%);
  text-align: center;
}
.mth-ring .ring-node .rn-ic {
  width: 50px;
  height: 50px;
  margin: 0 auto 5px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid rgba(0, 63, 232, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #003fe8;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(30, 64, 175, 0.12);
}
.mth-ring .ring-node .rn-t {
  font-size: 0.68rem;
  font-weight: 600;
  color: #1e2473;
}

.mth-process {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 6px;
}
.mth-process .mp-step {
  flex: 1 0 120px;
  border: 1px solid #e4ecf7;
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
  background: #fbfcff;
}
.mth-process .mp-step .mp-ic {
  width: 46px;
  height: 46px;
  margin: 0 auto 8px;
  border-radius: 12px;
  background: rgba(0, 63, 232, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #003fe8;
  font-size: 1.05rem;
}
.mth-process .mp-step .mp-num {
  font-size: 0.82rem;
  font-weight: 500;
  color: #1e2473;
}
.mth-process .mp-step .mp-h {
  font-size: 0.8rem;
  font-weight: 500;
  color: #1e2473;
  margin: 2px 0 6px;
}
.mth-process .mp-step .mp-p {
  font-size: 0.66rem;
  color: #334155;
  line-height: 1.45;
}
.mth-process .mp-arrow {
  flex: 0 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 63, 232, 0.5);
  font-size: 0.8rem;
}

.mth-sources {
  columns: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mth-sources li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  color: #334155;
  padding: 6px 0;
}
.mth-sources li i {
  color: #003fe8;
  font-size: 0.7rem;
}

.mth-pillar-model {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 6px;
}
.mth-pillar-model .pm-quad {
  border-radius: 14px;
  padding: 20px 18px;
  color: #ffffff;
  min-height: 130px;
}
.mth-pillar-model .pm-quad .pmq-ic {
  font-size: 1.1rem;
  margin-bottom: 8px;
  opacity: 0.9;
}
.mth-pillar-model .pm-quad .pmq-h {
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.mth-pillar-model .pm-quad .pmq-p {
  font-size: 0.7rem;
  line-height: 1.45;
  opacity: 0.9;
}
.mth-pillar-model .pm-quad.q1 {
  background: linear-gradient(135deg, #2f6fe0, #1e54c8);
}
.mth-pillar-model .pm-quad.q2 {
  background: linear-gradient(135deg, #6a4dd6, #4d34b8);
}
.mth-pillar-model .pm-quad.q3 {
  background: linear-gradient(135deg, #1aa37a, #138a66);
}
.mth-pillar-model .pm-quad.q4 {
  background: linear-gradient(135deg, #4d63d6, #3344b8);
}
.mth-pillar-model .pm-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #e4ecf7;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 500;
  color: #1e2473;
  box-shadow: 0 6px 20px rgba(20, 40, 90, 0.12);
}

.mth-scale-rows {
  list-style: none;
  margin: 0 0 4px;
  padding: 0;
}
.mth-scale-rows li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed #e4ecf7;
}
.mth-scale-rows li:last-child {
  border-bottom: none;
}
.mth-scale-rows li .sc-range {
  font-size: 0.82rem;
  font-weight: 500;
  width: 62px;
  flex-shrink: 0;
}
.mth-scale-rows li .sc-h {
  font-size: 0.82rem;
  font-weight: 500;
  color: #1e2473;
}
.mth-scale-rows li .sc-p {
  font-size: 0.7rem;
  color: #334155;
}
.mth-scale-rows li.lv-exc .sc-range {
  color: #1aa37a;
}
.mth-scale-rows li.lv-good .sc-range {
  color: #2f6fe0;
}
.mth-scale-rows li.lv-ok .sc-range {
  color: #d9a300;
}
.mth-scale-rows li.lv-fair .sc-range {
  color: #e07b1a;
}
.mth-scale-rows li.lv-poor .sc-range {
  color: #e0432f;
}

.mth-principles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
@media (max-width: 767.98px) {
  .mth-principles {
    grid-template-columns: 1fr 1fr;
  }
}
.mth-principles .kp {
  text-align: center;
}
.mth-principles .kp .kp-ic {
  width: 56px;
  height: 56px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: rgba(0, 63, 232, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #003fe8;
  font-size: 1.2rem;
}
.mth-principles .kp .kp-h {
  font-size: 0.82rem;
  font-weight: 500;
  color: #1e2473;
  margin-bottom: 4px;
}
.mth-principles .kp .kp-p {
  font-size: 0.68rem;
  color: #334155;
  line-height: 1.4;
}

.ip-gauge {
  --val: 82;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: conic-gradient(#003fe8 calc(var(--val) * 1%), #e4ecf7 0);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ip-gauge::after {
  content: "";
  position: absolute;
  inset: 14px;
  background: #ffffff;
  border-radius: 50%;
}
.ip-gauge .gv {
  position: relative;
  z-index: 1;
  text-align: center;
}
.ip-gauge .gv .gv-num {
  font-size: 1.7rem;
  font-weight: 500;
  color: #1e2473;
  line-height: 1;
}
.ip-gauge .gv .gv-den {
  font-size: 0.72rem;
  color: #334155;
}
.ip-gauge .gv .gv-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  color: #003fe8;
  margin-top: 2px;
}

.ip-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  background: linear-gradient(180deg, #013496 0%, #013496 20%, #012a82 50%, #012a82 100%);
  border-radius: 16px;
  padding: 26px 30px;
  color: #ffffff;
  margin-top: 22px;
  flex-wrap: wrap;
}
.ip-cta .ip-cta-btns {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.ip-cta .ip-cta-btn.outline {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.ip-cta.solution-cta {
  background: linear-gradient(180deg, #00164a 0%, #00164a 20%, #00164a 50%, #00164a 100%);
}
.ip-cta.solution-cta .ip-cta-img {
  width: 170px;
  margin-right: 20px;
}
.ip-cta.solution-cta .ip-cta-img img {
  height: 80px;
  width: auto;
}
.ip-cta.telehealth-cta {
  background: linear-gradient(180deg, #002362 0%, #002362 20%, #01235f 50%, #01235f 100%);
  padding: 1px 30px;
}
.ip-cta.telehealth-cta .ip-cta-img {
  width: 200px;
  margin-right: 20px;
}
.ip-cta.telehealth-cta .ip-cta-img img {
  height: 130px;
  width: auto;
}
.ip-cta.pharma-sol-cta {
  background: linear-gradient(180deg, #002362 0%, #002362 20%, #01235f 50%, #01235f 100%);
  padding: 1px 20px;
}
.ip-cta.pharma-sol-cta .ip-cta-img {
  width: 200px;
  margin-right: 20px;
}
.ip-cta.pharma-sol-cta .ip-cta-img img {
  height: 130px;
  width: auto;
}
.ip-cta.sol-teach-h-cta {
  background: linear-gradient(180deg, #00164a 0%, #00164a 20%, #00164a 50%, #00164a 100%);
  padding: 1px 20px;
}
.ip-cta.sol-teach-h-cta .ip-cta-img {
  width: 200px;
  margin-right: 20px;
}
.ip-cta.sol-teach-h-cta .ip-cta-img img {
  height: 130px;
  width: auto;
}
.ip-cta.sol-diagnostic-cta {
  background: linear-gradient(180deg, #002470 0%, #001e5f 20%, #001a53 50%, #001a53 100%);
  padding: 1px 20px;
}
.ip-cta.sol-diagnostic-cta .ip-cta-img {
  width: 200px;
  margin-right: 20px;
}
.ip-cta.sol-diagnostic-cta .ip-cta-img img {
  height: 130px;
  width: auto;
}
.ip-cta .cta-content {
  display: flex;
  align-items: center;
  gap: 5px;
}
.ip-cta .ip-cta-h {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.ip-cta .ip-cta-p {
  font-size: 0.82rem;
  opacity: 0.85;
}
.ip-cta .ip-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #ffffff;
  color: #1e2473;
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.15s ease;
}
.ip-cta .ip-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.sol-setting-image img {
  width: 40px;
}

.pil-hero {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
  flex-wrap: wrap;
  padding: 10px 0;
}
@media (max-width: 767.98px) {
  .pil-hero {
    padding: 10px 0;
  }
}
.pil-hero-infobox {
  display: flex;
  gap: 12px;
  align-items: stretch;
  flex-wrap: wrap;
}
.pil-hero .pil-hero-logo {
  flex-shrink: 0;
}
.pil-hero .pil-hero-logo img {
  width: 85px;
  height: auto;
  filter: drop-shadow(2px 12px 24px rgba(30, 64, 175, 0.4));
  margin-top: -30px;
}
.pil-hero .pil-hero-logo img.circle-view {
  border: 2px solid #fff;
  background: #fff;
  border-radius: 100%;
}
.pil-hero .pil-hero-text {
  flex: 1 1 240px;
  min-width: 0;
}
.pil-hero .pil-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 63, 232, 0.1);
  color: #003fe8;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 50px;
  border: 1px solid rgba(0, 63, 232, 0.2);
  margin-bottom: 14px;
}
.pil-hero .pil-badge-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 63, 232, 0.45);
  margin-left: 9px;
  vertical-align: middle;
}
.pil-hero h1 {
  font-size: 2.05rem;
  color: #16235f;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.pil-hero p {
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.7;
  max-width: 560px;
  margin: 0;
}
.pil-hero .pil-hero-ic {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(0, 63, 232, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #003fe8;
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.pil-hero .pil-hero-ic img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.pil-hero .pil-score-card {
  flex: 0 0 190px;
  background: #ffffff;
  border: 1px solid #e4ecf7;
  border-radius: 16px;
  padding: 16px 14px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(20, 40, 90, 0.06);
}
@media (max-width: 767.98px) {
  .pil-hero .pil-score-card {
    flex-basis: 100%;
  }
}
.pil-hero .pil-score-card .psc-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #5a6b85;
  margin-bottom: 10px;
}
.pil-hero .pil-vs-card {
  flex: 0 0 190px;
  background: #ffffff;
  border: 1px solid #e4ecf7;
  border-radius: 16px;
  padding: 15px 12px;
  box-shadow: 0 4px 18px rgba(20, 40, 90, 0.06);
}
@media (max-width: 767.98px) {
  .pil-hero .pil-vs-card {
    flex-basis: 100%;
    flex: 1 !important;
  }
}
.pil-hero .pil-vs-card .pvc-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #5a6b85;
  margin-bottom: 8px;
}
.pil-hero .pil-vs-card .pvc-delta {
  font-size: 1.15rem;
  font-weight: 500;
  color: #1aa37a;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 15px;
}
.pil-hero .pil-vs-card .pvc-spark {
  margin: 6px 0 12px;
  padding-bottom: 22px;
  border-bottom: 1px solid #eef2f8;
}
.pil-hero .pil-vs-card .pvc-weight {
  font-size: 1.1rem;
  font-weight: 500;
  color: #1e2473;
}
.pil-hero .pil-vs-card .pvc-footer {
  font-size: 0.82rem;
  font-weight: 500;
  color: #5a6b85;
  text-align: center;
}
.pil-hero.resource-hero .pil-hero-banner img {
  width: 90%;
}
.pil-hero.resource-hero .pil-vs-card {
  flex: 0 0 160px;
}
@media (max-width: 767.98px) {
  .pil-hero.resource-hero .pil-vs-card {
    flex-basis: 100%;
    flex: 1;
  }
}
.pil-hero.resource-hero .pil-vs-card .res-feature-info {
  height: calc(100% - 70px);
}
.pil-hero.methodology-hero .pil-hero-banner img {
  width: 90%;
}
.pil-hero.methodology-hero .pil-vs-card {
  flex: 0 0 160px;
}
.pil-hero.solution-hero-wrap {
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
}
@media (max-width: 767.98px) {
  .pil-hero.solution-hero-wrap {
    flex-direction: column;
  }
}
.pil-hero.solution-hero-wrap .solution-hero {
  width: 65%;
}
@media (max-width: 767.98px) {
  .pil-hero.solution-hero-wrap .solution-hero {
    width: 100%;
  }
}
.pil-hero.solution-hero-wrap .solution-hero-features-wrap {
  display: flex;
  gap: 10px;
}
@media (max-width: 767.98px) {
  .pil-hero.solution-hero-wrap.hospital {
    flex-basis: 100%;
    flex-direction: column;
    width: 100%;
  }
}
.pil-hero.solution-hero-wrap.hospital .solution-hero-logo {
  width: 50%;
}
@media (max-width: 767.98px) {
  .pil-hero.solution-hero-wrap.hospital .solution-hero-logo {
    width: 100%;
  }
}
.pil-hero.solution-hero-wrap.hospital .solution-hero-logo img {
  width: 100%;
}
.pil-hero.solution-hero-wrap.clinic .solution-hero-logo {
  width: 70%;
}
.pil-hero.solution-hero-wrap.clinic .solution-hero-logo img {
  width: 100%;
}
.pil-hero.solution-hero-wrap.telehealth .solution-hero-logo {
  width: 60%;
}
.pil-hero.solution-hero-wrap.telehealth .solution-hero-logo img {
  width: 100%;
}
.pil-hero.solution-hero-wrap.pharmacy .solution-hero-logo {
  width: 60%;
}
.pil-hero.solution-hero-wrap.pharmacy .solution-hero-logo img {
  width: 100%;
}
.pil-hero.solution-hero-wrap.teaching-hospital {
  background: linear-gradient(90deg, #fcfcfd 0%, #f1f5fc 30%, #e9f0fc 60%, #fcfcfd 100%);
}
.pil-hero.solution-hero-wrap.teaching-hospital .solution-hero-logo {
  width: 65%;
}
.pil-hero.solution-hero-wrap.teaching-hospital .solution-hero-logo img {
  width: 100%;
}
.pil-hero.solution-hero-wrap.teaching-hospital .solution-hero-features-wrap {
  width: 65%;
}
.pil-hero.solution-hero-wrap.diagnostic-centers {
  background: linear-gradient(90deg, #fcfcfd 0%, #f1f5fc 30%, #e9f0fc 60%, #fcfcfd 100%);
}
.pil-hero.solution-hero-wrap.diagnostic-centers .solution-hero-logo {
  width: 65%;
}
.pil-hero.solution-hero-wrap.diagnostic-centers .solution-hero-logo img {
  width: 100%;
}
.pil-hero.solution-hero-wrap.diagnostic-centers .solution-hero-features-wrap {
  width: 65%;
}
@media (max-width: 767.98px) {
  .pil-hero.solution-hero-wrap {
    background-size: 0;
    background-position: center center;
  }
}
.pil-hero.solution-hero-wrap .solution-hero h1 {
  font-size: 2.4rem;
  color: #1e2473;
  line-height: 1.1;
  margin: 10px 0;
}
.pil-hero.solution-hero-wrap .solution-hero .sub-title {
  color: #1f5fe0;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}
.pil-hero.solution-hero-wrap .pil-hero-banner img {
  margin-top: -30px;
  width: 90%;
}
.pil-hero.solution-hero-wrap .pil-vs-card {
  flex: 0 0 160px;
}
.pil-hero.solution-hero-wrap .sol-chips {
  border-top: 1px solid #e4ecf7;
  border-radius: 14px;
  padding: 10px 0 10px 0;
  margin-top: 12px;
  display: flex;
  gap: 0;
}
@media (max-width: 767.98px) {
  .pil-hero.solution-hero-wrap .sol-chips {
    flex-basis: 100%;
    flex-direction: column;
    width: 100%;
  }
}
.pil-hero.solution-hero-wrap .sol-chips .sol-chip {
  border-right: 1px solid #e4ecf7;
  padding-left: 7px;
  padding-right: 7px;
  display: flex;
  gap: 7px;
}
.pil-hero.solution-hero-wrap .sol-chips .sol-chip .sc-ic {
  color: #003fe8;
  font-size: 1rem;
  margin-bottom: 6px;
}
.pil-hero.solution-hero-wrap .sol-chips .sol-chip .sc-ic img {
  width: 36px;
  height: auto;
}
.pil-hero.solution-hero-wrap .sol-chips .sol-chip .sc-h {
  font-size: 0.8rem;
  font-weight: 500;
  color: #1e2473;
  margin-bottom: 2px;
}
.pil-hero.solution-hero-wrap .sol-chips .sol-chip .sc-p {
  font-size: 0.68rem;
  color: #334155;
  line-height: 1.4;
}
.pil-hero.solution-hero-wrap .sol-chips .sol-chip:last-child {
  border-right: none;
}

.solution-bg {
  background: linear-gradient(180deg, #fcfcfd 0%, #fbfcfd 30%, #fbfcfd 60%, #e1ebfa 100%);
}

.sol-strip {
  display: flex;
  height: auto;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
}
.sol-strip .ss-score {
  display: flex;
  height: 150px;
  width: 180px;
  align-items: center;
  gap: 16px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  border: 1px solid #e4ecf7;
  box-shadow: 0 2px 14px rgba(20, 40, 90, 0.05);
  padding: 12px 12px;
  border-radius: 16px;
}
.sol-strip .ss-score .ss-label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #334155;
}
.sol-strip .ss-trend {
  height: 150px;
  border: 1px solid #e4ecf7;
  box-shadow: 0 2px 14px rgba(20, 40, 90, 0.05);
  padding: 16px 12px;
  border-radius: 16px;
}
.sol-strip .ss-trend .ss-label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #334155;
  margin-bottom: 8px;
}

.pil-gauge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pil-gauge {
  position: relative;
  width: 116px;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pil-gauge .pg-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.pil-gauge .pg-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pil-gauge .pg-center .pg-num {
  font-size: 1.25rem;
  font-weight: 400;
  color: #1e2473;
  line-height: 1;
}
.pil-gauge .pg-center .pg-den {
  font-size: 0.7rem;
  color: #334155;
  margin-top: 3px;
}

.psc-foot {
  font-size: 0.82rem;
  font-weight: 500;
  color: #5a6b85;
  text-align: center;
}

.pil-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  background: #ffffff;
  padding: 10px 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e4ecf7;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
@media (max-width: 767.98px) {
  .pil-tabs {
    flex-wrap: nowrap !important;
    width: 100%;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
}
.pil-tabs .pil-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 9px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
}
.pil-tabs .pil-tab i {
  font-size: 0.8rem;
}
.pil-tabs .pil-tab:hover {
  color: var(--hpi-accent);
}
.pil-tabs .pil-tab.active {
  color: var(--hpi-accent);
}
.pil-tabs .pil-tab.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 2px;
  background: var(--hpi-primary-dark);
  border-radius: 2px;
}

.pil-metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}
@media (max-width: 1199.98px) {
  .pil-metrics {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767.98px) {
  .pil-metrics {
    grid-template-columns: 1fr 1fr;
  }
}
.pil-metrics .pm-card {
  background: #f8fafe;
  border: 1px solid #e4ecf7;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 2px 14px rgba(20, 40, 90, 0.05);
}
.pil-metrics .pm-card.p-10 {
  padding: 15px 12px 15px 5px;
}
.pil-metrics .pm-card.p-15 {
  padding: 15px 12px 15px 10px;
}
.pil-metrics .pm-card .pmc-top {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 8px;
}
.pil-metrics .pm-card .pmc-h {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  padding-bottom: 5px;
  color: #334155;
}
.pil-metrics .pm-card .pmc-ic {
  color: #003fe8;
  font-size: 0.95rem;
}
.pil-metrics .pm-card .pmc-val {
  font-size: 1.5rem;
  font-weight: 500;
  color: #1e2473;
  line-height: 1;
}
.pil-metrics .pm-card .pmc-unit {
  font-size: 0.66rem;
  color: #334155;
  display: block;
}
.pil-metrics .pm-card .pmc-tag {
  font-size: 0.72rem;
  font-weight: 600;
  margin-top: 3px;
}
.pil-metrics .pm-card .pmc-tag.good {
  color: #2f6fe0;
}
.pil-metrics .pm-card .pmc-tag.exc {
  color: #1aa37a;
}
.pil-metrics .pm-card .pmc-tag.fair {
  color: #e07b1a;
}
.pil-metrics .pm-card .pmc-tag.dev {
  color: #d9a300;
}
.pil-metrics .pm-card .pmc-spark {
  margin-top: 8px;
  margin-left: 10px;
}
.pil-metrics.res-metrics .pm-card .pmc-top {
  gap: 10px;
}
.pil-metrics.res-metrics .pm-card .pmc-top .pmc-img img {
  width: 40px;
  height: auto;
}

.matrix-score-wrap {
  display: flex;
  gap: 10px;
}
.matrix-score-wrap .metric-infobox {
  padding: 15px 0;
  display: flex;
  gap: 8px;
}
.matrix-score-wrap .metric-infobox img {
  width: 36px;
  height: auto;
}

@media (max-width: 767.98px) {
  .ip-card-wrap.mx-20 {
    margin: 0 2px;
  }
}

.pillar-wrap {
  padding: 0;
  margin-bottom: 22px;
}
@media (max-width: 767.98px) {
  .pillar-wrap.pillar-overview-tabs .pil-metrics.px-20 {
    padding: 0 2px;
  }
}
.pillar-wrap.pillar-overview-tabs .pil-dash {
  position: relative;
}

.pil-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}
@media (max-width: 1199.98px) {
  .pil-info {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767.98px) {
  .pil-info {
    grid-template-columns: 1fr;
  }
}
.pil-info .pi-col-h {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1e2473;
  margin-bottom: 14px;
}
.pil-info .pi-col-h.danger {
  color: #e0432f;
}
.pil-info .pi-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pil-info .pi-build {
  display: block;
  width: 70%;
  max-width: 200px;
  margin: 14px auto 0;
  opacity: 0.9;
}
.pil-info .pi-list li {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 0.78rem;
  color: #334155;
  padding: 5px 0;
  margin-bottom: 0;
}
.pil-info .pi-list li i {
  font-size: 0.72rem;
  margin-top: 3px;
}
.pil-info .pi-list li.chk i {
  color: #003fe8;
}
.pil-info .pi-list li.risk i {
  color: #e0432f;
}
.pil-info .pi-ind {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.78rem;
  padding: 7px 0;
  border-bottom: 1px dashed #e4ecf7;
}
.pil-info .pi-ind:last-child {
  border-bottom: none;
}
.pil-info .pi-ind .piv {
  font-weight: 500;
  color: #1e2473;
}
.pil-info .pi-sections {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.pil-info .pi-sections .pis {
  text-align: center;
  padding: 7px 5px;
}
.pil-info .pi-sections .pis .pis-ic {
  width: 46px;
  height: 46px;
  margin: 0 auto 6px;
  border-radius: 12px;
  background: #f8fafe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #003fe8;
  font-size: 1rem;
}
.pil-info .pi-sections .pis .pis-t {
  font-size: 0.64rem;
  font-weight: 600;
  color: #1e2473;
  line-height: 1.3;
}

.pil-dash {
  display: flex;
  gap: 10px;
  gap: 12px;
  margin-bottom: 15px;
}
@media (max-width: 991.98px) {
  .pil-dash {
    flex-direction: column;
  }
  .pil-dash .pd-actions,
  .pil-dash .dashboard-methodology-prev-wrap {
    width: 100% !important;
  }
}
.pil-dash .pd-mini-grid .pd-mini {
  position: relative;
  border: 1px solid #e4ecf7;
  border-radius: 12px;
  padding: 15px;
  background: #fbfcff;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 245px;
}
.pil-dash .pd-mini-grid .pd-mini .pdm-h {
  font-size: 1rem;
  font-weight: 500;
  color: #334155;
  margin-bottom: 6px;
}
.pil-dash .pd-mini-grid .pd-mini .pdm-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
}
.pil-dash .pd-mini-grid .pd-mini .pdm-val {
  font-size: 1.2rem;
  font-weight: 500;
  color: #1e2473;
}
.pil-dash .pd-mini-grid .pd-mini .pdm-delta {
  font-size: 0.66rem;
  font-weight: 600;
  white-space: nowrap;
}
.pil-dash .pd-mini-grid .pd-mini .pdm-delta.down {
  color: #1aa37a;
}
.pil-dash .pd-mini-grid .pd-mini .pdm-delta.up {
  color: #e0432f;
}
.pil-dash .pd-mini-grid .pd-mini .pdm-chart {
  width: 100%;
  height: 165px;
  margin-top: auto;
  display: block;
}
.pil-dash .pd-mini-grid .pd-mini .pdm-donut-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
}
.pil-dash .pd-mini-grid .pd-mini .pdm-donut-wrap .pdm-legend {
  position: relative !important;
  padding: 0 10px;
  top: 0 !important;
  right: inherit;
}
.pil-dash .pd-mini-grid .pd-mini .pdm-donut {
  width: 165px;
  height: 165px;
  flex-shrink: 0;
}
.pil-dash .pd-mini-grid .pd-mini .pdm-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  position: absolute;
  top: 36px;
  right: 10px;
}
.pil-dash .pd-mini-grid .pd-mini .pdm-legend li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.1rem;
  color: #334155;
  padding: 2px 0;
}
.pil-dash .pd-mini-grid .pd-mini .pdm-legend .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pil-dash .pd-mini-grid .pd-mini .pdm-legend strong {
  margin-left: auto;
  color: #1e2473;
}
.pil-dash .pd-mini-grid.swiper {
  display: block;
  width: 100%;
  overflow: hidden;
  padding-bottom: 26px;
}
.pil-dash .pd-mini-grid.swiper .swiper-slide {
  height: auto;
  display: flex;
}
.pil-dash .pd-mini-grid.swiper .swiper-pagination {
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 1;
}
.pil-dash .pd-mini-grid.swiper .swiper-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: #c2d2ee;
  opacity: 1;
  margin: 0 3px;
  transition: all 0.15s ease;
}
.pil-dash .pd-mini-grid.swiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 18px;
  border-radius: 4px;
  background: linear-gradient(135deg, #1a60ff 0%, #0d40e0 100%);
}
.pil-dash .pd-actions {
  width: 310px;
  position: relative;
  overflow: hidden;
}
.pil-dash .pd-actions .pda-h {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1e2473;
  margin-bottom: 14px;
}
.pil-dash .pd-actions .pda-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.pil-dash .pd-actions .pda-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.8rem;
  color: #334155;
  padding: 5px 0;
  border-bottom: 1px dashed #e4ecf7;
}
@media (max-width: 767.98px) {
  .pil-dash .pd-actions .pda-list li {
    padding: 0 !important;
  }
}
.pil-dash .pd-actions .pda-list li:last-child {
  border-bottom: none;
}
.pil-dash .pd-actions .pda-list li i {
  color: #003fe8;
  font-size: 0.78rem;
  margin-top: 3px;
}
.pil-dash .pd-actions .pda-target {
  position: absolute;
  right: -10px;
  bottom: -8px;
  font-size: 6.5rem;
  color: rgba(0, 63, 232, 0.12);
  pointer-events: none;
  z-index: 0;
}

.ip-card {
  background: #f8fafe;
  border: 1px solid #e4ecf7;
  border-radius: 16px;
  padding: 15px 12px;
  box-shadow: 0 2px 14px rgba(20, 40, 90, 0.05);
}
.ip-card .sol-feature-image img {
  width: 48px;
  height: auto;
}
.ip-card.imp-pathway .pi-list {
  width: 210px;
}
.ip-card.ip-card-measures {
  position: relative;
}
.ip-card.ip-card-measures img {
  position: absolute;
  bottom: -26px;
  right: 0;
  width: 40%;
  height: auto;
  opacity: 0.85;
}
.ip-card.ip-card-measures.pillar5 img {
  bottom: 0;
  width: 90%;
  max-width: 250px;
}
.ip-card.dashboard-prev-wrap {
  width: calc(100% - 310px);
}
@media (max-width: 767.98px) {
  .ip-card.dashboard-prev-wrap {
    width: 100%;
  }
}
.ip-card.dashboard-res-prev-wrap {
  width: calc(100% - 310px);
}
@media (max-width: 767.98px) {
  .ip-card.dashboard-res-prev-wrap {
    width: 100%;
  }
}
.ip-card.dashboard-res-prev-wrap .swiper-slide.most-used-category .pdm-h {
  font-size: 0.72rem;
}
.ip-card.dashboard-res-prev-wrap .swiper-slide.most-used-category .pdm-icon img {
  width: 32px;
  height: auto;
}
.ip-card.dashboard-res-prev-wrap .swiper-slide.most-used-category .pdm-h + div {
  font-size: 0.64rem;
}
.ip-card.dashboard-res-prev-wrap .swiper-slide.total-resources .pdm-icon {
  padding: 7px 5px;
}
.ip-card.dashboard-res-prev-wrap .swiper-slide.total-resources .pdm-icon img {
  width: 38px;
  height: auto;
}
.ip-card.dashboard-methodology-prev-wrap {
  width: calc(100% - 310px);
}
@media (max-width: 767.98px) {
  .ip-card.dashboard-methodology-prev-wrap {
    width: 100%;
  }
}
.ip-card .sol-clinic-setting {
  flex: 1 1 160px;
  display: flex;
  gap: 2px;
  padding: 8px;
  border: 1px solid #e4ecf7;
  border-radius: 12px;
  background: #f8faff;
}
@media (max-width: 767.98px) {
  .ip-card .sol-clinic-setting {
    flex-direction: column;
  }
}
.ip-card .sol-clinic-setting .sol-clinic-set-img img {
  width: 38px;
}

.pil-info.cols-5 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1199.98px) {
  .pil-info.cols-5 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 767.98px) {
  .pil-info.cols-5 {
    grid-template-columns: 1fr;
  }
}
.pil-info .ip-card-content-wrap {
  width: 280px;
  display: flex;
  gap: 12px;
}
@media (max-width: 767.98px) {
  .pil-info .ip-card-content-wrap {
    flex-direction: column;
  }
}

.pil-info.sol-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas: "support core core core" "chal    chal out  out" "path    path path path";
  gap: 14px;
}
@media (max-width: 991.98px) {
  .pil-info.sol-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "support core" "chal    out" "path    path";
  }
}
@media (max-width: 575.98px) {
  .pil-info.sol-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "support" "core" "chal" "out" "path";
  }
}
.pil-info.sol-layout .pi-support {
  grid-area: support;
}
.pil-info.sol-layout .pi-core {
  grid-area: core;
}
.pil-info.sol-layout .pi-chal {
  grid-area: chal;
}
.pil-info.sol-layout .pi-out {
  grid-area: out;
}
.pil-info.sol-layout .pi-path {
  grid-area: path;
}
.pil-info.sol-layout .sol-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid #e4ecf7;
}
.pil-info.sol-layout .sol-head .pi-col-h {
  margin: 0;
}
.pil-info.sol-layout .sol-head-ic {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e8effc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #003fe8;
  font-size: 1.05rem;
}
.pil-info.sol-layout .sol-head-ic.danger {
  background: #fdecea;
  color: #e0432f;
}
.pil-info.sol-layout .pi-list.cols-2 {
  columns: 2;
  column-gap: 26px;
}
.pil-info.sol-layout .pi-list.cols-2 li {
  break-inside: avoid;
}
.pil-info.sol-layout .sol-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 991.98px) {
  .pil-info.sol-layout .sol-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 575.98px) {
  .pil-info.sol-layout .sol-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pil-info.sol-layout .sol-step {
  position: relative;
  margin: 16px 9px 4px;
  padding: 16px 10px 12px;
  border: 1px solid #e4ecf7;
  border-radius: 14px;
  background: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.pil-info.sol-layout .sol-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  width: 18px;
  border-top: 2px dashed #c2d2ee;
}
@media (max-width: 991.98px) {
  .pil-info.sol-layout .sol-step:not(:last-child)::after {
    display: none;
  }
}
.pil-info.sol-layout .sol-step .sol-step-num {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #003fe8;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
}
.pil-info.sol-layout .sol-step .sol-step-ic {
  color: #003fe8;
  font-size: 1.5rem;
  margin-top: 4px;
}
.pil-info.sol-layout .sol-step .sol-step-t {
  font-weight: 700;
  font-size: 0.82rem;
  color: #1e2473;
}
.pil-info.sol-layout .sol-step .sol-step-d {
  font-size: 0.68rem;
  color: #64748b;
  line-height: 1.35;
}

@media (max-width: 991.98px) {
  .ip-shell {
    flex-direction: column;
  }
  .ip-side {
    width: 100%;
    min-width: 100%;
  }
  .ip-side .ip-side-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .ip-main {
    padding: 24px 16px 40px;
  }
}
.ipx-001 {
  font-size: 0.72rem;
  color: #64748b;
}

.ipx-002 {
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.45;
}

.ipx-003 {
  color: #16235f;
  font-size: 0.82rem;
}

.ipx-004 {
  flex: 0 0 22px;
  height: 22px;
  border-radius: 50%;
  background: #1f5fe0;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ipx-005 {
  margin: 8px 0;
}

.ipx-006 {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.ipx-007 {
  color: #1f5fe0;
  font-size: 1.2rem;
  margin-top: 2px;
}

.ipx-008 {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.ipx-009 {
  color: #16235f;
  font-size: 0.84rem;
  padding-bottom: 6px;
}

.ipx-010 {
  text-align: center;
}

.ipx-011 {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 4px;
}

.ipx-012 {
  color: #1f5fe0;
  font-size: 1.3rem;
}

.ipx-013 {
  color: #16235f;
  font-size: 0.82rem;
  padding-bottom: 2px;
}

.ipx-014 {
  margin: 5px 0 10px;
}
.ipx-014 img {
  width: 50px;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}
.ipx-014.extra-height-vs-card {
  margin: 25px 0 10px;
}

.ipx-015 {
  font-weight: 400;
  color: #0d2a6b;
  font-size: 0.82rem;
}

.ipx-016 {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ipx-017 {
  flex: 1;
  height: 7px;
  background: #eef3fb;
  position: relative;
  border-radius: 3px;
}

.ipx-018 {
  font-size: 0.7rem;
  font-weight: 500;
  color: #334155;
}

.ipx-019 {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: #3b82f6;
}

.ipx-020 {
  color: #0d2a6b;
}

.ipx-021 {
  color: #0d2a6b;
  font-size: 0.9rem;
  line-height: 1.15;
}

.ipx-022 {
  color: #64748b;
  font-size: 0.8rem;
}

.ipx-023 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
}

.ipx-024 {
  font-size: 0.76rem;
  font-weight: 600;
  color: #1e2473;
}
@media (max-width: 767.98px) {
  .ipx-024 {
    margin-top: -13px;
  }
}

.ipx-025 {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.ipx-026 {
  margin: 0;
}

.ipx-027 {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ipx-028 {
  text-align: center;
  margin: 8px 0 2px;
}

.ipx-029 {
  font-size: 1.4rem;
  font-weight: 400;
  color: #0d2a6b;
  line-height: 1;
}

.ipx-030 {
  color: #1f5fe0;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
}

.ipx-031 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ipx-032 {
  display: flex;
  gap: 10px;
}

.ipx-033 {
  flex: 0 0 250px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ipx-034 {
  flex: 0 0 26px;
  text-align: right;
  font-weight: 700;
  color: #0d2a6b;
}

.ipx-035 {
  flex: 0 0 92px;
}

.ipx-036 {
  flex: 0 0 96px;
}

.ipx-037 {
  flex: 1;
  height: 7px;
  border-radius: 4px;
  background: #e4ecf7;
  position: relative;
}

.ipx-038 {
  font-size: 0.58rem;
  color: #94a3b8;
}

.ipx-039 {
  font-weight: 400;
  color: #e0432f;
  font-size: 1.4rem;
}

.ipx-040 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ipx-041 {
  margin: 12px 0 8px;
}

.ipx-042 {
  position: relative;
  width: 108px;
  height: 108px;
}

.ipx-043 {
  display: flex;
  gap: 8px;
  padding: 14px;
  border: 1px solid #e4ecf7;
  border-radius: 12px;
  background: #f8faff;
}

.ipx-044 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  border: 1px solid #e4ecf7;
  border-radius: 12px;
  background: #f8faff;
  text-decoration: none;
}

.ipx-045 {
  flex: 0 0 24px;
  text-align: right;
  font-weight: 700;
  color: #0d2a6b;
}

.ipx-046 {
  flex: 0 0 30px;
  text-align: right;
  font-weight: 700;
  color: #0d2a6b;
}

.ipx-047 {
  flex: 0 0 84px;
  color: #334155;
}

.ipx-048 {
  flex: 0 0 86px;
}

.ipx-049 {
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  border: 1px solid #e4ecf7;
  border-radius: 12px;
  background: #f8faff;
}

.ipx-050 {
  flex: 1;
  height: 6px;
  border-radius: 4px;
  background: #e4ecf7;
  position: relative;
}

.ipx-051 {
  font-size: 0.62rem;
  color: #64748b;
}

.ipx-052 {
  font-size: 0.66rem;
  font-weight: 700;
  color: #0d2a6b;
  margin-bottom: 8px;
}

.ipx-053 {
  position: absolute;
  right: 0;
  background: #3b82f6;
  border-radius: 3px;
}

.ipx-054 {
  align-self: center;
  color: #94a3b8;
  padding-top: 14px;
}

.ipx-055 {
  color: #1f5fe0;
  font-size: 1.1rem;
}

.ipx-056 {
  color: #1f5fe0;
  font-size: 1.2rem;
}

.ipx-057 {
  color: #1f5fe0;
  font-size: 1rem;
}

.ipx-058 {
  display: flex;
  align-items: center;
  color: #9cb4e6;
}

.ipx-059 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
  font-size: 0.72rem;
}

.ipx-060 {
  display: flex;
  justify-content: space-between;
  font-size: 0.66rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 3px;
}

.ipx-061 {
  flex: 1;
  text-align: center;
}

.ipx-062 {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #334155;
  margin-bottom: 8px;
}

.ipx-063 {
  font-size: 0.6rem;
  color: #94a3b8;
  font-weight: 600;
}

.ipx-064 {
  font-size: 1.4rem;
  font-weight: 400;
  color: #0d2a6b;
  line-height: 1.1;
}

.ipx-065 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #1aa37a;
}

.ipx-066 {
  font-size: 2.2rem;
  color: #e0432f;
}

.ipx-067 {
  height: 6px;
  border-radius: 4px;
  background: #eef2f8;
}

.ipx-068 {
  text-align: center;
  color: #64748b;
  font-size: 0.78rem;
  margin-bottom: 6px;
}

.ipx-070 {
  display: flex;
  justify-content: space-between;
  font-size: 0.54rem;
  color: #64748b;
}

.ipx-071 {
  flex: 0 0 24px;
  text-align: right;
  font-weight: 700;
  color: #1aa37a;
}

.ipx-072 {
  flex: 0 0 24px;
  text-align: right;
  font-weight: 700;
  color: #e0432f;
}

.ipx-073 {
  font-size: 0.5rem;
  color: #64748b;
}

.ipx-074 {
  font-size: 0.6rem;
}

.ipx-075 {
  font-size: 0.82rem;
  font-weight: 400;
  color: #0d2a6b;
}

.ipx-076 {
  margin-bottom: 16px;
}

.ipx-077 {
  margin: 6px 0;
}

.ipx-078 {
  padding: 20px;
}

.ipx-079 {
  position: absolute;
  left: 50%;
  background: #3b82f6;
  border-radius: 0 3px 3px 0;
}

.ipx-080 {
  position: absolute;
  right: 50%;
  background: #94a3b8;
  border-radius: 3px 0 0 3px;
}

.ipx-081 {
  text-align: center;
  color: #1f5fe0;
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 6px;
}

.ipx-082 {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid #3b82f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
}

.ipx-083 {
  color: #1aa37a;
}

.ipx-084 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-top: 6px;
}

.ipx-085 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
@media (max-width: 767.98px) {
  .ipx-085 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.ipx-086 {
  font-size: 0.62rem;
}

.ipx-087 {
  font-size: 0.72rem;
  font-weight: 700;
  color: #1aa37a;
}

.ipx-088 {
  font-size: 0.8rem;
  color: #64748b;
}

.ipx-089 {
  font-size: 1.6rem;
  font-weight: 400;
  color: #0d2a6b;
}

.ipx-090 {
  font-size: 1.6rem;
  font-weight: 400;
  color: #1aa37a;
}

.ipx-091 {
  font-size: 1.7rem;
  font-weight: 400;
  color: #0d2a6b;
}

.ipx-092 {
  font-size: 1rem;
}

.ipx-093 {
  height: 20px;
  border-radius: 4px;
  background: #3b82f6;
}

.ipx-094 {
  height: 20px;
  border-radius: 4px;
  background: #5b9bff;
}

.ipx-095 {
  margin: 16px 0 6px;
}

.ipx-096 {
  margin: 4px 0;
}

.ipx-097 {
  align-items: center;
  gap: 12px;
}

.ipx-098 {
  background: #1f5fe0;
  border-radius: 0 8px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 6px;
}

.ipx-099 {
  background: #22c55e;
  border-radius: 0 0 0 8px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 6px;
}

.ipx-100 {
  background: #3b82f6;
  border-radius: 0 0 8px 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 6px;
}

.ipx-101 {
  background: #5b9bff;
  border-radius: 8px 0 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 6px;
}

.ipx-102 {
  border-radius: 4px;
  background: #22c55e;
}

.ipx-103 {
  border-radius: 4px;
  background: #3b82f6;
}

.ipx-104 {
  border-radius: 4px;
  background: #94a3b8;
}

.ipx-105 {
  border-radius: 4px;
  background: #e0432f;
}

.ipx-106 {
  color: #1f5fe0;
}

.ipx-107 {
  color: #f59e0b;
}

.ipx-108 {
  color: rgba(245, 180, 0, 0.2196078431);
}

.ipx-109 {
  color: #fff;
  font-size: 1.3rem;
}

.ipx-110 {
  display: block;
  height: 9px;
  border-radius: 6px;
  background: linear-gradient(90deg, #e0432f, #f59e0b, #f5b400, #22c55e, #1f5fe0);
}

.ipx-111 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
}

.ipx-112 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4px;
  margin-top: 10px;
}

.ipx-113 {
  display: flex;
  align-items: stretch;
  gap: 8px;
  flex-wrap: wrap;
}

.ipx-114 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.ipx-115 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.ipx-116 {
  display: flex;
  gap: 5px;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, #0144f6 0%, #003fe8 10%, #00249a 90%) padding-box, linear-gradient(180deg, #dce9f9 0%, #dce9f9 50%, #435eb0 100%) border-box;
}

.ipx-117 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  border: 1px solid #1f5fe0;
  border-radius: 12px;
  background: #eef3ff;
  text-decoration: none;
}

.ipx-118 {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 14px 0;
  color: #cbd9ee;
  font-size: 2rem;
}

.ipx-119 {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #e4ecf7;
  padding-top: 6px;
  font-size: 0.7rem;
  font-weight: 400;
  color: #0d2a6b;
}

.ipx-120 {
  display: flex;
  justify-content: space-between;
  font-size: 0.56rem;
  color: #64748b;
}

.ipx-121 {
  display: flex;
  justify-content: space-between;
  font-size: 0.56rem;
  color: #64748b;
  margin-top: 2px;
}

.ipx-122 {
  display: flex;
  justify-content: space-between;
  font-size: 0.58rem;
  color: #64748b;
}

.ipx-123 {
  display: flex;
  justify-content: space-between;
  font-size: 0.6rem;
  color: #0d2a6b;
  font-weight: 700;
}

.ipx-124 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.ipx-125 {
  flex: 1.1;
  text-align: center;
}

.ipx-126 {
  font-size: 0.52rem;
  color: #64748b;
}

.ipx-127 {
  font-size: 0.55rem;
  color: #94a3b8;
}

.ipx-128 {
  font-size: 0.65rem;
  color: #1aa37a;
}

.ipx-129 {
  font-size: 0.68rem;
  color: #64748b;
  margin-top: 8px;
}

.ipx-130 {
  font-size: 0.6rem;
  color: #94a3b8;
}

.ipx-131 {
  font-size: 0.72rem;
  color: #dbe6ff;
  line-height: 1.45;
}

.ipx-132 {
  font-size: 0.74rem;
  color: #1f5fe0;
  font-weight: 700;
  margin-top: 2px;
}

.ipx-133 {
  font-size: 0.74rem;
  color: #64748b;
  margin-top: 4px;
}

.ipx-134 {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 4px;
  font-style: italic;
}

.ipx-135 {
  font-size: 1.8rem;
  color: #1f5fe0;
  margin: 6px 0;
}

.ipx-136 {
  font-size: 1rem;
  font-weight: 400;
  color: #0d2a6b;
}

.ipx-137 {
  font-size: 1rem;
  font-weight: 400;
  color: #0d2a6b;
  line-height: 1;
}

.ipx-138 {
  font-weight: 700;
  color: #fff;
  font-size: 0.82rem;
}

.ipx-139 {
  font-weight: 400;
  color: #0d2a6b;
  font-size: 1.2rem;
}

.ipx-140 {
  font-weight: 400;
  color: #0d2a6b;
  font-size: 1.3rem;
}

.ipx-141 {
  gap: 4px;
}

.ipx-142 {
  grid-template-columns: repeat(4, 1fr);
}

.ipx-143 {
  height: 64px;
}

.ipx-144 {
  justify-content: flex-end;
}

.ipx-145 {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.ipx-146 {
  margin: 10px 0;
}

.ipx-147 {
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ipx-148 {
  margin: 14px 0 10px;
  color: #e0432f;
  font-size: 2rem;
}

.ipx-149 {
  margin: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.62rem;
  color: #334155;
}

.ipx-150 {
  margin: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.62rem;
  color: #334155;
}

.ipx-151 {
  margin: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.66rem;
  color: #334155;
}

.ipx-152 {
  position: absolute;
  top: -16px;
  right: 0;
  background: #1f5fe0;
  color: #fff;
  font-size: 0.66rem;
  font-weight: 400;
  padding: 2px 8px;
  border-radius: 10px;
}

.ipx-153 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e4ecf7;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.52rem;
  font-weight: 400;
  color: #0d2a6b;
  line-height: 1.1;
}

.ipx-154 {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  margin-top: 8px;
  height: 96px;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
}

.ipx-155 {
  position: relative;
  flex: 0 0 auto;
}

.ipx-156 {
  position: relative;
  margin: 18px 0 6px;
}

.ipx-157 {
  position: relative;
  margin: 6px auto 0;
}

.ipx-158 {
  text-align: center;
  color: #1aa37a;
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 6px;
}

.ipx-159 {
  text-align: center;
  font-size: 0.58rem;
  color: #64748b;
  margin-top: 3px;
}

.ipx-160 {
  text-align: center;
  font-size: 0.62rem;
  color: #94a3b8;
}

.ipx-161 {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #1aa37a;
  margin-top: 4px;
}

.ipx-162 {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 400;
  color: #1aa37a;
}

.ipx-163 {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #1f5fe0;
}

.ipx-164 {
  text-align: right;
  font-size: 0.66rem;
  font-weight: 700;
  color: #1aa37a;
  margin-bottom: 4px;
}

.ipx-165 {
  text-align: right;
  font-size: 0.7rem;
  font-weight: 700;
  color: #1aa37a;
  margin-bottom: 2px;
}

.ipx-166 {
  text-align: right;
  font-weight: 400;
  color: #0d2a6b;
  font-size: 0.95rem;
}

.ipx-167 {
  width: 140px;
}

.ipx-168 {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 4px solid #1f5fe0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
}

.method-approach-priority-info-body {
  display: flex;
  gap: 5px;
  height: calc(100% - 60px);
  align-items: center;
}
.method-approach-priority-info-body .text {
  text-align: left;
  font-weight: 600;
  color: #5a6b85;
  font-size: 0.87rem;
}
.method-approach-priority-info-body .text.extra-large {
  font-size: 1.25rem;
}
.method-approach-priority-info-body .text .text-info2 {
  margin-left: -40px;
  font-size: 0.82rem;
}
.method-approach-priority-info-footer {
  font-weight: 500;
  color: #5a6b85;
  font-size: 0.82rem;
}

.bgc-06b6d4 {
  background: #06b6d4;
}

.bgc-14b8a6 {
  background: #14b8a6;
}

.bgc-22c55e {
  background: #22c55e;
}

.bgc-38bdf8 {
  background: #38bdf8;
}

.bgc-3b82f6 {
  background: #3b82f6;
}

.bgc-6366f1 {
  background: #6366f1;
}

.bgc-8b5cf6 {
  background: #8b5cf6;
}

.bgc-93c5fd {
  background: #93c5fd;
}

.bgc-94a3b8 {
  background: #94a3b8;
}

.bgc-e0432f {
  background: #e0432f;
}

.bgc-ec4899 {
  background: #ec4899;
}

.bgc-f5b400 {
  background: #f5b400;
}

.bgc-f97316 {
  background: #f97316;
}

@media (max-width: 767.98px) {
  .ipx-033 {
    flex: 0 0 100%;
  }
  .ipx-049 {
    flex-basis: 100%;
  }
}
@media (max-width: 575.98px) {
  .ipx-035, .ipx-036 {
    flex-basis: 78px;
  }
  .ipx-047, .ipx-048 {
    flex-basis: 72px;
  }
}
@media (max-width: 575.98px) {
  .ipx-066 {
    font-size: 1.7rem;
  }
  .ipx-065, .ipx-039, .ipx-064, .ipx-029 {
    font-size: 1.25rem;
  }
  .ipx-012 {
    font-size: 1.15rem;
  }
}

/*# sourceMappingURL=main.css.map */