:root {
  --primary-teal: #44A792;
  --royal-blue: #4FA39E;
  --corporate-navy: #1D3F99;
  --premium-gold: #46e6c3;
  --gold-light: #F57E1F;
  --gold-dark: #D43A02;
  --bg-white: #fff;
  --bg-off-white: #F6FAF9;
  --bg-section: #E5F2EE;
  --bg-navy-deep: #44A792;
  --bg-navy-mid: #255D59;
  --text-dark: #111827;
  --text-body: #374151;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --text-white: #fff;
  --text-white-70: #ffffffb3;
  --text-white-50: #ffffff80;
  --border-light: #E2E6F2;
  --border-medium: #C8D6EC;
  --border-gold: #F15E224d;
  --success: #16a34a;
  --font-heading: "Plus Jakarta Sans", sans-serif;
  --font-body: "Inter", sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-7: 1.75rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-14: 3.5rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-28: 7rem;
  --space-32: 8rem;
  --shadow-sm: 0 1px 3px #255D590f, 0 1px 2px #255D590a;
  --shadow-md: 0 4px 16px #255D5914, 0 2px 6px #255D590a;
  --shadow-lg: 0 10px 40px #255D591f, 0 4px 16px #255D590f;
  --shadow-xl: 0 20px 60px #255D5926, 0 8px 24px #255D5914;
  --shadow-gold: 0 8px 32px #F15E2233;
  --shadow-card: 0 2px 12px #255D5912, 0 1px 4px #255D590a;
  --shadow-card-hover: 0 8px 32px #255D5924, 0 4px 12px #255D5914;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
  --container-padding: clamp(1rem, 4vw, 2rem);
  --header-height: 80px;
  --z-base: 1;
  --z-sticky: 2000;
  --z-overlay: 3000;
  --z-modal: 4000;
  --z-tooltip: 5000;
}
*,
:before,
:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-body);
  background-color: var(--bg-off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
  overflow-x: hidden;
}
img,
svg {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: var(--font-body);
  cursor: pointer;
  background: 0 0;
  border: none;
}
ul,
ol {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.2;
}
p {
  line-height: 1.75;
}
.container {
  width: 100%;
  max-width: var(--max-width);
  padding: 0 var(--container-padding);
  margin: 0 auto;
}
.section {
  padding: var(--space-24) 0;
}
.section-sm {
  padding: var(--space-16) 0;
}
.section-lg {
  padding: var(--space-32) 0;
}
.eyebrow {
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-teal);
  font-weight: 600;
  display: inline-flex;
}
.eyebrow:before {
  content: "";
  background: var(--primary-teal);
  border-radius: 2px;
  flex-shrink: 0;
  width: 24px;
  height: 2px;
  display: inline-block;
}
.eyebrow-gold {
  color: var(--premium-gold);
}
.eyebrow-gold:before {
  background: var(--premium-gold);
}
.eyebrow-white {
  color: #fffc;
}
.eyebrow-white:before {
  background: var(--premium-gold);
}
.section-title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  color: var(--text-dark);
  letter-spacing: -0.03em;
  font-weight: 800;
  line-height: 1.1;
}
.section-title-white {
  color: var(--text-white);
}
.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 600px;
  font-weight: 400;
  line-height: 1.7;
}
.section-subtitle-white {
  color: var(--text-white-70);
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.btn {
  justify-content: center;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid #0000;
  padding: 0.875rem 2rem;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
}
.btn-primary {
  background: #1D3F99;
  color: var(--text-white);
  border-color: var(--corporate-navy);
}
.btn-primary:hover {
  background: var(--royal-blue);
  border-color: var(--royal-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn-gold {
  color: var(--text-white);
background: #46E6C3;
background: linear-gradient(141deg, rgba(16, 152, 126, 1) 39%, rgba(70, 230, 195, 1) 77%);
border:none;
}
.btn-gold:hover {
  color: var(--text-white);
background: #46E6C3;
background: linear-gradient(141deg, rgba(16, 152, 126, 1) 39%, rgba(70, 230, 195, 1) 77%);
}
.btn-outline {
  color: var(--corporate-navy);
  border-color: var(--corporate-navy);
  background: 0 0;
}
.btn-outline:hover {
  background: var(--corporate-navy);
  color: var(--text-white);
  transform: translateY(-1px);
}
.btn-outline-white {
  color: var(--text-white);
  background: 0 0;
  border-color: #fff6;
}
.btn-outline-white:hover {
  background: #ffffff1a;
  border-color: #fffc;
  transform: translateY(-1px);
}
.btn-outline-gold {
  color: var(--premium-gold);
  border-color: var(--premium-gold);
  background: 0 0;
}
.btn-outline-gold:hover {
  background: var(--premium-gold);
  color: var(--corporate-navy);
  transform: translateY(-1px);
}
.btn-lg {
  font-size: var(--text-base);
  padding: 1rem 2.5rem;
}
.btn-sm {
  font-size: var(--text-xs);
  padding: 0.625rem 1.25rem;
}
.btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}
.btn:hover svg {
  transform: translate(3px);
}
.card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--transition-base);
}
.card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-medium);
  transform: translateY(-4px);
}
.divider {
  background: linear-gradient(90deg, var(--primary-teal), var(--royal-blue));
  width: 48px;
  height: 3px;
  margin: var(--space-4) 0;
  border-radius: 2px;
}
.divider-gold {
  background: linear-gradient(90deg, var(--premium-gold), var(--gold-light));
}
.divider-center {
  margin: var(--space-4) auto;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-section);
}
::-webkit-scrollbar-thumb {
  background: var(--border-medium);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}
