:root {
      --eps-blue: #0d6efd;
      --eps-blue-dark: #063d8f;
      --eps-blue-soft: #eaf4ff;
      --eps-cyan: #38bdf8;
      --eps-green: #20c997;
      --eps-orange: #f25022;
      --eps-dark: #14213d;
      --eps-text: #334155;
      --eps-muted: #17191d;
      --eps-light: #f8fbff;
      --eps-card: #ffffff;
      --eps-border: rgba(15, 23, 42, 0.08);
      --eps-shadow: 0 20px 45px rgba(15, 23, 42, 0.10);
      --eps-shadow-hover: 0 28px 70px rgba(13, 110, 253, 0.18);
   }

   html {
      scroll-behavior: smooth;
   }

   body {
      color: var(--eps-text);
      background: #ffffff;
      -webkit-font-smoothing: antialiased;
      text-rendering: geometricPrecision;
   }

   .section {
      position: relative;
      padding: 90px 0;
      overflow: hidden;
   }

   .section-title {
      position: relative;
      font-size: 38px;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 14px;
      text-align: center;
      color: var(--eps-dark);
      letter-spacing: 0;
   }

   .section-title::after {
      content: "";
      display: block;
      width: 74px;
      height: 4px;
      margin: 18px auto 0;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--eps-blue), var(--eps-cyan), var(--eps-green));
   }

   .section-subtitle {
      max-width: 760px;
      margin: 0 auto 28px;
      text-align: center;
      font-size: 16px;
      line-height: 1.8;
      color: var(--eps-muted);
   }

   .section-heading {
      position: relative;
      z-index: 2;
      margin-bottom: 18px;
   }

   /* =====================================================
      SHARED ANIMATION
      ===================================================== */

   @keyframes fadeUp {
      from {
         opacity: 0;
         transform: translateY(32px);
      }

      to {
         opacity: 1;
         transform: translateY(0);
      }
   }

   @keyframes floatDevice {

      0%,
      100% {
         transform: translateY(0);
      }

      50% {
         transform: translateY(-14px);
      }
   }

   @keyframes pulseGlow {

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

      50% {
         opacity: 0.85;
         transform: scale(1.08);
      }
   }

   @keyframes gradientMove {
      0% {
         background-position: 0% 50%;
      }

      50% {
         background-position: 100% 50%;
      }

      100% {
         background-position: 0% 50%;
      }
   }

   @keyframes scrollBounce {

      0%,
      100% {
         transform: translate(-50%, 0);
      }

      50% {
         transform: translate(-50%, 8px);
      }
   }

   .animate {
      animation: fadeUp 0.85s ease both;
   }

   /* =====================================================
      HERO
      ===================================================== */

   .is-home {
      position: relative;
      min-height: 720px;
      padding-top: 128px;
      padding-bottom: 90px;

      display: flex;
      align-items: center;

      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      color: #ffffff;
      overflow: hidden;
   }

   .eps-home-bg {
      background-image: url("../../media/section-background.webp");
   }

   .is-home::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;

      background:
         radial-gradient(circle at 18% 20%, rgba(56, 189, 248, 0.34), transparent 28%),
         radial-gradient(circle at 82% 18%, rgba(32, 201, 151, 0.22), transparent 26%),
         linear-gradient(135deg, rgba(7, 28, 58, 0.90) 0%, rgba(13, 75, 145, 0.80) 48%, rgba(7, 25, 49, 0.78) 100%);
   }

   .is-home::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;

      background-image:
         linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
         linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
      background-size: 54px 54px;
      mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 88%);
      pointer-events: none;
   }

   .is-home .overlay {
      display: none;
   }

   .is-home .container {
      position: relative;
      z-index: 3;
   }

   .is-home .row {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
   }

   .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 9px;

      margin-bottom: 22px;
      padding: 9px 14px;

      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.2px;

      color: #dff5ff;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.20);
      border-radius: 999px;
      backdrop-filter: blur(12px);
   }

   .hero-badge span {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--eps-green);
      box-shadow: 0 0 0 6px rgba(32, 201, 151, 0.16);
   }

   .is-home h1 {
      max-width: 640px;
      margin: 0;

      font-size: 54px;
      font-weight: 850;
      line-height: 1.12;
      letter-spacing: 0;

      color: #ffffff;
   }

   .is-home h1 strong,
   .is-home h1 span {
      background: linear-gradient(90deg, #ffffff, #b9e8ff, #ffffff);
      background-size: 220% 220%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: gradientMove 8s ease infinite;
   }

   .is-home .desk {
      max-width: 570px;
      margin-top: 22px;

      font-size: 16px;
      line-height: 1.85;
      color: rgba(255, 255, 255, 0.86);
   }

   .hero-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 32px;
   }

   .btn {
      position: relative;
      overflow: hidden;
      min-height: 50px;
      padding: 13px 24px;

      border-radius: 10px;
      font-weight: 700;
      transition: all 0.28s ease;
   }

   .btn::before {
      content: "";
      position: absolute;
      top: 0;
      left: -75%;
      width: 50%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
      transform: skewX(-20deg);
      transition: left 0.6s ease;
   }

   .btn:hover::before {
      left: 130%;
   }

   .btn:hover {
      transform: translateY(-3px);
   }

   .btn-primary {
      color: #ffffff;
      border: none;
      background: linear-gradient(135deg, var(--eps-blue), #005fe6);
      box-shadow: 0 14px 28px rgba(13, 110, 253, 0.34);
   }

   .btn-primary:hover,
   .btn-primary:focus {
      background: linear-gradient(135deg, #087cff, #004fbd);
      box-shadow: 0 20px 42px rgba(13, 110, 253, 0.46);
   }

   .btn-outline-light {
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.36);
      background: rgba(255, 255, 255, 0.13);
      backdrop-filter: blur(12px);
   }

   .btn-outline-light:hover,
   .btn-outline-light:focus {
      color: #ffffff;
      background: rgba(255, 255, 255, 0.22);
      border-color: rgba(255, 255, 255, 0.55);
      box-shadow: 0 14px 30px rgba(255, 255, 255, 0.12);
   }

   .hero-media {
      position: relative;
      padding: 18px;
      border-radius: 28px;
      max-width: 695px;
      margin-left: auto;
      margin-right: auto;

      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.20);
      backdrop-filter: blur(18px);
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);

      animation: fadeUp 0.9s ease both;
   }

   .hero-media::before {
      content: "";
      position: absolute;
      inset: -35px;
      z-index: -1;

      background:
         radial-gradient(circle at 30% 30%, rgba(56, 189, 248, 0.34), transparent 34%),
         radial-gradient(circle at 70% 70%, rgba(32, 201, 151, 0.26), transparent 34%);
      filter: blur(18px);
      animation: pulseGlow 4.8s ease-in-out infinite;
   }

   .hero-media img {
      width: 100%;
      max-height: 470px;
      border-radius: 18px;
      display: block;
      object-fit: contain;
      animation: floatDevice 5.5s ease-in-out infinite;
   }

   .hero-stats {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 28px;
   }

   .hero-stat {
      min-width: 132px;
      padding: 14px 16px;

      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 14px;
      backdrop-filter: blur(12px);
      transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease;
   }

   .hero-stat:hover {
      transform: translateY(-4px);
      background: rgba(255, 255, 255, 0.17);
      border-color: rgba(255, 255, 255, 0.26);
   }

   .hero-stat strong {
      display: block;
      font-size: 22px;
      color: #ffffff;
      line-height: 1;
      margin-bottom: 6px;
   }

   .hero-stat span {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.74);
   }

   .scroll-indicator {
      position: absolute;
      bottom: 24px;
      left: 50%;
      z-index: 4;

      display: inline-flex;
      align-items: center;
      gap: 8px;

      padding: 8px 12px;
      border-radius: 999px;

      font-size: 12px;
      color: rgba(255, 255, 255, 0.76);
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.15);

      animation: scrollBounce 2s infinite;
   }

   /* =====================================================
      KEUNGGULAN
      ===================================================== */

   .is-keunggulan {
      background:
         radial-gradient(circle at top left, rgba(13, 110, 253, 0.08), transparent 28%),
         linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
   }

   .is-fitur {
      background:
         radial-gradient(circle at 9% 8%, rgba(13, 110, 253, 0.10), transparent 27%),
         radial-gradient(circle at 90% 12%, rgba(32, 201, 151, 0.09), transparent 25%),
         linear-gradient(180deg, #f8fbff 0%, #ffffff 44%, #f5fbff 100%);
   }

   .keunggulan-item {
      position: relative;
      height: 100%;
      min-height: 265px;
      padding: 34px 28px;
      text-align: center;

      background: rgba(255, 255, 255, 0.86);
      border: 1px solid var(--eps-border);
      border-radius: 22px;
      box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);

      transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
      overflow: hidden;
   }

   .keunggulan-list {
      margin-top: 44px;
   }

   .keunggulan-item::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0;
      background:
         linear-gradient(135deg, rgba(13, 110, 253, 0.10), transparent 48%),
         radial-gradient(circle at 82% 18%, rgba(32, 201, 151, 0.16), transparent 28%);
      transition: opacity 0.32s ease;
   }

   .keunggulan-item:hover {
      transform: translateY(-10px);
      border-color: rgba(13, 110, 253, 0.20);
      box-shadow: var(--eps-shadow-hover);
   }

   .keunggulan-item:hover::before {
      opacity: 1;
   }

   .keunggulan-item img,
   .keunggulan-item h4,
   .keunggulan-item p {
      position: relative;
      z-index: 2;
   }

   .keunggulan-icon {
      width: 78px;
      height: 78px;
      margin: 0 auto 18px;

      display: flex;
      align-items: center;
      justify-content: center;

      border-radius: 20px;
      background: linear-gradient(135deg, #eaf4ff, #ffffff);
      box-shadow: inset 0 0 0 1px rgba(13, 110, 253, 0.10);
      transition: transform 0.32s ease;
   }

   .keunggulan-item:hover .keunggulan-icon {
      transform: rotate(-3deg) scale(1.07);
   }

   .keunggulan-item img {
      width: 58px;
      height: auto;
      transition: transform 0.32s ease;
   }

   .is-whyus .keunggulan-image {
      width: auto;
      height: 100px;
      object-fit: contain;
   }

   .keunggulan-item:hover img {
      transform: scale(1.08);
   }

   .keunggulan-item h4 {
      margin-bottom: 12px;
      font-size: 21px;
      font-weight: 800;
      color: var(--eps-dark);
   }

   .keunggulan-item p {
      margin: 0;
      font-size: 15px;
      line-height: 1.75;
      color: var(--eps-muted);
   }

   /* =====================================================
      FITUR SYSTEM - REFINED
      ===================================================== */

   .fitur-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 28px;
      align-items: stretch;
      margin-top: 20px;
   }

   .fitur-card {
      position: relative;
      display: flex;
      flex-direction: column;
      height: 100%;
      background: #fff;
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
      transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
   }

   .fitur-card:hover {
      transform: translateY(-6px);
      border-color: rgba(13, 110, 253, 0.18);
      box-shadow: 0 26px 56px rgba(13, 110, 253, 0.14);
   }

   .fitur-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      z-index: 3;
      background: linear-gradient(90deg, var(--eps-blue), var(--eps-cyan), var(--eps-green));
   }

   /* FITUR IMAGE / SLIDER */
   .fitur-media {
      position: relative;
      z-index: 2;
      padding: 12px 12px 0;
   }

   .fitur-media-frame {
      position: relative;
      height: 225px;
      overflow: hidden;
      border-radius: 14px;
      background: linear-gradient(135deg, #eaf4ff 0%, #f8fbff 55%, #ecfeff 100%);
      border: 1px solid rgba(15, 23, 42, 0.08);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.70);
   }

   .fitur-media-frame::before {
      content: "";
      position: absolute;
      top: 11px;
      left: 13px;
      z-index: 7;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #ef4444;
      box-shadow: 13px 0 0 #f59e0b, 26px 0 0 #22c55e;
   }

   .fitur-media-frame::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 4;
      pointer-events: none;
      background:
         linear-gradient(to bottom, rgba(15, 23, 42, 0.04), transparent 44%, rgba(15, 23, 42, 0.18)),
         radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.18), transparent 30%);
   }

   .fitur-static-image,
   .eps-fitur-swiper,
   .eps-fitur-swiper .swiper-wrapper,
   .eps-fitur-swiper .swiper-slide,
   .eps-fitur-swiper .swiper-slide img {
      width: 100%;
      height: 225px;
   }

   .fitur-static-image,
   .eps-fitur-swiper .swiper-slide img {
      display: block;
      object-fit: cover;
      transition: transform 0.45s ease, filter 0.45s ease;
   }

   .fitur-card:hover .fitur-static-image,
   .fitur-card:hover .eps-fitur-swiper .swiper-slide-active img {
      transform: scale(1.06);
      filter: saturate(1.08) contrast(1.04);
   }

   .eps-fitur-swiper .swiper-slide {
      background: #f8fbff;
   }

   .fitur-swiper-nav {
      position: absolute;
      inset: 0;
      z-index: 7;
      pointer-events: none;
   }

   .fitur-swiper-nav .swiper-button-prev,
   .fitur-swiper-nav .swiper-button-next {
      pointer-events: auto;
      width: 32px;
      height: 32px;
      margin-top: -16px;
      border-radius: 50%;
      color: #0f172a;
      background: rgba(255, 255, 255, 0.88);
      border: 1px solid rgba(255, 255, 255, 0.75);
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
      backdrop-filter: blur(10px);
      font-size: 20px;
      font-weight: 500;
      line-height: 1;
      opacity: 0;
      transform: scale(0.92);
      transition: all 0.24s ease;
      background-image: none !important;
   }

   .fitur-swiper-nav .swiper-button-prev {
      left: 10px;
   }

   .fitur-swiper-nav .swiper-button-next {
      right: 10px;
   }

   .fitur-card:hover .fitur-swiper-nav .swiper-button-prev,
   .fitur-card:hover .fitur-swiper-nav .swiper-button-next {
      opacity: 1;
      transform: scale(1);
   }

   .fitur-swiper-nav .swiper-button-prev:hover,
   .fitur-swiper-nav .swiper-button-next:hover {
      color: #ffffff;
      background: var(--eps-blue);
      border-color: var(--eps-blue);
   }

   .fitur-swiper-nav .swiper-button-prev::after,
   .fitur-swiper-nav .swiper-button-next::after {
      display: none;
   }

   .fitur-swiper-pagination {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 12px;
      z-index: 7;
      display: flex;
      justify-content: center;
      gap: 6px;
   }

   .fitur-swiper-pagination .swiper-pagination-bullet {
      width: 6px;
      height: 6px;
      margin: 0 !important;
      opacity: 1;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid rgba(15, 23, 42, 0.08);
      transition: all 0.24s ease;
   }

   .fitur-swiper-pagination .swiper-pagination-bullet-active {
      width: 20px;
      background: #ffffff;
   }

   /* Responsive slider */
   @media (max-width: 767px) {

      .fitur-media-frame,
      .fitur-static-image,
      .eps-fitur-swiper,
      .eps-fitur-swiper .swiper-wrapper,
      .eps-fitur-swiper .swiper-slide,
      .eps-fitur-swiper .swiper-slide img {
         height: 205px;
      }

      .fitur-swiper-nav .swiper-button-prev,
      .fitur-swiper-nav .swiper-button-next {
         opacity: 1;
         transform: scale(1);
      }
   }

   .fitur-body {
      display: flex;
      flex-direction: column;
      flex: 1;
      padding: 20px 22px 22px;
   }

   .fitur-title {
      margin: 0 0 10px;
      font-size: 20px;
      font-weight: 800;
      line-height: 1.35;
      color: var(--eps-dark);
      min-height: 54px;

      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
   }

   .fitur-desc {
      margin-bottom: 22px;
      color: #64748b;
      font-size: 14px;
      line-height: 1.7;
      min-height: 96px;

      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
   }

   .fitur-list {
      list-style: none;
      padding: 0;
      margin: 0 0 18px;
      min-height: 76px;
   }

   .fitur-list li {
      position: relative;
      padding-left: 22px;
      margin-bottom: 8px;
      color: #475569;
      font-size: 14px;
      line-height: 1.55;

      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
   }

   .fitur-list li::before {
      content: "\2713";
      position: absolute;
      left: 0;
      top: 1px;
      width: 16px;
      height: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      background: linear-gradient(135deg, var(--eps-blue), var(--eps-cyan));
   }

   .fitur-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: auto;
   }

   .fitur-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 18px;
      border: none;
      border-radius: 12px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      background: linear-gradient(135deg, var(--eps-blue), #005fe6);
      box-shadow: 0 12px 24px rgba(13, 110, 253, 0.22);
      transition: all .25s ease;
   }

   .fitur-btn:hover,
   .fitur-btn:focus {
      color: #fff;
      text-decoration: none;
      transform: translateY(-2px);
      box-shadow: 0 16px 28px rgba(13, 110, 253, 0.28);
   }

   .fitur-btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 16px;
      border-radius: 12px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      color: var(--eps-blue);
      background: rgba(13, 110, 253, 0.08);
      border: 1px solid rgba(13, 110, 253, 0.12);
      transition: all .25s ease;
   }

   .fitur-btn-secondary:hover,
   .fitur-btn-secondary:focus {
      text-decoration: none;
      color: var(--eps-blue-dark);
      background: rgba(13, 110, 253, 0.12);
   }

   /* MODAL DETAIL FITUR */
   .fitur-modal .modal-dialog {
      width: calc(100% - 30px);
      max-width: 920px;
      margin: 30px auto;
   }

   .fitur-modal .modal-content {
      border: none;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
   }

   .fitur-modal-header {
      position: relative;
      padding: 0;
      border-bottom: none;
   }

   .fitur-modal-cover {
      width: 100%;
      height: 280px;
      object-fit: cover;
      display: block;
      background: #eff6ff;
   }

   .eps-fitur-detail-swiper,
   .eps-fitur-detail-swiper .swiper-wrapper,
   .eps-fitur-detail-swiper .swiper-slide,
   .eps-fitur-detail-swiper .swiper-slide img {
      width: 100%;
      height: 280px;
   }

   .eps-fitur-detail-swiper {
      position: relative;
      background: #eff6ff;
   }

   .fitur-detail-swiper-nav {
      position: absolute;
      inset: 0;
      z-index: 3;
      pointer-events: none;
   }

   .fitur-detail-swiper-nav .swiper-button-prev,
   .fitur-detail-swiper-nav .swiper-button-next {
      pointer-events: auto;
      width: 38px;
      height: 38px;
      margin-top: -19px;
      border-radius: 50%;
      color: #0f172a;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(255, 255, 255, 0.78);
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
      backdrop-filter: blur(10px);
      font-size: 25px;
      font-weight: 500;
      line-height: 1;
      background-image: none !important;
      transition: all 0.24s ease;
   }

   .fitur-detail-swiper-nav .swiper-button-prev {
      left: 14px;
   }

   .fitur-detail-swiper-nav .swiper-button-next {
      right: 14px;
   }

   .fitur-detail-swiper-nav .swiper-button-prev:hover,
   .fitur-detail-swiper-nav .swiper-button-next:hover {
      color: #ffffff;
      background: var(--eps-blue);
      border-color: var(--eps-blue);
   }

   .fitur-detail-swiper-nav .swiper-button-prev::after,
   .fitur-detail-swiper-nav .swiper-button-next::after {
      display: none;
   }

   .fitur-detail-swiper-pagination {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 14px;
      z-index: 4;
      display: flex;
      justify-content: center;
      gap: 7px;
   }

   .fitur-detail-swiper-pagination .swiper-pagination-bullet {
      width: 7px;
      height: 7px;
      margin: 0 !important;
      opacity: 1;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid rgba(15, 23, 42, 0.10);
      transition: all 0.24s ease;
   }

   .fitur-detail-swiper-pagination .swiper-pagination-bullet-active {
      width: 24px;
      background: #ffffff;
   }

   .fitur-modal-close {
      position: absolute;
      top: 14px;
      right: 14px;
      z-index: 2;
      width: 38px;
      height: 38px;
      border: none;
      border-radius: 50%;
      background: rgba(255, 255, 255, .92);
      color: #0f172a;
      font-size: 24px;
      line-height: 1;
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
   }

   .fitur-modal-body {
      padding: 28px;
   }

   .fitur-modal-title {
      margin: 0 0 12px;
      font-size: 28px;
      font-weight: 800;
      line-height: 1.25;
      color: var(--eps-dark);
   }

   .fitur-modal-desc {
      margin-bottom: 20px;
      color: #475569;
      font-size: 15px;
      line-height: 1.8;
   }

   .fitur-modal-desc p:last-child,
   .fitur-modal-desc ul:last-child,
   .fitur-modal-desc ol:last-child {
      margin-bottom: 0;
   }

   .fitur-modal-detail-item + .fitur-modal-detail-item {
      margin-top: 18px;
      padding-top: 18px;
      border-top: 1px solid rgba(15, 23, 42, 0.08);
   }

   .fitur-modal-detail-item[data-detail-index] {
      display: none;
      margin-top: 0;
      padding-top: 0;
      border-top: 0;
   }

   .fitur-modal-detail-item.is-active {
      display: block;
   }

   .fitur-modal-subtitle {
      margin: 0 0 10px;
      font-size: 16px;
      font-weight: 800;
      color: var(--eps-dark);
   }

   .fitur-modal-list {
      list-style: none;
      padding: 0;
      margin: 0 0 24px;
   }

   .fitur-modal-list li {
      position: relative;
      padding-left: 24px;
      margin-bottom: 10px;
      color: #475569;
      line-height: 1.7;
   }

   .fitur-modal-list li::before {
      content: "\2022";
      position: absolute;
      left: 8px;
      top: 0;
      color: var(--eps-blue);
      font-weight: 800;
   }

   @media (max-width: 1199px) {
      .fitur-grid {
         grid-template-columns: repeat(2, minmax(0, 1fr));
      }
   }

   @media (max-width: 767px) {
      .fitur-grid {
         grid-template-columns: 1fr;
         gap: 20px;
      }

      .fitur-media-frame,
      .fitur-static-image,
      .eps-fitur-swiper,
      .eps-fitur-swiper .swiper-slide img {
         height: 210px;
      }

      .fitur-title {
         min-height: auto;
         font-size: 19px;
      }

      .fitur-desc,
      .fitur-list {
         min-height: auto;
      }

      .fitur-actions {
         flex-direction: column;
         align-items: stretch;
      }

      .fitur-btn,
      .fitur-btn-secondary {
         width: 100%;
      }

      .fitur-modal-cover {
         height: 220px;
      }

      .eps-fitur-detail-swiper,
      .eps-fitur-detail-swiper .swiper-wrapper,
      .eps-fitur-detail-swiper .swiper-slide,
      .eps-fitur-detail-swiper .swiper-slide img {
         height: 220px;
      }

      .fitur-modal-body {
         padding: 20px;
      }

      .fitur-modal-title {
         font-size: 22px;
      }
   }

   /* =====================================================
      RESPONSIVE
      ===================================================== */

   @media (max-width: 1199px) {
      .is-home h1 {
         font-size: 46px;
      }

      .fitur-grid {
         grid-template-columns: repeat(2, minmax(0, 1fr));
      }
   }

   @media (max-width: 991px) {
      .section {
         padding: 72px 0;
      }

      .is-home {
         min-height: auto;
         padding-top: 104px;
         padding-bottom: 78px;
      }

      .is-home h1 {
         font-size: 40px;
      }

      .hero-media {
         margin-bottom: 34px;
      }

      .hero-stats {
         margin-bottom: 28px;
      }
   }

   @media (max-width: 767px) {
      .section-title {
         font-size: 30px;
      }

      .is-home h1 {
         font-size: 34px;
      }

      .is-home .desk {
         font-size: 15px;
      }

      .hero-actions {
         align-items: stretch;
      }

      .hero-actions .btn {
         width: 100%;
      }

      .fitur-grid {
         grid-template-columns: 1fr;
      }

      .keunggulan-item {
         margin-bottom: 22px;
      }
   }

   @media (max-width: 480px) {
      .is-home h1 {
         font-size: 30px;
      }

      .hero-stats {
         display: grid;
         grid-template-columns: 1fr;
      }

   }

   /* =====================================================
   FORCE HERO TEXT COLOR - FIX TEKS HITAM
   ===================================================== */

   .is-home h1,
   .is-home h1.animate,
   .is-home h1 *,
   .is-home .desk,
   .is-home .desk *,
   .is-home .desk p,
   .is-home .desk span {
      color: #ffffff !important;
   }

   .is-home h1,
   .is-home h1.animate {
      color: #ffffff !important;
      text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35) !important;
   }

   .is-home .desk,
   .is-home .desk *,
   .is-home .desk p,
   .is-home .desk span {
      color: rgba(255, 255, 255, 0.90) !important;
      text-shadow: 0 4px 16px rgba(0, 0, 0, 0.32) !important;
   }

   .is-home .desk {
      font-size: 18px !important;
      line-height: 1.9 !important;
      max-width: 760px;
   }

   .fitur-icon-btn {
      width: auto;
      min-width: 108px;
      height: 40px;
      padding: 0 12px 0 16px;
      border: none;
      border-radius: 12px;

      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;

      color: #ffffff;
      background: linear-gradient(135deg, var(--eps-blue), #005fe6);

      font-size: 13px;
      font-weight: 800;
      line-height: 1;

      box-shadow: 0 6px 14px rgba(13, 110, 253, 0.20);
      transition: all 0.25s ease;
   }

   .fitur-icon-btn:hover,
   .fitur-icon-btn:focus {
      color: #ffffff;
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(13, 110, 253, 0.26);
   }

   .fitur-icon-arrow {
      width: 22px;
      height: 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.18);
      font-size: 20px;
      font-weight: 500;
      line-height: 1;
   }

   @media (min-width: 992px) {
      .is-home {
         min-height: 690px;
      }

      .is-home .col-md-6:first-child {
         width: 48%;
      }

      .is-home .col-md-6:last-child {
         width: 52%;
      }
   }

   /* =====================================================
      MICROSOFT FLUENT POLISH
      ===================================================== */

   :root {
      --eps-fluent-bg: #f5f8fc;
      --eps-fluent-surface: rgba(255, 255, 255, 0.88);
      --eps-fluent-surface-solid: #ffffff;
      --eps-fluent-line: rgba(15, 23, 42, 0.10);
      --eps-fluent-line-strong: rgba(15, 23, 42, 0.16);
      --eps-fluent-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
      --eps-fluent-shadow-strong: 0 18px 46px rgba(15, 23, 42, 0.13);
      --eps-fluent-blue: #2563eb;
      --eps-fluent-blue-hover: #1d4ed8;
      --eps-fluent-teal: #0f766e;
   }

   body {
      background:
         linear-gradient(180deg, #ffffff 0%, var(--eps-fluent-bg) 48%, #ffffff 100%);
   }

   .section {
      padding: 86px 0;
   }

   .section-title {
      font-size: clamp(30px, 3vw, 40px);
      font-weight: 800;
      color: #111827;
   }

   .section-title::after {
      width: 54px;
      height: 3px;
      margin-top: 14px;
      background: linear-gradient(90deg, var(--eps-fluent-blue), #06b6d4, #16a34a);
   }

   .is-home {
      min-height: 700px;
      background-attachment: fixed;
   }

   .is-home::before {
      background:
         linear-gradient(90deg, rgba(7, 18, 34, 0.88) 0%, rgba(13, 55, 106, 0.80) 45%, rgba(7, 72, 92, 0.72) 100%),
         radial-gradient(circle at 72% 18%, rgba(56, 189, 248, 0.24), transparent 32%),
         radial-gradient(circle at 18% 76%, rgba(34, 197, 94, 0.18), transparent 28%);
   }

   .is-home::after {
      background-image:
         linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
         linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
      background-size: 64px 64px;
   }

   .is-home h1 {
      max-width: 720px;
      font-size: clamp(36px, 4.4vw, 58px);
      font-weight: 800;
      line-height: 1.08;
   }

   .is-home .desk {
      max-width: 720px;
      font-size: 17px !important;
      line-height: 1.85 !important;
   }

   .hero-media {
      border-radius: 12px;
      padding: 10px;
      background: rgba(255, 255, 255, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.25);
      box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
   }

   .hero-media img {
      border-radius: 8px;
   }

   .hero-actions .btn,
   .btn {
      border-radius: 8px;
      min-height: 46px;
      box-shadow: none;
   }

   .btn-primary {
      background: var(--eps-fluent-blue);
      box-shadow: 0 10px 22px rgba(37, 99, 235, 0.28);
   }

   .btn-primary:hover,
   .btn-primary:focus {
      background: var(--eps-fluent-blue-hover);
      box-shadow: 0 14px 30px rgba(37, 99, 235, 0.32);
   }

   .btn-outline-light {
      border-color: rgba(255, 255, 255, 0.34);
      background: rgba(255, 255, 255, 0.12);
   }

   .scroll-indicator {
      border-radius: 8px;
      backdrop-filter: blur(14px);
   }

   .is-keunggulan,
   .is-fitur {
      background:
         linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
   }

   .keunggulan-list {
      margin-top: 36px;
   }

   .keunggulan-item,
   .fitur-card {
      border-radius: 16px;
      background:
         linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94));
      border: 0;
      box-shadow: 0 12px 34px rgba(15, 23, 42, 0.075);
      transition:
         transform 0.34s cubic-bezier(0.16, 1, 0.3, 1),
         box-shadow 0.34s cubic-bezier(0.16, 1, 0.3, 1),
         background 0.34s ease;
   }

   .keunggulan-item {
      min-height: 248px;
      padding: 30px 26px;
   }

   .keunggulan-item:hover,
   .fitur-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 54px rgba(15, 23, 42, 0.12);
   }

   .keunggulan-icon {
      width: 70px;
      height: 70px;
      border-radius: 12px;
      background:
         linear-gradient(180deg, #ffffff, #eef6ff);
      border: 0;
      box-shadow: none;
   }

   .keunggulan-item h4,
   .fitur-title {
      color: #111827;
      font-weight: 800;
   }

   .keunggulan-item p,
   .fitur-desc {
      color: #5f6f85;
   }

   .fitur-grid {
      gap: 24px;
      margin-top: 24px;
   }

   .fitur-card::before {
      height: 3px;
      background: linear-gradient(90deg, var(--eps-fluent-blue), #06b6d4, #16a34a);
   }

   .fitur-media {
      padding: 10px 10px 0;
   }

   .fitur-media-frame {
      border-radius: 12px;
      border: 0;
      background: #f3f7fb;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.70);
   }

   .fitur-media-frame::before {
      top: 10px;
      left: 12px;
      width: 6px;
      height: 6px;
   }

   .fitur-body {
      padding: 18px 20px 20px;
   }

   .fitur-title {
      font-size: 19px;
      min-height: 50px;
   }

   .fitur-desc {
      min-height: 92px;
      font-size: 14px;
   }

   .fitur-icon-btn {
      min-width: 104px;
      height: 38px;
      border-radius: 8px;
      background: var(--eps-fluent-blue);
      box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
   }

   .fitur-icon-btn:hover,
   .fitur-icon-btn:focus {
      background: var(--eps-fluent-blue-hover);
      box-shadow: 0 12px 24px rgba(37, 99, 235, 0.28);
   }

   .fitur-icon-arrow {
      background: rgba(255, 255, 255, 0.20);
   }

   .fitur-modal.modal {
      position: fixed !important;
      top: 0 !important;
      right: 0 !important;
      bottom: 0 !important;
      left: 0 !important;
      z-index: 99999 !important;
      overflow-x: hidden !important;
      overflow-y: auto !important;
      padding: 24px 0 !important;
      background: transparent !important;
      text-align: center;
   }

   .fitur-modal.modal:before {
      content: "";
      display: inline-block;
      height: 100%;
      margin-right: -4px;
      vertical-align: middle;
   }

   .fitur-modal .modal-dialog {
      position: relative !important;
      z-index: 100001 !important;
      display: inline-block;
      width: calc(100% - 32px);
      max-width: 1080px;
      margin: 0 auto;
      text-align: left;
      vertical-align: middle;
   }

   .modal-backdrop,
   .modal-backdrop.in {
      position: fixed !important;
      top: 0 !important;
      right: 0 !important;
      bottom: 0 !important;
      left: 0 !important;
      z-index: 99990 !important;
   }

   .fitur-modal .modal-content {
      position: relative;
      z-index: 100002;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(255, 255, 255, 0.72);
      box-shadow: 0 28px 80px rgba(15, 23, 42, 0.24);
      backdrop-filter: blur(18px);
   }

   .fitur-modal-header {
      background:
         linear-gradient(180deg, #f7f9fc, #eef3f8);
   }

   .fitur-modal-cover,
   .eps-fitur-detail-swiper,
   .eps-fitur-detail-swiper .swiper-wrapper,
   .eps-fitur-detail-swiper .swiper-slide,
   .eps-fitur-detail-swiper .swiper-slide img {
      height: 360px;
   }

   .fitur-modal-cover,
   .eps-fitur-detail-swiper .swiper-slide img {
      object-fit: contain;
      background: #f3f6fa;
   }

   .fitur-modal-close {
      top: 16px;
      right: 16px;
      z-index: 12;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.92);
      color: #111827;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
   }

   .fitur-detail-swiper-nav .swiper-button-prev,
   .fitur-detail-swiper-nav .swiper-button-next {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      color: #111827;
      background: rgba(255, 255, 255, 0.94);
   }

   .fitur-detail-swiper-nav .swiper-button-prev {
      left: 18px;
   }

   .fitur-detail-swiper-nav .swiper-button-next {
      right: 18px;
   }

   .fitur-modal-body {
      padding: 28px 34px 34px;
   }

   .fitur-modal-title {
      margin-bottom: 16px;
      font-size: 28px;
      color: #111827;
   }

   .fitur-modal-desc {
      margin-bottom: 0;
   }

   .fitur-modal-detail-item.is-active {
      padding: 16px 18px;
      border-radius: 8px;
      background: #f8fafc;
      border: 1px solid var(--eps-fluent-line);
      color: #475569;
   }

   @media (max-width: 991px) {
      .is-home {
         background-attachment: scroll;
      }

      .is-home .row {
         display: block;
      }

      .fitur-modal .modal-dialog {
         width: calc(100% - 22px);
         margin: 18px auto;
      }

      .fitur-modal-cover,
      .eps-fitur-detail-swiper,
      .eps-fitur-detail-swiper .swiper-wrapper,
      .eps-fitur-detail-swiper .swiper-slide,
      .eps-fitur-detail-swiper .swiper-slide img {
         height: 300px;
      }
   }

   @media (max-width: 576px) {
      .section {
         padding: 64px 0;
      }

      .fitur-modal-cover,
      .eps-fitur-detail-swiper,
      .eps-fitur-detail-swiper .swiper-wrapper,
      .eps-fitur-detail-swiper .swiper-slide,
      .eps-fitur-detail-swiper .swiper-slide img {
         height: 240px;
      }

      .fitur-modal-body {
         padding: 22px 18px 24px;
      }
   }

   /* =====================================================
      VISIBLE FLUENT REDESIGN PASS
      ===================================================== */

   .is-home {
      min-height: 760px;
      background-position: center top;
   }

   .is-home::before {
      background:
         linear-gradient(90deg, rgba(6, 15, 32, 0.94) 0%, rgba(10, 42, 84, 0.88) 42%, rgba(12, 88, 116, 0.76) 100%);
   }

   .is-home .container {
      width: min(1180px, calc(100% - 48px));
   }

   .is-home h1 {
      padding-left: 22px;
      border-left: 4px solid #60a5fa;
   }

   .hero-media {
      padding: 0;
      overflow: hidden;
      border-radius: 10px;
      background: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.40);
      box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
   }

   .hero-media-bar {
      height: 36px;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0 14px;
      background: #f3f6fb;
      border-bottom: 1px solid rgba(15, 23, 42, 0.10);
   }

   .hero-media-bar span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #ef4444;
   }

   .hero-media-bar span:nth-child(2) {
      background: #f59e0b;
   }

   .hero-media-bar span:nth-child(3) {
      background: #22c55e;
   }

   .hero-media img {
      padding: 18px;
      background: #ffffff;
      border-radius: 0;
   }

   .hero-actions .btn {
      border-radius: 6px;
      padding-left: 22px;
      padding-right: 22px;
   }

   .is-keunggulan {
      background:
         radial-gradient(circle at 9% 12%, rgba(37, 99, 235, 0.08), transparent 28%),
         radial-gradient(circle at 90% 8%, rgba(6, 182, 212, 0.07), transparent 24%),
         linear-gradient(180deg, #f7fbff 0%, #eef5fb 100%);
   }

   .keunggulan-item {
      text-align: left;
      display: grid;
      grid-template-columns: 70px 1fr;
      column-gap: 18px;
      align-items: start;
   }

   .keunggulan-icon {
      grid-row: span 2;
      margin: 0;
   }

   .keunggulan-item h4 {
      margin-top: 2px;
   }

   .keunggulan-item p {
      grid-column: 2;
   }

   .is-fitur {
      background:
         radial-gradient(circle at 12% 10%, rgba(37, 99, 235, 0.09), transparent 30%),
         radial-gradient(circle at 88% 18%, rgba(22, 163, 74, 0.06), transparent 26%),
         linear-gradient(180deg, #eef5fb 0%, #f8fbff 48%, #edf4fb 100%);
   }

   .is-keunggulan::after,
   .is-fitur::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background-image:
         linear-gradient(rgba(37, 99, 235, 0.035) 1px, transparent 1px),
         linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
   }

   .is-keunggulan .container,
   .is-fitur .container {
      position: relative;
      z-index: 1;
   }

   @media (min-width: 1200px) {
      .fitur-grid {
         grid-template-columns: repeat(2, minmax(0, 1fr));
         gap: 22px;
      }

      .fitur-card {
         display: grid;
         grid-template-columns: 45% 55%;
         min-height: 280px;
      }

      .fitur-card::before {
         width: 4px;
         height: auto;
         right: auto;
         bottom: 0;
      }

      .fitur-media {
         padding: 12px;
      }

      .fitur-media-frame,
      .fitur-static-image,
      .eps-fitur-swiper,
      .eps-fitur-swiper .swiper-wrapper,
      .eps-fitur-swiper .swiper-slide,
      .eps-fitur-swiper .swiper-slide img {
         height: 256px;
      }

      .fitur-body {
         padding: 26px 26px 24px;
      }

      .fitur-title {
         min-height: auto;
         font-size: 22px;
      }

      .fitur-desc {
         min-height: 116px;
      }
   }

   .fitur-card {
      border-left: 0;
      box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
   }

   .fitur-card:hover {
      transform: translateY(-5px);
   }

   .fitur-media-frame {
      box-shadow: none;
   }

   .fitur-modal .modal-dialog {
      max-width: 1180px;
   }

   @media (min-width: 992px) {
      .fitur-modal .modal-content {
         display: grid;
         grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
      }

      .fitur-modal-header {
         min-height: 560px;
      }

      .fitur-modal-body {
         display: flex;
         flex-direction: column;
         justify-content: center;
         border-left: 1px solid rgba(15, 23, 42, 0.09);
      }

      .fitur-modal-cover,
      .eps-fitur-detail-swiper,
      .eps-fitur-detail-swiper .swiper-wrapper,
      .eps-fitur-detail-swiper .swiper-slide,
      .eps-fitur-detail-swiper .swiper-slide img {
         height: 560px;
      }
   }

   .fitur-modal-body {
      background: #ffffff;
   }

   .fitur-modal-title {
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(15, 23, 42, 0.10);
   }

   .fitur-modal-caption-label {
      margin-bottom: 8px;
      color: #2563eb;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
   }

   .fitur-modal-detail-item.is-active {
      padding: 18px 18px;
      border-radius: 12px;
      background: #f5f9ff;
      border-color: rgba(37, 99, 235, 0.16);
   }

   @media (max-width: 991px) {
      .is-home .container {
         width: calc(100% - 30px);
      }

      .is-home h1 {
         padding-left: 16px;
      }

      .keunggulan-item {
         grid-template-columns: 62px 1fr;
      }
   }

   :root {
      --eps-font: "Inter", "Plus Jakarta Sans", "Raleway", Arial, sans-serif;
      --eps-text: #0f172a;
      --eps-muted: #64748b;
      --eps-soft: #f6f9fc;
      --eps-blue: #0f62fe;
      --eps-blue-dark: #0043ce;
      --eps-cyan: #2bb7f6;
      --eps-green: #16a34a;
      --eps-radius: 16px;
      --eps-shadow-sm: 0 8px 22px rgba(15, 23, 42, 0.055);
      --eps-shadow-md: 0 16px 44px rgba(15, 23, 42, 0.09);
      --eps-shadow-lg: 0 24px 70px rgba(15, 23, 42, 0.13);
   }

   html,
   body {
      font-family: var(--eps-font);
      color: var(--eps-text);
      letter-spacing: 0;
      text-rendering: geometricPrecision;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
   }

   body {
      background: #f7fafc;
   }

   p,
   .desk,
   .section-subtitle {
      color: var(--eps-muted);
      line-height: 1.75;
   }

   h1,
   h2,
   h3,
   h4,
   h5,
   h6 {
      font-family: var(--eps-font);
      color: var(--eps-text);
      letter-spacing: 0;
   }