::selection {
  color: var(--text-dark);
  background: #44A79226;
}
.page-enter {
  opacity: 0;
  transform: translateY(12px);
}
.page-enter-active {
  opacity: 1;
  transition:
    opacity 0.4s,
    transform 0.4s;
  transform: translateY(0);
}
@media (width<=768px) {
  .section {
    padding: var(--space-16) 0;
  }
  .section-lg {
    padding: var(--space-20) 0;
  }
}
._header_wskof_1 {
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: #fffffffa;
  color: var(--text-body);
  z-index: var(--z-sticky);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 24px #255D5912;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
._container_wskof_25 {
  max-width: var(--max-width);
  padding: 0 var(--container-padding);
  height: var(--header-height);
  justify-content: space-between;
  align-items: center;
  gap: var(--space-8);
  margin: 0 auto;
  display: flex;
}
._logoLink_wskof_36 {
  flex-shrink: 0;
  align-items: center;
  display: flex;
}
._nav_wskof_43 {
  align-items: center;
  gap: var(--space-1);
  display: flex;
}
._navLink_wskof_49 {
  font-size: var(--text-sm);
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition:
    color var(--transition-fast),
    background var(--transition-fast);
  white-space: nowrap;
  padding: 0.5rem 0.875rem;
  font-weight: 500;
}
._navLink_wskof_49:hover {
  color: var(--corporate-navy);
  background: #255D590d;
}
._navLinkActive_wskof_64 {
  color: var(--corporate-navy);
  font-weight: 600;
}
._navLinkLight_wskof_69:hover {
  color: #fff;
  background: #ffffff1f;
}
._navLinkLight_wskof_69._navLinkActive_wskof_64 {
  color: #fff;
  background: #ffffff26;
}
._actions_wskof_84 {
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  display: flex;
}
._ctaBtn_wskof_91 {
  padding: 0.6875rem 1.375rem;
  font-size: 0.8125rem;
}
._mobileToggle_wskof_97 {
  border-radius: var(--radius-md);
  width: 40px;
  height: 40px;
  color: var(--text-dark);
  transition:
    background var(--transition-fast),
    color var(--transition-fast);
  justify-content: center;
  align-items: center;
  display: none;
}
._mobileToggle_wskof_97:hover {
  background: #255D590f;
}
._mobileToggleLight_wskof_112 {
  color: #fff;
}
._mobileToggleLight_wskof_112:hover {
  background: #ffffff26;
}
._mobileOverlay_wskof_121 {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: calc(var(--z-sticky) + 1);
  background: #255D5973;
  position: fixed;
  inset: 0;
}
._mobileMenu_wskof_130 {
  background: var(--bg-white);
  width: min(360px, 90vw);
  z-index: calc(var(--z-sticky) + 2);
  flex-direction: column;
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  overflow-y: auto;
  box-shadow: -8px 0 40px #255D5926;
}
._mobileMenuHeader_wskof_144 {
  padding: 1.25rem var(--space-6);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-white);
  z-index: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: sticky;
  top: 0;
}
._mobileClose_wskof_156 {
  border-radius: var(--radius-md);
  width: 36px;
  height: 36px;
  color: var(--text-muted);
  transition: background var(--transition-fast);
  justify-content: center;
  align-items: center;
  display: flex;
}
._mobileClose_wskof_156:hover {
  background: var(--bg-section);
  color: var(--text-dark);
}
._mobileNav_wskof_172 {
  padding: var(--space-6);
  gap: var(--space-1);
  flex-direction: column;
  flex: 1;
  display: flex;
}
._mobileNavLink_wskof_180 {
  font-size: var(--text-base);
  color: var(--text-body);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  border-left: 3px solid #0000;
  padding: 0.875rem 1rem;
  font-weight: 500;
  display: block;
}
._mobileNavLink_wskof_180:hover {
  background: var(--bg-section);
  color: var(--corporate-navy);
  border-left-color: var(--primary-teal);
  padding-left: 1.25rem;
}
._mobileNavLinkActive_wskof_198 {
  color: var(--corporate-navy);
  border-left-color: var(--corporate-navy);
  background: #255D590d;
  font-weight: 600;
}
._mobileCta_wskof_205 {
  padding: var(--space-6);
  border-top: 1px solid var(--border-light);
  gap: var(--space-4);
  flex-direction: column;
  display: flex;
}
._mobileContact_wskof_213 {
  justify-content: center;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: var(--text-muted);
  display: flex;
}
._mobileContact_wskof_213 a {
  color: var(--royal-blue);
  transition: color var(--transition-fast);
  font-weight: 500;
}
._mobileContact_wskof_213 a:hover {
  color: var(--corporate-navy);
}
@media (width<=1024px) {
  ._nav_wskof_43,
  ._ctaBtn_wskof_91 {
    display: none;
  }
  ._mobileToggle_wskof_97 {
    display: flex;
  }
}
@media (width>=1025px) {
  ._mobileOverlay_wskof_121,
  ._mobileMenu_wskof_130 {
    display: none;
  }
}
._footer_1wse9_1 {
background: #1B4A47;
  color: var(--text-white);
}
._ctaStrip_1wse9_7 {
  background: linear-gradient(
    135deg,
    #07584a 0%,
    #066d5a 60%,
    #6ae4c9 100%
  );
  border-bottom: 1px solid #ffffff14;
  position: relative;
  overflow: hidden;
}
._ctaStrip_1wse9_7:before {
  content: "";
  pointer-events: none;
  background: #cfa84f14;
  border-radius: 50%;
  width: 240px;
  height: 240px;
  position: absolute;
  top: -60px;
  right: -60px;
}
._ctaInner_1wse9_26 {
  max-width: var(--max-width);
  padding: var(--space-12) var(--container-padding);
  justify-content: space-between;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  margin: 0 auto;
  display: flex;
}
._ctaTitle_1wse9_39 {
  font-size: var(--text-2xl);
  color: var(--text-white);
  margin-bottom: var(--space-2);
  font-weight: 700;
}
._ctaDesc_1wse9_46 {
  color: var(--text-white-70);
  font-size: var(--text-base);
}
._ctaActions_1wse9_51 {
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  display: flex;
}
._main_1wse9_59 {
  padding: var(--space-12) 0 var(--space-10);
}
._container_1wse9_63 {
  max-width: var(--max-width);
  padding: 0 var(--container-padding);
  margin: 0 auto;
}
._grid_1wse9_69 {
  gap: var(--space-8);
  grid-template-columns: 2fr 1fr 1fr 1.3fr 1fr;
  display: grid;
}
._brandDesc_1wse9_78 {
  color: var(--text-white-70);
  font-size: var(--text-sm);
  margin-top: var(--space-3);
  margin-bottom: var(--space-3);
  max-width: 340px;
  line-height: 1.75;
}
._sebiTag_1wse9_87 {
  align-items: center;
  gap: var(--space-2);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: #4dd9c6;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-4);
  background: #44A7921f;
  border: 1px solid #44A79240;
  padding: 0.3rem 0.875rem;
  font-weight: 600;
  display: inline-flex;
}
._sebiDot_1wse9_102 {
  background: #4dd9c6;
  border-radius: 50%;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
}
._contactList_1wse9_110 {
  gap: var(--space-2);
  flex-direction: column;
  display: flex;
}
._contactItem_1wse9_116 {
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-white-70);
  transition: color var(--transition-fast);
  line-height: 1.5;
  display: flex;
}
._contactItem_1wse9_116:hover {
  color: var(--text-white);
}
._contactItem_1wse9_116 svg {
  color: var(--primary-teal);
  flex-shrink: 0;
  margin-top: 2px;
}
._colTitle_1wse9_139 {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--premium-gold);
  margin-bottom: var(--space-3);
  font-weight: 700;
}
._linkList_1wse9_148 {
  gap: var(--space-2);
  flex-direction: column;
  display: flex;
}
._footerLink_1wse9_154 {
  font-size: var(--text-sm);
  color: var(--text-white-70);
  transition:
    color var(--transition-fast),
    padding-left var(--transition-fast);
  display: inline-block;
}
._footerLink_1wse9_154:hover {
  color: var(--text-white);
  padding-left: 4px;
}
._bottomBar_1wse9_167 {
  padding: var(--space-4) 0;
  border-top: 1px solid #ffffff14;
}
._bottomInner_1wse9_172 {
  max-width: var(--max-width);
  padding: 0 var(--container-padding);
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin: 0 auto;
  display: flex;
}
._copyright_1wse9_183 {
  font-size: var(--text-sm);
  color: var(--text-white-70);
  font-weight: 500;
}
._disclaimer_1wse9_189 {
  font-size: var(--text-xs);
  color: var(--text-white-50);
  text-align: center;
}
._bottomLinks_1wse9_195 {
  align-items: center;
  gap: var(--space-3);
  display: flex;
}
._bottomLink_1wse9_195 {
  font-size: var(--text-xs);
  color: var(--text-white-50);
  transition: color var(--transition-fast);
}
._bottomLink_1wse9_195:hover {
  color: var(--text-white-70);
}
._bottomSep_1wse9_211 {
  background: #ffffff40;
  border-radius: 50%;
  flex-shrink: 0;
  width: 3px;
  height: 3px;
}
@media (width<=1024px) {
  ._grid_1wse9_69 {
    gap: var(--space-10);
    grid-template-columns: 1fr 1fr;
  }
  ._brandCol_1wse9_76 {
    grid-column: 1/-1;
  }
  ._brandDesc_1wse9_78 {
    max-width: 100%;
  }
}
@media (width<=640px) {
  ._ctaInner_1wse9_26 {
    flex-direction: column;
    align-items: flex-start;
  }
  ._grid_1wse9_69 {
    gap: var(--space-8);
    grid-template-columns: 1fr 1fr;
  }
  ._bottomInner_1wse9_172 {
    text-align: center;
    flex-direction: column;
  }
  ._disclaimer_1wse9_189 {
    order: 3;
  }
}
@media (width<=400px) {
  ._grid_1wse9_69 {
    grid-template-columns: 1fr;
  }
}
._overlay_3kao6_1 {
  z-index: 9999;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background: #255D5959;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  animation: 0.25s _fadeIn_3kao6_1;
  display: flex;
  position: fixed;
  inset: 0;
}
@keyframes _fadeIn_3kao6_1 {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
._popup_3kao6_19 {
  background: #fff;
  border-radius: 8px;
  width: 100%;
  max-width: 480px;
  padding: 2rem 2.25rem 1.75rem;
  animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) _slideUp_3kao6_1;
  position: relative;
  box-shadow: 0 8px 40px #255D592e;
}
@keyframes _slideUp_3kao6_1 {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
._closeBtn_3kao6_35 {
  color: #6b7280;
  cursor: pointer;
  background: 0 0;
  border: none;
  border-radius: 4px;
  padding: 0.2rem 0.4rem;
  font-size: 1.4rem;
  line-height: 1;
  transition:
    color 0.15s,
    background 0.15s;
  position: absolute;
  top: 0.75rem;
  right: 0.875rem;
}
._closeBtn_3kao6_35:hover {
  color: #1b2430;
  background: #eff6f5;
}
._text_3kao6_55 {
  color: #374151;
  margin: 0;
  padding-right: 0.5rem;
  font-family: Inter, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.7;
}
._hero_2bkxl_2 {
  min-height: 100vh;
  padding-top: var(--header-height);
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}
._heroBg_2bkxl_11 {
  z-index: 0;
  position: absolute;
  inset: 0;
}
._heroBgSvg_2bkxl_12 {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
._heroContainer_2bkxl_14 {
  z-index: 1;
  max-width: var(--max-width);
  padding: var(--space-20) var(--container-padding);
  gap: var(--space-16);
  align-items: center;
  width: 100%;
  margin: 0 auto;
  display: grid;
  position: relative;
}
._heroContent_2bkxl_27 {
  gap: var(--space-6);
  flex-direction: column;
  display: flex;
}
._heroTitle_2bkxl_29 {
  color: #fff;
  letter-spacing: -0.03em;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
}
._heroTitleGold_2bkxl_37 {
  color: #46e6c3; 
  background-image: linear-gradient(to right, #46e6c3, #547ae2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; 
}
._heroDesc_2bkxl_39 {
  font-size: var(--text-lg);
  color: #ffffffbf;
  max-width: 520px;
  line-height: 1.7;
}
._heroBtns_2bkxl_46 {
  gap: var(--space-3);
  flex-wrap: wrap;
  display: flex;
}
._heroTrustBar_2bkxl_48 {
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid #ffffff1a;
  flex-wrap: wrap;
  display: flex;
}
._heroTrustTag_2bkxl_56 {
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  color: #ffffffa6;
  font-weight: 500;
  display: inline-flex;
}
._heroTrustTag_2bkxl_56 svg {
  color: var(--primary-teal);
}
._heroCard_2bkxl_68 {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  gap: var(--space-6);
  background: #ffffff12;
  border: 1px solid #ffffff1f;
  flex-direction: column;
  display: flex;
}
._heroCardHeader_2bkxl_79 {
  gap: var(--space-2);
  display: flex;
}
._heroCardBadge_2bkxl_81 {
  font-size: var(--text-xs);
  border-radius: var(--radius-full);
  color: #93b4ff;
  background: #4fa39e4d;
  border: 1px solid #4fa39e66;
  padding: 0.3rem 0.75rem;
  font-weight: 600;
}
._heroCardBadgeTeal_2bkxl_91 {
  font-size: var(--text-xs);
  border-radius: var(--radius-full);
  color: #4dd9c6;
  background: #44A79233;
  border: 1px solid #44A7924d;
  padding: 0.3rem 0.75rem;
  font-weight: 600;
}
._heroCardStats_2bkxl_101 {
  gap: var(--space-4);
  grid-template-columns: 1fr 1fr;
  display: grid;
}
._heroCardStat_2bkxl_101 {
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  background: #ffffff0f;
  border: 1px solid #ffffff14;
}
._heroCardStatVal_2bkxl_114 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: #fff;
  font-weight: 800;
  line-height: 1;
}
._heroCardStatLabel_2bkxl_122 {
  color: #ffffff80;
  margin-top: var(--space-1);
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.3;
}
._heroCardServices_2bkxl_130 {
  gap: var(--space-2);
  flex-direction: column;
  display: flex;
}
._heroCardService_2bkxl_130 {
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: #ffffffa6;
  border-radius: var(--radius-md);
  background: #ffffff0d;
  padding: 0.4rem 0.75rem;
  display: flex;
}
._heroCardService_2bkxl_130 svg {
  color: var(--primary-teal);
  flex-shrink: 0;
}
._aboutSection_2bkxl_150 {
  background: var(--bg-white);
}
._aboutGrid_2bkxl_152 {
  gap: var(--space-16);
  grid-template-columns: 1fr 1fr;
  align-items: center;
  display: grid;
}
._aboutTitle_2bkxl_159 {
  margin: var(--space-4) 0 var(--space-3);
}
._dividerLine_2bkxl_161 {
  background: linear-gradient(90deg, var(--primary-teal), var(--royal-blue));
  width: 48px;
  height: 3px;
  margin-bottom: var(--space-5);
  border-radius: 2px;
}
._aboutText_2bkxl_168 {
  color: var(--text-body);
  margin-bottom: var(--space-4);
  line-height: 1.75;
}
._aboutHighlights_2bkxl_174 {
  gap: var(--space-4);
  margin: var(--space-6) 0;
  padding: var(--space-6) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}
._aboutHighlight_2bkxl_174 {
  text-align: center;
}
._aboutHighlightVal_2bkxl_186 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--corporate-navy);
  font-weight: 800;
  line-height: 1;
}
._aboutHighlightLabel_2bkxl_194 {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}
._aboutImgWrap_2bkxl_201 {
  position: relative;
}
._aboutImgMain_2bkxl_203 {
  aspect-ratio: 7/8;
  border-radius: var(--radius-2xl);
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  width: 100%;
  overflow: hidden;
}
._aboutFloatCard_2bkxl_212 {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-5);
  align-items: center;
  gap: var(--space-3);
  box-shadow: var(--shadow-xl);
  color: var(--primary-teal);
  background: #fff;
  display: flex;
  position: absolute;
  bottom: -20px;
  left: -24px;
}
._aboutFloatTitle_2bkxl_227 {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--text-dark);
}
._aboutFloatSub_2bkxl_233 {
  font-size: var(--text-xs);
  color: var(--text-muted);
}
._statement_2bkxl_239 {
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
}
._statementBg_2bkxl_245 {
  position: absolute;
  inset: 0;
}
._statementInner_2bkxl_247 {
  z-index: 1;
  gap: var(--space-8);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  text-align: left;
  position: relative;
}
@media (max-width: 991px) {
  ._statementInner_2bkxl_247 {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-6);
  }
}
._statementTitle_2bkxl_257 {
  color: #fff;
  letter-spacing: -0.025em;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  text-align: inherit;
}
._statementGold_2bkxl_265 {
  color: #46e6c3; 
  background-image: linear-gradient(to right, #46e6c3, #547ae2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; 
}
._statementText_2bkxl_267 {
  color: #ffffffb3;
  font-size: var(--text-lg);
  max-width: 560px;
  line-height: 1.7;
}
._servicesSection_2bkxl_275 {
  background: var(--bg-section);
}
._sectionHead_2bkxl_277 {
  text-align: center;
  margin-bottom: var(--space-12);
  align-items: center;
  gap: var(--space-4);
  flex-direction: column;
  display: flex;
}
._servicesGrid_2bkxl_286 {
  gap: var(--space-6);
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}
._serviceCard_2bkxl_292 {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  gap: var(--space-4);
  cursor: pointer;
  background: #fff;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
}
._serviceCard_2bkxl_292:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--border-medium);
  transform: translateY(-6px);
}
._serviceIconWrap_2bkxl_310 {
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  display: flex;
}
._serviceCardTitle_2bkxl_320 {
  font-size: var(--text-lg);
  color: var(--text-dark);
  font-weight: 700;
}
._serviceCardDesc_2bkxl_326 {
  font-size: var(--text-sm);
  color: var(--text-muted);
  flex: 1;
  line-height: 1.7;
}
._serviceCardLink_2bkxl_333 {
  font-size: var(--text-sm);
  color: var(--royal-blue);
  align-items: center;
  gap: 4px;
  margin-top: auto;
  font-weight: 600;
  transition: gap 0.2s;
  display: inline-flex;
}
._serviceCard_2bkxl_292:hover ._serviceCardLink_2bkxl_333 {
  gap: 8px;
}
._servicesFooter_2bkxl_346 {
  text-align: center;
  margin-top: var(--space-10);
}
._whySection_2bkxl_352 {
  background: #fff;
}
._whyGrid_2bkxl_354 {
  gap: var(--space-16);
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  display: grid;
}
._whyRight_2bkxl_361 {
  gap: var(--space-4);
  grid-template-columns: 1fr 1fr;
  display: grid;
}
._whyCard_2bkxl_367 {
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  gap: var(--space-3);
  flex-direction: column;
  transition: all 0.25s;
  display: flex;
}
._whyCard_2bkxl_367:hover {
  border-color: var(--primary-teal);
  box-shadow: 0 4px 20px #44A7921a;
}
._whyIconWrap_2bkxl_383 {
  border-radius: var(--radius-lg);
  width: 44px;
  height: 44px;
  color: var(--corporate-navy);
  background: #255D5912;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}
._whyCardTitle_2bkxl_395 {
  font-size: var(--text-base);
  color: var(--text-dark);
  font-weight: 700;
}
._whyCardDesc_2bkxl_401 {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
}
._leadershipSection_2bkxl_408 {
  background: var(--bg-section);
}
._leaderGrid_2bkxl_410 {
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  display: flex;
}
._leaderCard_2bkxl_417 {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  align-items: center;
  gap: var(--space-3);
  background: #fff;
  flex-direction: column;
  width: 100%;
  max-width: 320px;
  transition: all 0.25s;
  display: flex;
}
._leaderCard_2bkxl_417:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
._leaderAvatarWrap_2bkxl_437 {
  border-radius: 50%;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
._leaderPhoto_2bkxl_446 {
  object-fit: cover;
  object-position: center 15%;
  border-radius: 50%;
  width: 100%;
  height: 100%; 
}
._leaderAvatar_2bkxl_437 {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  display: flex;
}
._leaderInitials_2bkxl_462 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: #fff;
  font-weight: 800;
}
._leaderName_2bkxl_469 {
  font-size: var(--text-base);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.3;
}
._leaderDesig_2bkxl_476 {
  font-size: var(--text-xs);
  color: var(--primary-teal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
._leaderBio_2bkxl_484 {
  font-size: var(--text-xs);
  color: var(--text-muted);
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  flex: 1;
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
}
._leaderTags_2bkxl_495 {
  gap: var(--space-1);
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}
._leaderTag_2bkxl_495 {
  border-radius: var(--radius-full);
  color: var(--corporate-navy);
  background: #255D590f;
  padding: 2px 8px;
  font-size: 0.65rem;
  font-weight: 600;
}
._leaderLink_2bkxl_506 {
  font-size: var(--text-xs);
  color: var(--royal-blue);
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  font-weight: 600;
  transition: gap 0.2s;
  display: inline-flex;
}
._leaderCard_2bkxl_417:hover ._leaderLink_2bkxl_506 {
  gap: 7px;
}
._clienteleSection_2bkxl_521 {
  background: #fff;
  overflow: hidden;
}
._marqueeWrap_2bkxl_523 {
  padding: var(--space-6) 0;
  margin: var(--space-6) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}
._marqueeTrack_2bkxl_531 {
  gap: var(--space-8);
  width: max-content;
  animation: 32s linear infinite _marquee_2bkxl_523;
  display: flex;
}
._marqueeTrack_2bkxl_531:hover {
  animation-play-state: paused;
}
._marqueeItem_2bkxl_540 {
  font-size: var(--text-sm);
  color: var(--text-muted);
  white-space: nowrap;
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  transition: all 0.2s;
}
._marqueeItem_2bkxl_540:hover {
  color: var(--corporate-navy);
  border-color: var(--border-medium);
  background: #fff;
}
@keyframes _marquee_2bkxl_523 {
  0% {
    transform: translate(0);
  }
  to {
    transform: translate(-50%);
  }
}
._processSection_2bkxl_564 {
  background: var(--bg-section);
}
._processTrack_2bkxl_566 {
  margin-top: var(--space-12);
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  display: grid;
  position: relative;
}
._processStep_2bkxl_574 {
  text-align: center;
  padding: 0 var(--space-4);
  position: relative;
}
._processNum_2bkxl_580 {
  background: var(--corporate-navy);
  color: #fff;
  width: 52px;
  height: 52px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-lg);
  margin: 0 auto var(--space-4);
  z-index: 1;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}
._processConnector_2bkxl_597 {
  background: linear-gradient(90deg, var(--primary-teal), #44A79233);
  height: 2px;
  position: absolute;
  top: 26px;
  left: calc(50% + 26px);
  right: calc(26px - 50%);
}
._processTitle_2bkxl_606 {
  font-size: var(--text-base);
  color: var(--text-dark);
  margin-bottom: var(--space-2);
  font-weight: 700;
}
._processDesc_2bkxl_613 {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.65;
}
._ctaSection_2bkxl_620 {
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
}
._ctaBg_2bkxl_626 {
  position: absolute;
  inset: 0;
}
._ctaInner_2bkxl_628 {
  text-align: center;
  z-index: 1;
  align-items: center;
  gap: var(--space-6);
  flex-direction: column;
  display: flex;
  position: relative;
}
._ctaTitle_2bkxl_638 {
  color: #fff;
  letter-spacing: -0.025em;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
}
._ctaSubtitle_2bkxl_646 {
  color: #ffffffb3;
  font-size: var(--text-lg);
  max-width: 580px;
  line-height: 1.7;
}
._ctaBtns_2bkxl_653 {
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}
@media (width<=1100px) {
  ._leaderGrid_2bkxl_410 {
    grid-template-columns: repeat(3, 1fr);
  }
  ._servicesGrid_2bkxl_286 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width<=900px) {
  ._heroContainer_2bkxl_14 {
    grid-template-columns: 1fr;
  }
  ._heroVisual_2bkxl_663 {
    display: none;
  }
  ._aboutGrid_2bkxl_152 {
    grid-template-columns: 1fr;
  }
  ._aboutRight_2bkxl_665 {
    order: -1;
  }
  ._aboutImgMain_2bkxl_203 {
    aspect-ratio: 16/9;
  }
  ._aboutFloatCard_2bkxl_212 {
    display: none;
  }
  ._whyGrid_2bkxl_354 {
    grid-template-columns: 1fr;
  }
  ._processTrack_2bkxl_566 {
    gap: var(--space-6);
    grid-template-columns: repeat(3, 1fr);
  }
  ._processConnector_2bkxl_597 {
    display: none;
  }
}
@media (width<=640px) {
  ._servicesGrid_2bkxl_286 {
    grid-template-columns: 1fr;
  }
  ._leaderGrid_2bkxl_410 {
    grid-template-columns: 1fr 1fr;
  }
  ._whyRight_2bkxl_361 {
    grid-template-columns: 1fr;
  }
  ._aboutHighlights_2bkxl_174,
  ._processTrack_2bkxl_566 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width<=400px) {
  ._leaderGrid_2bkxl_410 {
    grid-template-columns: 1fr;
  }
}
._hero_1mxh5_1 {
  padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-20);
  background: linear-gradient(135deg, #44A792 0%, #255D59 60%, #1D3F99 100%);
  position: relative;
  overflow: hidden;
}
._heroBg_1mxh5_8 {
  background-image:
    radial-gradient(circle at 80%, #4fa39e26 0%, #0000 60%),
    radial-gradient(circle at 10% 80%, #44A79214 0%, #0000 50%);
  position: absolute;
  inset: 0;
}
._heroContent_1mxh5_16 {
  gap: var(--space-5);
  flex-direction: column;
  max-width: 720px;
  display: flex;
  position: relative;
}
._heroTitle_1mxh5_18 {
  color: #fff;
  letter-spacing: -0.03em;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
}
._heroGold_1mxh5_26 {
  color: var(--premium-gold);
}
._heroDesc_1mxh5_28 {
  font-size: var(--text-lg);
  color: #ffffffb8;
  max-width: 580px;
  line-height: 1.7;
}
._storySection_1mxh5_36 {
  background: #fff;
}
._storyGrid_1mxh5_38 {
  gap: var(--space-14);
  grid-template-columns: 1fr 1fr;
  align-items: start;
  display: grid;
}
._divider_1mxh5_45 {
  background: linear-gradient(90deg, var(--primary-teal), var(--royal-blue));
  width: 48px;
  height: 3px;
  margin-bottom: var(--space-5);
  border-radius: 2px;
}
._storyBadges_1mxh5_52 {
  gap: var(--space-3);
  flex-wrap: wrap;
  display: flex;
}
._storyBadge_1mxh5_52 {
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  border-radius: var(--radius-full);
  color: var(--corporate-navy);
  border: 1px solid var(--border-light);
  background: #255D590f;
  padding: 0.4rem 1rem;
  font-weight: 600;
  display: inline-flex;
}
._statsGrid_1mxh5_67 {
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  grid-template-columns: 1fr 1fr;
  display: grid;
}
._statBox_1mxh5_74 {
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
}
._statVal_1mxh5_82 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--corporate-navy);
  font-weight: 800;
  line-height: 1;
}
._statLabel_1mxh5_90 {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}
._missionBox_1mxh5_97 {
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  background: linear-gradient(135deg, #44A792, #255D59);
}
._missionTitle_1mxh5_103 {
  font-size: var(--text-base);
  color: var(--premium-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: var(--text-xs);
  margin-bottom: var(--space-2);
}
._missionText_1mxh5_113 {
  color: #ffffffbf;
  font-size: var(--text-sm);
  line-height: 1.75;
}
._valuesSection_1mxh5_120 {
  background: var(--bg-section);
}
._sectionHead_1mxh5_122 {
  text-align: center;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
  flex-direction: column;
  display: flex;
}
._valuesGrid_1mxh5_131 {
  gap: var(--space-6);
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}
._valueCard_1mxh5_137 {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  gap: var(--space-4);
  text-align: center;
  background: #fff;
  flex-direction: column;
  align-items: center;
  transition: all 0.25s;
  display: flex;
}
._valueCard_1mxh5_137:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-medium);
  transform: translateY(-4px);
}
._valueIcon_1mxh5_152 {
  border-radius: var(--radius-xl);
  width: 56px;
  height: 56px;
  color: var(--corporate-navy);
  background: linear-gradient(135deg, #255D5914, #44A79214);
  justify-content: center;
  align-items: center;
  display: flex;
}
._valueTitle_1mxh5_163 {
  font-size: var(--text-lg);
  color: var(--text-dark);
  font-weight: 700;
}
._valueDesc_1mxh5_164 {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
}
._timelineSection_1mxh5_167 {
  background: linear-gradient(135deg, #44A792, #255D59);
  position: relative;
  overflow: hidden;
}
._timeline_1mxh5_167 {
  gap: var(--space-8) var(--space-16);
  margin-top: var(--space-12);
  padding: 0 var(--space-8);
  grid-template-columns: 1fr 1fr;
  display: grid;
  position: relative;
}
._timelineLine_1mxh5_182 {
  display: none;
}
._timelineItem_1mxh5_186 {
  position: relative;
}
._timelineLeft_1mxh5_187 {
  padding-right: var(--space-6);
}
._timelineRight_1mxh5_188 {
  padding-left: var(--space-6);
}
._timelineCard_1mxh5_190 {
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  background: #ffffff12;
  border: 1px solid #ffffff1a;
  transition: all 0.25s;
}
._timelineCard_1mxh5_190:hover {
  background: #ffffff1a;
}
._timelineYear_1mxh5_200 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--premium-gold);
  margin-bottom: var(--space-3);
  font-weight: 800;
  line-height: 1;
}
._timelineTitle_1mxh5_209 {
  font-size: var(--text-lg);
  color: #fff;
  margin-bottom: var(--space-2);
  font-weight: 700;
}
._timelineDesc_1mxh5_210 {
  font-size: var(--text-sm);
  color: #ffffffa6;
  line-height: 1.65;
}
._timelineDot_1mxh5_211 {
  display: none;
}
._whyTrustSection_1mxh5_214 {
  background: var(--bg-off-white);
}
._trustGrid_1mxh5_216 {
  gap: var(--space-5);
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}
._trustCard_1mxh5_222 {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  gap: var(--space-3);
  background: #fff;
  flex-direction: column;
  transition: all 0.25s;
  display: flex;
}
._trustCard_1mxh5_222:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
._trustIcon_1mxh5_235 {
  border-radius: var(--radius-lg);
  width: 44px;
  height: 44px;
  color: var(--corporate-navy);
  background: #255D5912;
  justify-content: center;
  align-items: center;
  display: flex;
}
._trustTitle_1mxh5_243 {
  font-size: var(--text-base);
  color: var(--text-dark);
  font-weight: 700;
}
._trustDesc_1mxh5_244 {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
}
._ctaSection_1mxh5_247 {
  padding: var(--space-20) 0;
  background: linear-gradient(
    135deg,
    #07584a 0%,
    #066d5a 60%,
    #6ae4c9 100%
  );
}
._ctaInner_1mxh5_252 {
  text-align: center;
  align-items: center;
  gap: var(--space-5);
  flex-direction: column;
  display: flex;
}
._ctaTitle_1mxh5_260 {
  color: #fff;
  letter-spacing: -0.025em;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
}
._ctaDesc_1mxh5_261 {
  color: #ffffffb3;
  font-size: var(--text-lg);
  max-width: 500px;
}
._ctaBtns_1mxh5_262 {
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}
@media (width<=900px) {
  ._storyGrid_1mxh5_38 {
    grid-template-columns: 1fr;
  }
  ._valuesGrid_1mxh5_131 {
    grid-template-columns: 1fr 1fr;
  }
  ._timeline_1mxh5_167 {
    grid-template-columns: 1fr;
  }
  ._timelineLeft_1mxh5_187,
  ._timelineRight_1mxh5_188 {
    padding: 0;
  }
  ._trustGrid_1mxh5_216 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width<=600px) {
  ._valuesGrid_1mxh5_131,
  ._trustGrid_1mxh5_216 {
    grid-template-columns: 1fr;
  }
  ._statsGrid_1mxh5_67 {
    grid-template-columns: 1fr 1fr;
  }
}
._hero_1wl2j_1 {
  padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-20);
  background: linear-gradient(135deg, #44A792 0%, #255D59 100%);
  position: relative;
  overflow: hidden;
}
._heroBg_1wl2j_6 {
  background-image:
    radial-gradient(circle at 90% 20%, #44A7921a 0%, #0000 50%),
    radial-gradient(circle at 5% 90%, #cfa84f12 0%, #0000 45%);
  position: absolute;
  inset: 0;
}
._heroContent_1wl2j_12 {
  gap: var(--space-5);
  flex-direction: column;
  max-width: 760px;
  display: flex;
  position: relative;
}
._heroTitle_1wl2j_13 {
  color: #fff;
  letter-spacing: -0.03em;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
}
._heroGold_1wl2j_14 {
  color: var(--premium-gold);
}
._heroDesc_1wl2j_15 {
  font-size: var(--text-lg);
  color: #ffffffb8;
  max-width: 580px;
  line-height: 1.7;
}
._heroNav_1wl2j_16 {
  gap: var(--space-2);
  padding-top: var(--space-2);
  flex-wrap: wrap;
  display: flex;
}
._heroNavLink_1wl2j_17 {
  font-size: var(--text-xs);
  border-radius: var(--radius-full);
  color: #ffffffbf;
  background: #ffffff14;
  border: 1px solid #ffffff1f;
  padding: 0.4rem 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
}
._heroNavLink_1wl2j_17:hover {
  color: #fff;
  background: #ffffff26;
}
._serviceSection_1wl2j_30 {
  padding: var(--space-24) 0;
  border-bottom: 1px solid var(--border-light);
}
._serviceSection_1wl2j_30:nth-child(odd) {
  background: #fff;
}
._serviceSection_1wl2j_30:nth-child(2n) {
  background: var(--bg-section);
}
._serviceGrid_1wl2j_37 {
  gap: var(--space-14);
  grid-template-columns: 1fr 1fr;
  align-items: start;
  display: grid;
}
._serviceGridReverse_1wl2j_44 {
  direction: rtl;
}
._serviceGridReverse_1wl2j_44 > * {
  direction: ltr;
}
._serviceContent_1wl2j_47 {
  gap: var(--space-5);
  flex-direction: column;
  display: flex;
}
._serviceIconWrap_1wl2j_49 {
  border-radius: var(--radius-xl);
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
}
._serviceTitle_1wl2j_55 {
  color: var(--text-dark);
  letter-spacing: -0.025em;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
}
._divider_1wl2j_57 {
  border-radius: 2px;
  width: 48px;
  height: 3px;
}
._serviceOverview_1wl2j_59 {
  color: var(--text-body);
  line-height: 1.75;
  font-size: var(--text-base);
}
._subHeading_1wl2j_61 {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  margin-top: var(--space-1);
  font-weight: 700;
}
._benefitsList_1wl2j_63 {
  gap: var(--space-2);
  flex-direction: column;
  display: flex;
}
._benefitItem_1wl2j_65 {
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: 1.5;
  display: flex;
}
._benefitItem_1wl2j_65 svg {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}
._impactBox_1wl2j_75 {
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  gap: var(--space-3);
  color: var(--success);
  background: #16a34a0f;
  border: 1px solid #16a34a26;
  align-items: flex-start;
  display: flex;
}
._impactText_1wl2j_85 {
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: 1.6;
}
._impactText_1wl2j_85 strong {
  color: var(--success);
}
._processCard_1wl2j_91 {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  top: calc(var(--header-height) + 2rem);
  background: #fff;
  position: sticky;
}
._serviceSection_1wl2j_30:nth-child(2n) ._processCard_1wl2j_91 {
  background: #fff;
}
._processCardTitle_1wl2j_102 {
  font-size: var(--text-lg);
  color: var(--text-dark);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border-light);
  font-weight: 700;
}
._processSteps_1wl2j_111 {
  flex-direction: column;
  gap: 0;
  display: flex;
}
._processStep_1wl2j_111 {
  gap: var(--space-4);
  padding-bottom: var(--space-6);
  grid-template-columns: 40px 1fr;
  display: grid;
  position: relative;
}
._processStep_1wl2j_111:last-child {
  padding-bottom: 0;
}
._processStepNum_1wl2j_123 {
  color: #fff;
  width: 40px;
  height: 40px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-sm);
  z-index: 1;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}
._processStepLine_1wl2j_136 {
  background: var(--border-light);
  width: 2px;
  position: absolute;
  top: 44px;
  bottom: 0;
  left: 19px;
}
._processStepTitle_1wl2j_145 {
  font-size: var(--text-base);
  color: var(--text-dark);
  margin-bottom: 4px;
  font-weight: 700;
}
._processStepDesc_1wl2j_146 {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.55;
}
._ctaSection_1wl2j_149 {
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, #0A1435 0%, #152A6E 60%, #213F99 100%);
}
._ctaInner_1wl2j_150 {
  text-align: center;
  align-items: center;
  gap: var(--space-5);
  flex-direction: column;
  display: flex;
}
._ctaTitle_1wl2j_151 {
  color: #fff;
  letter-spacing: -0.025em;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
}
._ctaDesc_1wl2j_152 {
  color: #ffffffb3;
  font-size: var(--text-lg);
  max-width: 520px;
  line-height: 1.7;
}
@media (width<=900px) {
  ._serviceGrid_1wl2j_37,
  ._serviceGridReverse_1wl2j_44 {
    direction: ltr;
    grid-template-columns: 1fr;
  }
  ._processCard_1wl2j_91 {
    position: static;
  }
}
._hero_1ayi0_1 {
  padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-20);
  background: linear-gradient(135deg, #1D3F99 0%, #255D59 100%);
  position: relative;
  overflow: hidden;
}
._heroBg_1ayi0_6 {
  background-image: radial-gradient(circle at 85% 30%, #cfa84f1a 0%, #0000 55%);
  position: absolute;
  inset: 0;
}
._heroContent_1ayi0_10 {
  gap: var(--space-5);
  flex-direction: column;
  max-width: 680px;
  display: flex;
  position: relative;
}
._heroTitle_1ayi0_11 {
  color: #fff;
  letter-spacing: -0.03em;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
}
._heroGold_1ayi0_12 {
  color: var(--premium-gold);
}
._heroDesc_1ayi0_13 {
  font-size: var(--text-lg);
  color: #ffffffb8;
  max-width: 540px;
  line-height: 1.7;
}
._messageSection_1ayi0_16 {
  background: #fff;
}
._messageBox_1ayi0_17 {
  gap: var(--space-5);
  text-align: left;
  flex-direction: column;
  max-width: 780px;
  margin: 0 auto;
  display: flex;
}
._messageTitle_1ayi0_25 {
  color: var(--text-dark);
  letter-spacing: -0.025em;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
}
._messageDivider_1ayi0_26 {
  background: linear-gradient(90deg, var(--primary-teal), var(--royal-blue));
  border-radius: 2px;
  width: 48px;
  height: 3px;
}
._messageQuote_1ayi0_27 {
  font-size: var(--text-lg);
  color: var(--text-dark);
  padding-left: var(--space-5);
  border-left: 3px solid var(--premium-gold);
  font-style: italic;
  font-weight: 400;
  line-height: 1.75;
}
._messageText_1ayi0_32 {
  color: var(--text-body);
  line-height: 1.75;
}
._messageSig_1ayi0_33 {
  color: var(--corporate-navy);
  font-weight: 700;
  font-size: var(--text-sm);
}
._profilesSection_1ayi0_36 {
  background: var(--bg-section);
}
._sectionHead_1ayi0_37 {
  text-align: center;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
  flex-direction: column;
  display: flex;
}
._profilesGrid_1ayi0_38 {
  gap: var(--space-6);
  grid-template-columns: repeat(2, 1fr);
  display: grid;
}
._profilesList_1ayi0_39 {
  gap: var(--space-6);
  flex-direction: column;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
}
._profileCard_1ayi0_40 {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  gap: var(--space-8);
  background: #fff;
  transition: all 0.25s;
  display: flex;
}
._profileCard_1ayi0_40:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}
._profileHeader_1ayi0_46 {
  gap: var(--space-5);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}
._profileAvatarWrap_1ayi0_49 {
  border: 3px solid var(--border-light);
  width: 140px;
  height: 140px;
  box-shadow: var(--shadow-md);
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
._profilePhoto_1ayi0_55 {
  object-fit: cover;
  object-position: center top;
  image-rendering: auto;
  width: 100%;
  height: 100%;
}
._profileAvatar_1ayi0_49 {
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 140px;
  display: flex;
}
._profileInitials_1ayi0_61 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 2.5rem;
  font-weight: 800;
}
._profileContent_1ayi0_63 {
  gap: var(--space-4);
  flex-direction: column;
  flex-grow: 1;
  display: flex;
}
._profileMeta_1ayi0_69 {
  gap: var(--space-1);
  flex-direction: column;
  display: flex;
}
._profileName_1ayi0_70 {
  font-size: var(--text-xl);
  color: var(--text-dark);
  font-weight: 800;
}
._profileDesig_1ayi0_71 {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 600;
}
._profileBadge_1ayi0_72 {
  font-size: var(--text-xs);
  color: var(--corporate-navy);
  border-radius: var(--radius-full);
  background: #255D590f;
  align-items: center;
  gap: 4px;
  padding: 0.25rem 0.625rem;
  font-weight: 600;
  display: inline-flex;
}
._profileDivider_1ayi0_78 {
  background: var(--border-light);
  height: 1px;
}
._profileBio_1ayi0_79 {
  font-size: var(--text-sm);
  color: var(--text-body);
  text-align: justify;
  line-height: 1.75;
}
._profileSection_1ayi0_80 {
  gap: var(--space-2);
  flex-direction: column;
  display: flex;
}
._profileSubTitle_1ayi0_81 {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 700;
}
._profileTags_1ayi0_82 {
  gap: var(--space-2);
  flex-wrap: wrap;
  display: flex;
}
._profileTag_1ayi0_82 {
  font-size: var(--text-xs);
  border-radius: var(--radius-full);
  color: var(--corporate-navy);
  border: 1px solid var(--border-light);
  background: #255D590f;
  padding: 0.3rem 0.75rem;
  font-weight: 600;
}
._profileEdu_1ayi0_89 {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 500;
}
._sectionDividerLine_1ayi0_91 {
  background: linear-gradient(
    90deg,
    transparent,
    var(--border-medium),
    transparent
  );
  height: 1px;
  margin: var(--space-16) auto;
  max-width: 800px;
}
._ctaSection_1ayi0_99 {
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, #0A1435 0%, #152A6E 60%, #213F99 100%);
}
._ctaInner_1ayi0_100 {
  text-align: center;
  align-items: center;
  gap: var(--space-5);
  flex-direction: column;
  display: flex;
}
._ctaTitle_1ayi0_101 {
  color: #fff;
  letter-spacing: -0.025em;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
}
._ctaDesc_1ayi0_102 {
  color: #ffffffb3;
  font-size: var(--text-lg);
  max-width: 500px;
  line-height: 1.7;
}
@media (width<=768px) {
  ._profileCard_1ayi0_40 {
    align-items: center;
    gap: var(--space-5);
    padding: var(--space-6);
    flex-direction: column;
  }
  ._profileHeader_1ayi0_46 {
    text-align: center;
    gap: var(--space-3);
    flex-direction: column;
  }
  ._profileContent_1ayi0_63 {
    text-align: center;
    align-items: center;
  }
  ._profileTags_1ayi0_82 {
    justify-content: center;
  }
  ._profileBio_1ayi0_79 {
    text-align: center;
  }
}
._hero_12hxl_1 {
  padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-20);
  background: linear-gradient(135deg, #44A792 0%, #255D59 100%);
  position: relative;
  overflow: hidden;
}
._heroBg_12hxl_6 {
  background-image: radial-gradient(circle at 75% 40%, #44A7921a 0%, #0000 55%);
  position: absolute;
  inset: 0;
}
._heroContent_12hxl_10 {
  gap: var(--space-6);
  flex-direction: column;
  display: flex;
  position: relative;
}
._heroTitle_12hxl_11 {
  color: #fff;
  letter-spacing: -0.03em;
  max-width: 560px;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
}
._heroGold_12hxl_12 {
  color: var(--premium-gold);
}
._heroDesc_12hxl_13 {
  font-size: var(--text-lg);
  color: #ffffffb8;
  max-width: 600px;
  line-height: 1.7;
}
._heroStats_12hxl_14 {
  gap: var(--space-10);
  padding-top: var(--space-6);
  border-top: 1px solid #ffffff1a;
  flex-wrap: wrap;
  display: flex;
}
._heroStat_12hxl_14 {
  flex-direction: column;
  gap: 4px;
  display: flex;
}
._heroStatVal_12hxl_16 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--premium-gold);
  font-weight: 800;
  line-height: 1;
}
._heroStatLabel_12hxl_17 {
  font-size: var(--text-xs);
  color: #fff9;
  font-weight: 500;
}
._clientSection_12hxl_20:nth-child(odd) {
  background: var(--bg-off-white);
}
._clientSection_12hxl_20:nth-child(2n) {
  background: #fff;
}
._sectionHead_12hxl_23 {
  text-align: center;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
  flex-direction: column;
  display: flex;
}
._clientGrid_12hxl_29 {
  gap: var(--space-4);
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}
._clientCard_12hxl_35 {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  align-items: center;
  gap: var(--space-3);
  cursor: default;
  background: #fff;
  transition: all 0.22s;
  display: flex;
}
._clientCard_12hxl_35:hover {
  border-color: var(--accent, var(--primary-teal));
  transform: translateY(-2px);
  box-shadow: 0 4px 16px #0000000f;
}
._clientInitial_12hxl_53 {
  border-radius: var(--radius-md);
  width: 36px;
  height: 36px;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  display: flex;
}
._clientName_12hxl_63 {
  font-size: var(--text-sm);
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.35;
}
._industriesSection_12hxl_71 {
  background: linear-gradient(135deg, #44A792, #255D59);
}
._industryGrid_12hxl_73 {
  gap: var(--space-4);
  grid-template-columns: repeat(6, 1fr);
  display: grid;
}
._industryCard_12hxl_79 {
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  align-items: center;
  gap: var(--space-3);
  background: #ffffff12;
  border: 1px solid #ffffff1a;
  flex-direction: column;
  transition: all 0.22s;
  display: flex;
}
._industryCard_12hxl_79:hover {
  background: #ffffff1f;
  transform: translateY(-3px);
}
._industryIcon_12hxl_95 {
  border-radius: var(--radius-lg);
  width: 48px;
  height: 48px;
  color: var(--premium-gold);
  background: #cfa84f26;
  justify-content: center;
  align-items: center;
  display: flex;
}
._industryName_12hxl_103 {
  font-size: var(--text-sm);
  color: #fff;
  font-weight: 700;
}
._industryCount_12hxl_104 {
  font-size: var(--text-xs);
  color: #ffffff80;
  font-weight: 500;
}
._highlightsSection_12hxl_107 {
  background: var(--bg-section);
}
._highlightsGrid_12hxl_109 {
  gap: var(--space-6);
  grid-template-columns: repeat(2, 1fr);
  display: grid;
}
._highlightCard_12hxl_115 {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  gap: var(--space-4);
  background: #fff;
  flex-direction: column;
  transition: all 0.25s;
  display: flex;
}
._highlightCard_12hxl_115:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
._highlightTop_12hxl_126 {
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  display: flex;
}
._highlightType_12hxl_128 {
  font-size: var(--text-xs);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem;
  font-weight: 700;
}
._highlightSector_12hxl_134 {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 500;
}
._highlightBar_12hxl_138 {
  border-radius: 2px;
  width: 40px;
  height: 3px;
}
._highlightClient_12hxl_140 {
  font-size: var(--text-xl);
  color: var(--text-dark);
  font-weight: 800;
  line-height: 1.2;
}
._highlightOutcome_12hxl_141 {
  font-size: var(--text-sm);
  color: var(--text-body);
  flex: 1;
  line-height: 1.7;
}
._highlightFooter_12hxl_143 {
  align-items: center;
  gap: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-light);
  display: flex;
}
._highlightResult_12hxl_149 {
  font-size: var(--text-xs);
  color: var(--success);
  font-weight: 600;
}
._disclaimerNote_12hxl_151 {
  font-size: var(--text-xs);
  color: var(--text-light);
  font-style: italic;
}
._ctaSection_12hxl_158 {
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, #0A1435 0%, #152A6E 60%, #213F99 100%);
}
._ctaInner_12hxl_159 {
  text-align: center;
  align-items: center;
  gap: var(--space-5);
  flex-direction: column;
  display: flex;
}
._ctaTitle_12hxl_160 {
  color: #fff;
  letter-spacing: -0.025em;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
}
._ctaDesc_12hxl_161 {
  color: #ffffffb3;
  font-size: var(--text-lg);
  max-width: 520px;
  line-height: 1.7;
}
@media (width<=1100px) {
  ._clientGrid_12hxl_29,
  ._industryGrid_12hxl_73 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width<=768px) {
  ._clientGrid_12hxl_29,
  ._industryGrid_12hxl_73 {
    grid-template-columns: repeat(2, 1fr);
  }
  ._highlightsGrid_12hxl_109 {
    grid-template-columns: 1fr;
  }
}
@media (width<=480px) {
  ._clientGrid_12hxl_29 {
    grid-template-columns: 1fr;
  }
  ._heroStats_12hxl_14 {
    gap: var(--space-6);
  }
}
._hero_15efs_1 {
  padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-20);
  background: linear-gradient(135deg, #44A792 0%, #255D59 100%);
  position: relative;
  overflow: hidden;
}
._heroBg_15efs_6 {
  background-image: radial-gradient(circle at 80% 40%, #cfa84f1a 0%, #0000 55%);
  position: absolute;
  inset: 0;
}
._heroContent_15efs_10 {
  gap: var(--space-5);
  flex-direction: column;
  max-width: 640px;
  display: flex;
  position: relative;
}
._heroTitle_15efs_11 {
  color: #fff;
  letter-spacing: -0.03em;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
}
._heroGold_15efs_12 {
  color: var(--premium-gold);
}
._heroDesc_15efs_13 {
  font-size: var(--text-lg);
  color: #ffffffb8;
  max-width: 540px;
  line-height: 1.7;
}
._contactSection_15efs_16 {
  background: var(--bg-off-white);
}
._contactLayout_15efs_18 {
  gap: var(--space-14);
  grid-template-columns: 1fr 1.3fr;
  align-items: start;
  display: grid;
}
._contactInfo_15efs_26 {
  gap: var(--space-7);
  flex-direction: column;
  display: flex;
}
._infoTitle_15efs_27 {
  font-size: var(--text-3xl);
  color: var(--text-dark);
  letter-spacing: -0.025em;
  font-weight: 800;
}
._infoDesc_15efs_28 {
  color: var(--text-body);
  line-height: 1.75;
}
._infoCards_15efs_30 {
  gap: var(--space-4);
  flex-direction: column;
  display: flex;
}
._infoCard_15efs_30 {
  align-items: flex-start;
  gap: var(--space-4);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  background: #fff;
  transition: all 0.22s;
  display: flex;
}
._infoCard_15efs_30:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-md);
}
._infoCardIcon_15efs_44 {
  border-radius: var(--radius-lg);
  width: 44px;
  height: 44px;
  color: var(--corporate-navy);
  background: #255D5912;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}
._infoCardLabel_15efs_52 {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 700;
}
._infoCardValue_15efs_53 {
  font-size: var(--text-base);
  color: var(--text-dark);
  font-weight: 600;
  transition: color 0.2s;
  display: block;
}
._infoCardValue_15efs_53:hover {
  color: var(--royal-blue);
}
._infoCardNote_15efs_55 {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 4px;
}
._sebiInfo_15efs_57 {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  background: linear-gradient(135deg, #255D590d, #44A7920d);
}
._sebiInfoTitle_15efs_63 {
  font-size: var(--text-sm);
  color: var(--text-dark);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}
._sebiInfoGrid_15efs_64 {
  gap: var(--space-3);
  grid-template-columns: 1fr 1fr;
  display: grid;
}
._sebiKey_15efs_65 {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: 2px;
  font-weight: 600;
  display: block;
}
._sebiVal_15efs_66 {
  font-size: var(--text-xs);
  color: var(--text-dark);
  font-weight: 500;
}
._form_15efs_69 {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  gap: var(--space-6);
  background: #fff;
  flex-direction: column;
  display: flex;
}
._formHeader_15efs_82 {
  gap: var(--space-1);
  flex-direction: column;
  display: flex;
}
._formTitle_15efs_83 {
  font-size: var(--text-2xl);
  color: var(--text-dark);
  font-weight: 800;
}
._formSubtitle_15efs_84 {
  color: var(--text-muted);
  font-size: var(--text-sm);
}
._formGrid_15efs_86 {
  gap: var(--space-5);
  grid-template-columns: 1fr 1fr;
  display: grid;
}
._fieldGroup_15efs_92 {
  gap: var(--space-2);
  flex-direction: column;
  display: flex;
}
._fieldFull_15efs_93 {
  grid-column: 1/-1;
}
._fieldLabel_15efs_95 {
  font-size: var(--text-sm);
  color: var(--text-dark);
  font-weight: 600;
}
._fieldInput_15efs_97 {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-dark);
  background: var(--bg-section);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  appearance: none;
  outline: none;
  padding: 0.75rem 1rem;
  transition: all 0.2s;
}
._fieldInput_15efs_97::placeholder {
  color: var(--text-light);
}
._fieldInput_15efs_97:focus {
  border-color: var(--royal-blue);
  background: #fff;
  box-shadow: 0 0 0 3px #4fa39e14;
}
._fieldError_15efs_119 {
  background: #fff5f5;
  border-color: #ef4444 !important;
}
._fieldError_15efs_119:focus {
  box-shadow: 0 0 0 3px #ef444414 !important;
}
._fieldSelect_15efs_126 {
  cursor: pointer;
}
._fieldTextarea_15efs_127 {
  resize: vertical;
  min-height: 100px;
}
._errorMsg_15efs_129 {
  font-size: var(--text-xs);
  color: #ef4444;
  font-weight: 500;
}
._formFooter_15efs_131 {
  gap: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-light);
  flex-direction: column;
  display: flex;
}
._formDisclaimer_15efs_139 {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.6;
}
._submitBtn_15efs_141 {
  align-self: flex-start;
  position: relative;
}
._submitBtn_15efs_141:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}
._spinner_15efs_144 {
  border: 2px solid #ffffff4d;
  border-top-color: #fff;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  animation: 0.7s linear infinite _spin_15efs_144;
  display: inline-block;
}
@keyframes _spin_15efs_144 {
  to {
    transform: rotate(360deg);
  }
}
._successState_15efs_156 {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-2xl);
  padding: var(--space-12) var(--space-8);
  text-align: center;
  align-items: center;
  gap: var(--space-5);
  box-shadow: var(--shadow-card);
  background: #fff;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
  display: flex;
}
._successIcon_15efs_171 {
  color: var(--success);
}
._successTitle_15efs_172 {
  font-size: var(--text-2xl);
  color: var(--text-dark);
  font-weight: 800;
}
._successText_15efs_173 {
  color: var(--text-muted);
  max-width: 380px;
  line-height: 1.7;
}
._mapSection_15efs_176 {
  background: var(--bg-section);
  padding: var(--space-16) 0;
}
._mapWrapper_15efs_178 {
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  height: 420px;
  position: relative;
  overflow: hidden;
}
._mapFrame_15efs_187 {
  border: none;
  width: 100%;
  height: 100%;
  display: block;
}
._mapOverlay_15efs_189 {
  top: var(--space-5);
  left: var(--space-5);
  z-index: 10;
  position: absolute;
}
._mapCard_15efs_196 {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-5);
  align-items: flex-start;
  gap: var(--space-3);
  box-shadow: var(--shadow-xl);
  background: #fff;
  max-width: 340px;
  display: flex;
}
._mapCardTitle_15efs_208 {
  font-size: var(--text-sm);
  color: var(--text-dark);
  margin-bottom: 4px;
  font-weight: 700;
}
._mapCardAddr_15efs_209 {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.55;
}
@media (width<=900px) {
  ._contactLayout_15efs_18 {
    grid-template-columns: 1fr;
  }
}
@media (width<=640px) {
  ._formGrid_15efs_86,
  ._sebiInfoGrid_15efs_64 {
    grid-template-columns: 1fr;
  }
}
._policyPage_xow0f_1 {
  background: var(--bg-off-white);
  min-height: 100vh;
}
._hero_xow0f_6 {
  padding: calc(var(--header-height) + var(--space-12)) 0 var(--space-12);
  text-align: center;
  background: linear-gradient(135deg, #44A792 0%, #255D59 100%);
  position: relative;
  overflow: hidden;
}
._heroTitle_xow0f_14 {
  font-family: var(--font-heading);
  color: #fff;
  margin-bottom: var(--space-4);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
}
._heroSubtitle_xow0f_23 {
  font-size: var(--text-sm);
  color: var(--premium-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
._contentSection_xow0f_31 {
  padding: var(--space-16) 0;
}
._paperCard_xow0f_35 {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-2xl);
  padding: var(--space-12) var(--space-16);
  box-shadow: var(--shadow-xl);
  background: #fff;
  max-width: 900px;
  margin: 0 auto;
}
._docTitle_xow0f_45 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--corporate-navy);
  margin-bottom: var(--space-6);
  border-bottom: 2px solid var(--border-light);
  padding-bottom: var(--space-4);
  text-transform: uppercase;
  font-weight: 800;
}
._introText_xow0f_56 {
  font-size: var(--text-base);
  color: var(--text-dark);
  margin-bottom: var(--space-6);
  text-align: justify;
  line-height: 1.8;
}
._section_xow0f_64 {
  margin-top: var(--space-8);
}
._sectionTitle_xow0f_68 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--text-dark);
  margin-bottom: var(--space-4);
  border-left: 4px solid var(--premium-gold);
  padding-left: var(--space-3);
  text-transform: uppercase;
  font-weight: 700;
}
._text_xow0f_79 {
  font-size: var(--text-sm);
  color: var(--text-body);
  margin-bottom: var(--space-4);
  text-align: justify;
  line-height: 1.75;
}
._list_xow0f_87 {
  margin-bottom: var(--space-6);
  padding-left: var(--space-6);
  gap: var(--space-2);
  flex-direction: column;
  display: flex;
}
._listItem_xow0f_95 {
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: 1.7;
  position: relative;
}
._tableWrapper_xow0f_102 {
  margin: var(--space-6) 0;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow-x: auto;
}
._table_xow0f_102 {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
}
._th_xow0f_115 {
  background: var(--corporate-navy);
  color: #fff;
  padding: var(--space-3) var(--space-4);
  font-weight: 700;
  font-size: var(--text-sm);
}
._td_xow0f_123 {
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--border-light);
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: 1.6;
}
._tr_xow0f_131:nth-child(2n) {
  background: var(--bg-section);
}
._signatureArea_xow0f_135 {
  margin-top: var(--space-12);
  border-top: 1px dashed var(--border-medium);
  padding-top: var(--space-6);
  text-align: right;
  flex-direction: column;
  align-items: flex-end;
  display: flex;
}
._sigCompany_xow0f_145 {
  color: var(--corporate-navy);
  margin-bottom: var(--space-8);
  font-weight: 700;
  font-size: var(--text-sm);
}
._sigName_xow0f_152 {
  color: var(--text-dark);
  font-weight: 700;
  font-size: var(--text-sm);
}
._sigTitle_xow0f_158 {
  font-size: var(--text-xs);
  color: var(--text-muted);
}
._contactBox_xow0f_163 {
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-6);
  margin: var(--space-6) 0;
}
._contactRow_xow0f_171 {
  gap: var(--space-4);
  margin-top: var(--space-2);
  grid-template-columns: 1fr 1fr;
  display: grid;
}
._contactCol_xow0f_178 {
  font-size: var(--text-sm);
  color: var(--text-dark);
}
._contactLabel_xow0f_183 {
  color: var(--corporate-navy);
  font-weight: 700;
}
@media (width<=768px) {
  ._paperCard_xow0f_35 {
    padding: var(--space-6) var(--space-6);
  }
  ._contactRow_xow0f_171 {
    gap: var(--space-2);
    grid-template-columns: 1fr;
  }
}
