:root {
      --primary: #1457D8;
      --primary-dark: #0F3FA8;
      --primary-light: #E8EFFD;
      --navy: #101A33;
      --gray-800: #2D3748;
      --gray-700: #42526B;
      --gray-600: #6B7686;
      --gray-500: #94A0B3;
      --gray-400: #B0BAC9;
      --gray-border: #E2E7EF;
      --gray-bg: #F5F7FA;
      --green: #16A34A;
      --green-bg: #ECFDF5;
      --purple: #7C3AED;
      --purple-bg: #F5F3FF;
      --orange: #F2994A;
      --orange-bg: #FFF7ED;
      --blue-bg: #EFF4FF;
      --page-bg: #F8FAFC;
      --radius-xl: 20px;
      --radius-lg: 16px;
      --radius-md: 12px;
      --radius-sm: 8px;
      --shadow-sm: 0 1px 2px rgba(0, 0, 0, .04);
      --shadow-md: 0 4px 12px rgba(0, 0, 0, .06);
      --shadow-lg: 0 12px 32px rgba(20, 40, 90, .10);
      --shadow-xl: 0 20px 48px rgba(20, 40, 90, .14);
    }

    * {
      font-family: 'Plus Jakarta Sans', sans-serif;
    }

    body {
      background: var(--page-bg);
      color: var(--navy);
      -webkit-font-smoothing: antialiased;
    }

    a {
      text-decoration: none;
      transition: color .2s;
    }

    img {
      max-width: 100%;
    }

    /* ===== NAVBAR ===== */
    .navbar-bkk {
      background: #fff;
      border-bottom: 1px solid var(--gray-border);
      padding: .75rem 0;
      position: sticky;
      top: 0;
      z-index: 1020;
      box-shadow: var(--shadow-sm);
    }

    .brand-title {
      font-weight: 800;
      font-size: 1.5rem;
      color: var(--primary);
      letter-spacing: -.5px;
      line-height: 1.1;
      margin-bottom: 0;
    }

    .brand-sub {
      font-size: .6rem;
      color: var(--gray-500);
      letter-spacing: .8px;
      display: block;
      text-transform: uppercase;
    }

    .nav-bkk .nav-link {
      font-weight: 600;
      font-size: .88rem;
      color: var(--gray-700);
      padding: .5rem .85rem;
      border-radius: var(--radius-sm);
      transition: all .2s;
    }

    .nav-bkk .nav-link:hover {
      color: var(--primary);
      background: var(--primary-light);
    }

    .nav-bkk .nav-link.active {
      color: var(--primary);
      background: var(--primary-light);
    }

    .nav-bkk .nav-link.active::after {
      display: none;
    }

    .icon-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--gray-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gray-700);
      font-size: 1.05rem;
      position: relative;
      transition: background .2s;
      border: none;
      cursor: pointer;
    }

    .icon-btn:hover {
      background: #E8ECF2;
    }

    .icon-btn .badge-dot {
      position: absolute;
      top: -2px;
      right: -2px;
      background: #EF4444;
      color: #fff;
      font-size: .6rem;
      font-weight: 700;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid #fff;
    }

    .btn-bkk-outline {
      border: 1.5px solid var(--primary);
      color: var(--primary);
      font-weight: 700;
      border-radius: var(--radius-sm);
      padding: .5rem 1.2rem;
      font-size: .88rem;
      transition: all .2s;
      background: transparent;
    }

    .btn-bkk-outline:hover {
      background: var(--primary-light);
      color: var(--primary);
    }

    .btn-bkk-fill {
      background: var(--primary);
      color: #fff;
      font-weight: 700;
      border-radius: var(--radius-sm);
      padding: .5rem 1.3rem;
      font-size: .88rem;
      border: 1.5px solid var(--primary);
      transition: all .2s;
    }

    .btn-bkk-fill:hover {
      background: var(--primary-dark);
      border-color: var(--primary-dark);
      color: #fff;
    }

    /* ===== HERO ===== */
    .hero-wrap {
      background: linear-gradient(160deg, #EAF0FD 0%, #EFF3FC 40%, #F4F7FD 100%);
      border-radius: var(--radius-xl);
      padding: 3rem 2.5rem;
    }

    .hero-heading {
      font-weight: 700;
      font-size: 26px;
      line-height: 1.18;
      color: var(--navy);
      letter-spacing: -.5px;
    }

    .hero-heading .accent {
      color: var(--primary);
    }

    .hero-text {
      color: var(--gray-600);
      font-size: 1.02rem;
      font-weight: 600;
      max-width: 480px;
      margin-top: 1rem;
      line-height: 1.6;
    }

    .hero-illustration {
      width: 100%;
      max-width: 420px;
    }

    /* Search bar */
    .search-bar {
      background: #fff;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: .5rem .5rem;
      margin-top: 2.2rem;
      border: 1px solid var(--gray-border);
    }

    .search-field {
      display: flex;
      align-items: center;
      gap: .6rem;
      padding: .55rem .8rem;
      flex: 1;
    }

    .search-field i {
      color: var(--gray-500);
      font-size: 1rem;
    }

    .search-field input {
      border: none;
      outline: none;
      width: 100%;
      font-size: .9rem;
      color: var(--navy);
      background: transparent;
    }

    .search-field input::placeholder {
      color: var(--gray-400);
    }

    .search-divider {
      width: 1px;
      background: var(--gray-border);
      align-self: center;
      height: 28px;
    }

    .btn-search {
      background: var(--primary);
      color: #fff;
      font-weight: 700;
      border-radius: var(--radius-md);
      padding: .7rem 1.6rem;
      white-space: nowrap;
      border: none;
      font-size: .9rem;
      transition: background .2s;
    }

    .btn-search:hover {
      background: var(--primary-dark);
      color: #fff;
    }

    /* Stats cards */
    .stats-row {
      margin-top: -3rem;
      position: relative;
      z-index: 3;
    }

    .stat-card {
      background: #fff;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      padding: 1.2rem 1.1rem;
      display: flex;
      align-items: center;
      gap: .85rem;
      height: 100%;
      border: 1px solid var(--gray-border);
      transition: box-shadow .2s;
    }

    .stat-card:hover {
      box-shadow: var(--shadow-lg);
    }

    .stat-icon {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .stat-num {
      font-weight: 800;
      font-size: 1.15rem;
      color: var(--navy);
      line-height: 1.1;
    }

    .stat-label {
      font-size: .8rem;
      color: var(--gray-600);
    }

    /* Section titles */
    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.2rem;
    }

    .section-title {
      font-weight: 800;
      font-size: 1.2rem;
      color: var(--navy);
      margin: 0;
      letter-spacing: -.3px;
    }

    .link-all {
      color: var(--primary);
      font-weight: 700;
      font-size: .88rem;
      display: flex;
      align-items: center;
      gap: .35rem;
      transition: color .2s;
    }

    .link-all:hover {
      color: var(--primary-dark);
    }

    /* Kategori */
    .cat-scroll {
      display: flex;
      gap: .65rem;
      flex-wrap: wrap;
      overflow-x: auto;
      padding-bottom: .3rem;
    }

    .cat-pill {
      display: flex;
      align-items: center;
      gap: .6rem;
      background: #fff;
      border: 1.5px solid var(--gray-border);
      border-radius: var(--radius-md);
      padding: .65rem 1.1rem;
      font-weight: 600;
      font-size: .88rem;
      color: var(--navy);
      flex-shrink: 0;
      transition: all .2s;
      cursor: pointer;
    }

    .cat-pill:hover {
      border-color: var(--primary);
      box-shadow: var(--shadow-md);
    }

    .cat-pill .cat-icon {
      width: 32px;
      height: 32px;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .95rem;
      flex-shrink: 0;
    }

    .cat-arrows {
      display: flex;
      align-items: center;
      color: var(--gray-500);
      gap: .25rem;
      font-size: .75rem;
    }

    /* Job cards */
    .job-card {
      background: #fff;
      border: 1px solid var(--gray-border);
      border-radius: var(--radius-lg);
      padding: 1.2rem 1.3rem;
      transition: box-shadow .2s;
    }

    .job-card:hover {
      box-shadow: var(--shadow-md);
    }

    .job-logo {
      width: 80px;
      height: 80px;
      border-radius: var(--radius-md);
      border: 1px solid var(--gray-border);
      outline: 2px solid #E5E7EB;
      outline-offset: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .job-logo img {
      width: 60px;
      height: 60px;
      object-fit: contain;
    }

    .job-title {
      font-weight: 700;
      font-size: 1rem;
      color: var(--navy);
      margin-bottom: .1rem;
    }

    .job-company {
      color: var(--gray-600);
      font-size: .84rem;
      margin-bottom: .5rem;
    }

    .job-meta {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      font-size: .8rem;
      color: var(--gray-600);
    }

    .job-meta span {
      display: flex;
      align-items: center;
      gap: .3rem;
    }

    .badge-new,
    .badge-populer,
    .badge-pilihan {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 4px 10px;
      border-radius: 5px;
      font-size: .75rem;
      font-weight: 700;
      line-height: 1;
      white-space: nowrap;
    }

    /* Baru */
    .badge-new {
      color: #16A34A;
      background: #DCFCE7;
      border: 1px solid #BBF7D0;
    }

    /* Populer */
    .badge-populer {
      color: #DC2626;
      background: #FEE2E2;
      border: 1px solid #FECACA;
    }

    /* Pilihan */
    .badge-pilihan {
      color: #CA8A04;
      background: #FEF3C7;
      border: 1px solid #FDE68A;
    }

    /* Pilihan */
    .badge-terbaik {
        color: #1D4ED8;
        background: #DBEAFE;
        border: 1px solid #93C5FD;
    }

    .badge-hot {
      background: #EF4444;
      color: #fff;
      padding: .15rem .5rem;
      border-radius: 4px;
      font-weight: 700;
      font-size: .7rem;
    }

    .job-time {
      color: var(--gray-500);
      font-size: .75rem;
    }

    .bookmark-btn {
      width: 34px;
      height: 34px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--gray-border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gray-500);
      background: #fff;
      transition: all .2s;
      cursor: pointer;
    }

    .bookmark-btn:hover {
      color: var(--primary);
      border-color: var(--primary);
    }

    .btn-apply {
      border: 1.5px solid var(--primary);
      color: var(--primary);
      font-weight: 700;
      font-size: .82rem;
      border-radius: var(--radius-sm);
      padding: .45rem 1.1rem;
      white-space: nowrap;
      background: #fff;
      transition: all .2s;
    }

    .btn-apply:hover {
      background: var(--primary);
      color: #fff;
    }

    /* =========================
   SWIPER SLIDER
========================= */

    /* =========================
   SWIPER LOWONGAN PILIHAN
========================= */

    #swiperPopuler {
      width: 100%;
      position: relative;
      overflow: hidden !important;
    }

    #swiperPopuler .swiper-wrapper {
      display: flex;
      align-items: stretch;
    }

    #swiperPopuler .swiper-slide {
      flex: 0 0 100% !important;
      width: 100% !important;
      max-width: 100% !important;
      height: auto;
      box-sizing: border-box;
    }

    #swiperPopuler .job-card {
      width: 100%;
      height: 100%;
    }

    /* =========================
   PAGINATION
========================= */

    #swiperPopuler .swiper-pagination {
      position: relative;
      margin-top: 1.5rem;
      bottom: auto !important;
    }

    #swiperPopuler .swiper-pagination-bullet {
      width: 8px;
      height: 8px;
      background: var(--gray-400);
      opacity: 1;
      transition: all .3s ease;
    }

    #swiperPopuler .swiper-pagination-bullet-active {
      width: 24px;
      border-radius: 999px;
      background: var(--primary);
    }

    #swiperPerusahaan {
      overflow: hidden;
    }

    #swiperPerusahaan .swiper-slide {
      height: auto;
    }

    #swiperPerusahaan .perusahaan-card {
      height: 100%;
    }

    #swiperPerusahaan .swiper-pagination {
      position: relative;
      margin-top: 1.5rem;
    }

    #swiperTraining{
        overflow:hidden;
    }

    #swiperTraining .swiper-slide{
        height:auto;
    }

    #swiperTraining .training-card{
        height:100%;
    }

    #swiperTraining .swiper-pagination{
        position:relative;
        margin-top:12px;
    }

    /* =========================
   NAVIGATION
========================= */

    .slider-nav {
      display: flex;
      align-items: center;
      gap: .5rem;
    }

    .slider-nav-btn {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1.5px solid var(--gray-border);
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gray-600);
      cursor: pointer;
      transition: all .2s ease;
    }

    .slider-nav-btn:hover {
      border-color: var(--primary);
      color: var(--primary);
      transform: translateY(-1px);
    }

    .slider-nav-btn.swiper-button-disabled {
      opacity: .4;
      cursor: not-allowed;
      pointer-events: none;
    }

    #swiperCV {
      overflow: hidden;
    }

    #swiperCV .swiper-slide {
      height: auto;
    }

    #swiperCV .cv-card {
      height: 100%;
    }

    #swiperKonsultasi {
      overflow: hidden;
    }

    #swiperKonsultasi .swiper-slide {
      height: auto;
    }

    #swiperKonsultasi .consult-card {
      height: 100%;
    }

    #swiperKonsultasi .swiper-pagination {
      position: relative;
      margin-top: 12px;
    }

    /* =========================
   MOBILE
========================= */

    @media (max-width: 768px) {

      .slider-nav {
        display: none;
      }

      #swiperPopuler .swiper-slide {
        width: 100% !important;
        flex: 0 0 100% !important;
      }

      #swiperPopuler .job-card {
        min-height: auto;
      }
    }

    /* Countdown timer */
    .countdown-wrap {
      display: flex;
      align-items: center;
      gap: .5rem;
      background: #FFF3F0;
      padding: .55rem .9rem;
      border-radius: var(--radius-md);
      border: 1px solid #FFD4CC;
    }

    .countdown-icon {
      color: #EF4444;
      font-size: 1rem;
    }

    .countdown-label {
      font-size: .78rem;
      color: #991B1B;
      font-weight: 500;
    }

    .countdown-timer {
      background: #EF4444;
      color: #fff;
      padding: .25rem .55rem;
      border-radius: 6px;
      font-weight: 800;
      font-size: .82rem;
      letter-spacing: .5px;
      font-variant-numeric: tabular-nums;
      min-width: 60px;
      text-align: center;
    }

    .countdown-unit {
      font-size: .65rem;
      color: #991B1B;
      font-weight: 600;
    }

    /* ===== SIDEBAR ===== */
    .side-card {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 1.3rem;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--gray-border);
    }

    .side-card-blue {
      background: linear-gradient(135deg, #EAF0FD, #E3ECFD);
      border-radius: var(--radius-lg);
      padding: 1.3rem;
      position: relative;
      overflow: hidden;
    }

    .side-title {
      font-weight: 800;
      color: var(--navy);
      font-size: 1rem;
      margin-bottom: .3rem;
      letter-spacing: -.2px;
    }

    .side-title.blue {
      color: var(--primary);
    }

    .side-text {
      color: var(--gray-600);
      font-size: .84rem;
      line-height: 1.55;
    }

    .btn-pill-white {
      background: #fff;
      color: var(--primary);
      font-weight: 700;
      font-size: .84rem;
      border-radius: 30px;
      padding: .5rem 1rem;
      border: none;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      box-shadow: var(--shadow-sm);
      transition: all .2s;
    }

    .btn-pill-white:hover {
      box-shadow: var(--shadow-md);
    }

    .btn-pill-white .circ {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--primary);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .7rem;
    }

    .avatar-circle {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, #7CA6F5, #1457D8);
      color: #fff;
      font-weight: 800;
      font-size: .95rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .progress-bkk {
      height: 6px;
      border-radius: 6px;
      background: var(--gray-bg);
      overflow: hidden;
    }

    .progress-bkk .fill {
      height: 100%;
      background: var(--primary);
      border-radius: 6px;
      transition: width .3s;
    }

    .check-item {
      display: flex;
      align-items: center;
      gap: .5rem;
      font-size: .83rem;
    }

    .check-item.done {
      color: var(--navy);
      font-weight: 500;
    }

    .check-item.todo {
      color: var(--gray-500);
    }

    .check-circle-done {
      color: var(--green);
      font-size: 1rem;
    }

    .check-circle-todo {
      width: 15px;
      height: 15px;
      border-radius: 50%;
      border: 1.5px solid var(--gray-400);
      flex-shrink: 0;
    }

    .btn-outline-block {
      border: 1.5px solid var(--primary);
      color: var(--primary);
      font-weight: 700;
      border-radius: var(--radius-md);
      padding: .55rem 1rem;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .5rem;
      font-size: .86rem;
      background: #fff;
      transition: all .2s;
    }

    .btn-outline-block:hover {
      background: var(--primary-light);
      color: var(--primary);
    }

    .icon-illustration {
      width: 60px;
      height: 60px;
      flex-shrink: 0;
    }

    @media (max-width: 991.98px) {
      .hero-heading {
        font-size: 2rem;
      }

      .stats-row {
        margin-top: 1.5rem;
      }

      .hero-illustration {
        margin-top: 2rem;
      }

      .hero-wrap {
        padding: 2rem 1.5rem;
      }
    }

    /* ===== SECTION 2 ===== */
    .section-spacing {
      margin-top: 3rem;
    }

    .section-spacing-sm {
      margin-top: 1.5rem;
    }

    /* =========================================
   PERUSAHAAN PILIHAN - REDESIGN
   ========================================= */
    .perusahaan-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 1rem;
    }

    .perusahaan-card {
      background: #fff;
      border: 1px solid var(--gray-border);
      border-radius: var(--radius-lg);
      padding: 1rem 0.5rem 0.5rem 0.5rem;
      text-align: center;
      transition: all 0.25s ease;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .perusahaan-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--primary);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
      border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .perusahaan-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
      border-color: var(--primary);
    }

    .perusahaan-card:hover::before {
      transform: scaleX(1);
    }

    .perusahaan-logo-wrap {
      width: 70px;
      height: 70px;
      margin: 0 auto 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--gray-bg);
      border-radius: var(--radius-md);
      padding: .75rem;
      transition: all 0.25s ease;
    }

    .perusahaan-card:hover .perusahaan-logo-wrap {
      background: var(--primary-light);
      transform: scale(1.05);
    }

    .perusahaan-logo-wrap img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform 0.25s ease;
    }

    .perusahaan-card:hover .perusahaan-logo-wrap img {
      transform: scale(1.1);
    }

    .perusahaan-name {
      font-weight: 700;
      font-size: 14px;
      color: var(--navy);
      margin-bottom: .4rem;
      letter-spacing: -.2px;
    }

    .perusahaan-lowongan {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      background: var(--green-bg);
      color: var(--green);
      padding: .35rem .75rem;
      border-radius: 20px;
      font-weight: 600;
      font-size: .78rem;
    }

    .perusahaan-lowongan i {
      font-size: .7rem;
    }

    .perusahaan-link {
      display: inline-flex;
      align-items: center;
      gap: .3rem;
      margin-top: .8rem;
      color: var(--primary);
      font-weight: 600;
      font-size: .82rem;
      transition: gap 0.25s ease;
    }

    .perusahaan-link:hover {
      color: var(--primary-dark);
      gap: .5rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .perusahaan-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: .75rem;
      }

      .perusahaan-card {
        padding: 1.2rem .9rem;
      }

      .perusahaan-logo-wrap {
        width: 56px;
        height: 56px;
      }
    }

    @media (max-width: 576px) {
      .perusahaan-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: .65rem;
      }

      .perusahaan-card {
        padding: 1rem .6rem;
      }

      .perusahaan-logo-wrap {
        width: 48px;
        height: 48px;
      }

      .perusahaan-name {
        font-size: .82rem;
      }

      .perusahaan-lowongan {
        font-size: .72rem;
        padding: .3rem .6rem;
      }
    }

    /* Perusahaan */
    .companies-row {
      display: flex;
      align-items: center;
      gap: 2rem;
      flex: 1;
      overflow: hidden;
      flex-wrap: wrap;
      justify-content: space-between;
    }

    .companies-row .company-name {
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: -.3px;
      white-space: nowrap;
    }

    .link-arrow {
      color: var(--primary);
      font-weight: 700;
      font-size: .86rem;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: .35rem;
      transition: color .2s;
    }

    .link-arrow:hover {
      color: var(--primary-dark);
    }

    /* Minat cards */
    .minat-card {
      background: #fff;
      border: 1px solid var(--gray-border);
      border-radius: var(--radius-lg);
      padding: 1.2rem;
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      height: 100%;
      transition: box-shadow .2s;
    }

    .minat-card:hover {
      box-shadow: var(--shadow-md);
    }

    .minat-icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
    }

    .minat-title {
      font-weight: 700;
      color: var(--navy);
      font-size: .94rem;
      margin-bottom: .2rem;
    }

    .minat-text {
      color: var(--gray-600);
      font-size: .8rem;
      line-height: 1.5;
      margin-bottom: .4rem;
    }

    .minat-link {
      color: var(--primary);
      font-weight: 700;
      font-size: .8rem;
      transition: color .2s;
    }

    .minat-link:hover {
      color: var(--primary-dark);
    }

    /* Platform grid */
    .platform-card {
      background: #fff;
      border: 1px solid var(--gray-border);
      border-radius: var(--radius-lg);
      padding: 1.2rem;
      text-align: left;
      height: 100%;
      transition: box-shadow .2s;
    }

    .platform-card:hover {
      box-shadow: var(--shadow-md);
    }

    .platform-icon {
      width: 44px;
      height: 44px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      margin-bottom: .65rem;
    }

    .platform-title {
      font-weight: 700;
      color: var(--navy);
      font-size: .88rem;
      margin-bottom: .25rem;
    }

    .platform-text {
      color: var(--gray-600);
      font-size: .76rem;
      line-height: 1.45;
    }

    /* Articles */
    .article-card {
      background: #fff;
      border: 1px solid var(--gray-border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      height: 100%;
      transition: box-shadow .2s;
    }

    .article-card:hover {
      box-shadow: var(--shadow-md);
    }

    .article-thumb{
        height:120px;
        overflow:hidden;
        border-radius:14px 14px 0 0;
        background:#F3F4F6;
    }

    .article-thumb img{
        width:100%;
        height:100%;
        object-fit:cover;
        display:block;
        transition:transform .35s ease;
    }

    .article-card:hover .article-thumb img{
        transform:scale(1.05);
    }
    .article-body {
      padding: 0.5rem 0.5rem;
    }

    .article-tag {
      color: var(--primary);
      font-weight: 700;
      font-size: .74rem;
    }

    .article-date {
      color: var(--gray-500);
      font-size: .74rem;
    }

    .article-title {
      font-weight: 600;
      color: var(--navy);
      font-size: 14px;
      line-height: 1.45;
      margin: .35rem 0 .5rem;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .article-meta {
      color: var(--gray-500);
      font-size: .74rem;
    }

    /* Testimonials */
    .testi-wrap {
      background: linear-gradient(135deg, #3B6FE0, #1457D8);
      border-radius: var(--radius-lg);
      padding: 1.2rem 1rem;
      height: 100%;
      position: relative;
      display: flex;
      align-items: center;
      gap: .5rem;
    }

    .testi-nav {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .2);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: .8rem;
      cursor: pointer;
      transition: background .2s;
    }

    .testi-nav:hover {
      background: rgba(255, 255, 255, .35);
    }

    .testi-card {
      background: #fff;
      border-radius: var(--radius-md);
      padding: .95rem 1rem;
      font-size: .83rem;
      flex: 1;
      height: 100%;
    }

    .testi-stars {
      color: #F2A93B;
      font-size: .75rem;
      margin-bottom: .45rem;
      letter-spacing: 1px;
    }

    .testi-quote {
      color: var(--gray-700);
      font-size: .82rem;
      line-height: 1.55;
      margin-bottom: .8rem;
      min-height: 72px;
    }

    .testi-avatar {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 700;
      font-size: .75rem;
    }

    .testi-name {
      font-weight: 700;
      color: var(--navy);
      font-size: .8rem;
    }

    .testi-role {
      color: var(--gray-500);
      font-size: .72rem;
    }

    /* Banners */
    .banner-sport {
      background: linear-gradient(125deg, #0B1B3D 0%, #123A66 55%, #1B5C8C 100%);
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      color: #fff;
      height: 100%;
      position: relative;
      overflow: hidden;
      min-height: 220px;
    }

    .banner-sport h3 {
      font-weight: 800;
      font-size: 1.1rem;
      letter-spacing: -.3px;
      margin-bottom: .15rem;
    }

    .banner-sport .sub {
      font-size: .78rem;
      color: #B8CDEB;
      margin-bottom: 1rem;
    }

    .sport-list {
      display: flex;
      flex-direction: column;
      gap: .4rem;
      font-size: .82rem;
      font-weight: 500;
    }

    .sport-list span {
      display: flex;
      align-items: center;
      gap: .45rem;
    }

    .sport-illustration {
      position: absolute;
      right: -8px;
      bottom: 0;
      width: 58%;
      opacity: .95;
    }

    .banner-light {
      background: linear-gradient(135deg, #EAF0FD, #E3ECFD);
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      height: 100%;
      min-height: 220px;
      position: relative;
      overflow: hidden;
    }

    .banner-light h3 {
      font-weight: 800;
      color: var(--primary);
      font-size: 1rem;
      margin-bottom: .25rem;
      letter-spacing: -.2px;
    }

    .banner-light p {
      color: var(--gray-600);
      font-size: .8rem;
      margin-bottom: .9rem;
    }

    .store-badge {
      background: var(--navy);
      color: #fff;
      border-radius: var(--radius-sm);
      padding: .35rem .7rem;
      display: flex;
      align-items: center;
      gap: .35rem;
      font-size: .73rem;
      transition: opacity .2s;
    }

    .store-badge:hover {
      opacity: .85;
      color: #fff;
    }

    .banner-dark {
      background: linear-gradient(135deg, #0F2F66, #0B2255);
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      color: #fff;
      height: 100%;
      min-height: 220px;
      position: relative;
      overflow: hidden;
    }

    .banner-dark h3 {
      font-weight: 800;
      font-size: 1rem;
      margin-bottom: .3rem;
      letter-spacing: -.2px;
    }

    .banner-dark ul {
      list-style: none;
      padding: 0;
      margin: 0 0 1rem;
      font-size: .82rem;
      display: flex;
      flex-direction: column;
      gap: .35rem;
    }

    .banner-dark ul li {
      display: flex;
      align-items: center;
      gap: .45rem;
      color: #CDD9F0;
    }

    .banner-dark ul li b {
      color: #fff;
    }

    /* =========================================
   FOOTER - REDESIGN
   ========================================= */
    .site-footer {
      background: #0A1530;
      color: #B0BDD1;
      padding: 2rem 0 0;
      margin-top: 2rem;
      position: relative;
      overflow: hidden;
    }

    .site-footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    }

    .footer-brand-title {
      font-weight: 800;
      font-size: 1.25rem;
      color: #fff;
      letter-spacing: -.3px;
      margin-bottom: .25rem;
    }

    .footer-brand-sub {
      font-size: .58rem;
      color: #6B7FA0;
      letter-spacing: .8px;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .footer-desc {
      font-size: .82rem;
      color: #8FA0BC;
      line-height: 1.65;
      margin-bottom: 1.2rem;
      max-width: 280px;
    }

    .footer-social {
      width: 36px;
      height: 36px;
      border-radius: var(--radius-sm);
      background: #162247;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #A0B4D0;
      font-size: .9rem;
      transition: all .2s;
      border: 1px solid transparent;
    }

    .footer-social:hover {
      background: #1E305C;
      color: #fff;
      border-color: rgba(255, 255, 255, 0.15);
      transform: translateY(-2px);
    }

    .footer-heading {
      color: #fff;
      font-weight: 700;
      font-size: .9rem;
      margin-bottom: 1.1rem;
      letter-spacing: -.2px;
      position: relative;
      padding-bottom: .65rem;
    }

    .footer-heading::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 24px;
      height: 2px;
      background: var(--primary);
      border-radius: 2px;
    }

    .footer-link-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: .55rem;
    }

    .footer-link-list a {
      color: #B0BDD1;
      font-size: .82rem;
      transition: all .2s;
      display: inline-flex;
      align-items: center;
      gap: .35rem;
    }

    .footer-link-list a::before {
      content: '';
      width: 0;
      height: 1px;
      background: var(--primary);
      transition: width .2s;
    }

    .footer-link-list a:hover {
      color: #fff;
      padding-left: 4px;
    }

    .footer-link-list a:hover::before {
      width: 6px;
    }

    /* Download App Card */
    .footer-download-card {
      background: linear-gradient(135deg, #111E40 0%, #0D1635 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-lg);
      padding: 1rem;
      position: relative;
      overflow: hidden;
      transition: all .3s ease;
    }

    .footer-download-card::before {
      content: '';
      position: absolute;
      top: -20px;
      right: -20px;
      width: 100px;
      height: 100px;
      background: var(--primary);
      border-radius: 50%;
      opacity: .08;
    }

    .footer-download-card::after {
      content: '';
      position: absolute;
      bottom: -30px;
      right: -30px;
      width: 80px;
      height: 80px;
      background: var(--primary);
      border-radius: 50%;
      opacity: .06;
    }

    .footer-download-title {
      color: #fff;
      font-weight: 700;
      font-size: .95rem;
      margin-bottom: .3rem;
      letter-spacing: -.2px;
    }

    .footer-download-subtitle {
      color: #8FA0BC;
      font-size: .78rem;
      margin-bottom: 1.2rem;
      line-height: 1.5;
    }

    .footer-store-btn {
      display: flex;
      align-items: center;
      gap: .6rem;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: #fff;
      padding: .6rem .85rem;
      border-radius: var(--radius-sm);
      font-size: .8rem;
      font-weight: 600;
      transition: all .25s ease;
      width: 100%;
      cursor: pointer;
      position: relative;
      z-index: 1;
    }

    .footer-store-btn:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: var(--primary);
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 4px 15px rgba(20, 87, 216, 0.2);
    }

    .footer-store-btn i {
      font-size: 1.2rem;
      color: var(--primary);
    }

    .footer-store-btn .store-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }

    .footer-store-btn .store-text small {
      font-size: .62rem;
      color: #8FA0BC;
      font-weight: 400;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      margin-top: 1rem;
      padding: 1.2rem 0;
      text-align: center;
      font-size: .78rem;
      color: #5C6E93;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: .5rem;
      flex-wrap: wrap;
    }

    .footer-bottom a {
      color: #7C8DAB;
      transition: color .2s;
    }

    .footer-bottom a:hover {
      color: #fff;
    }

    .footer-bottom .divider {
      color: #3A4A6B;
    }

    @media (max-width: 991.98px) {
      .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
      }

      .footer-link-list a {
        justify-content: center;
      }

      .footer-brand,
      .footer-desc,
      .footer-download-card {
        text-align: center;
      }

      .footer-desc {
        margin-left: auto;
        margin-right: auto;
      }

      .footer-social {
        justify-content: center;
      }
    }

    @media (max-width: 767.98px) {
      .site-footer {
        padding: 2.5rem 0 0;
      }

      .footer-download-card {
        margin-top: .5rem;
      }

      .footer-bottom {
        flex-direction: column;
        gap: .25rem;
      }

      .footer-bottom .divider {
        display: none;
      }
    }

    .hero-image {
      position: relative;
      margin-bottom: -40px;
      margin-top: -40px;
      z-index: 1;
    }

    .hero-image img {
      width: 100%;
      max-width: 550px;
      height: auto;
      display: block;
    }

    @media (max-width: 991.98px) {
      .hero-image {
        margin-left: 0;
        margin-bottom: -50px;
        text-align: center;
      }

      .hero-image img {
        max-width: 420px;
      }
    }

    @media (max-width: 767.98px) {
      .hero-image {
        margin-left: 0;
        margin-bottom: -30px;
      }

      .hero-image img {
        max-width: 320px;
        margin: 0 auto;
      }
    }

    @media (min-width: 992px) {
      .footer-download-col {
        width: 20%;
        flex: 0 0 20%;
      }
    }

    /* ===== CV Premium & Konsultasi (sidebar mini products) ===== */
    .mini-sec-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: .7rem;
    }

    .mini-sec-title {
      font-weight: 800;
      font-size: .92rem;
      color: var(--navy);
      letter-spacing: .2px;
    }

    .btn-pill-green {
        background: #1FB873;
        color: #fff;
        font-weight: 700;
        font-size: .72rem;
        border-radius: 5px;
        padding: .32rem .8rem;
        border: none;
        transition: background .2s;
    }

    .btn-pill-green:hover {
        background: #18A565;
        color: #fff;
    }

    .cv-card {
      background: #fff;
      border: 1px solid var(--gray-border);
      border-radius: 14px;
      overflow: hidden;
      height: 100%;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .cv-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: var(--primary);
    }

    .cv-card-img {
      position: relative;
      height: 260px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .cv-card-img::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 40px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent);
      z-index: 1;
    }

    .cv-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      font-size: .68rem;
      font-weight: 700;
      color: #fff;
      padding: .25rem .65rem;
      border-radius: 20px;
      z-index: 2;
      letter-spacing: .3px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .cv-logo-watermark {
      position: absolute;
      top: 10px;
      right: 10px;
      font-style: italic;
      font-weight: 800;
      font-size: .7rem;
      color: var(--primary);
      background: rgba(255, 255, 255, .9);
      padding: .15rem .5rem;
      border-radius: 6px;
      z-index: 2;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }

    .cv-card-body {
      padding: .9rem 1rem 1.1rem;
    }

    .cv-title {
      font-weight: 700;
      font-size: .9rem;
      color: var(--navy);
      margin-bottom: .3rem;
      letter-spacing: -.2px;
    }

    .cv-price-now {
      color: var(--primary);
      font-weight: 800;
      font-size: .92rem;
    }

    .cv-price-old {
      color: var(--gray-400);
      font-size: .76rem;
      text-decoration: line-through;
      margin-left: .4rem;
    }

    .cv-sold {
      color: var(--gray-500);
      font-size: .74rem;
      margin: .25rem 0 .35rem;
    }

    .cv-stars {
      color: #F2A93B;
      font-size: .82rem;
      letter-spacing: 1px;
    }

    /* =========================
   CONSULTATION CARD
========================= */

    .consult-card {
      position: relative;
      background: #fff;
      border: 1px solid var(--gray-border);
      border-radius: 14px;
      padding: 1rem;
      display: flex;
      gap: 1rem;
      align-items: center;
      transition: all .3s ease;
      cursor: pointer;
      overflow: hidden;
    }

    .consult-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
      border-color: var(--primary);
    }

    .consult-photo {
      width: 130px;
      height: 130px;
      border-radius: 12px;
      flex-shrink: 0;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, .10);
    }

    .consult-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .consult-name {
      font-weight: 800;
      font-size: 20px;
      color: var(--navy);
      margin-bottom: .5rem;
      letter-spacing: -.2px;
      line-height: 1.2;
    }

    .consult-tag {
      display: flex;
      align-items: center;
      gap: .5rem;
      font-weight: 600;
      font-size: .82rem;
      color: var(--gray-700);
      margin-bottom: .4rem;
    }

    .consult-tag .dot {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: .65rem;
      flex-shrink: 0;
    }

    /* Badge Gratis di kanan atas */

    /* GRATIS */
    .consult-badge-gratis {
      position: absolute;
      top: 12px;
      right: 12px;

      display: inline-flex;
      align-items: center;
      gap: .35rem;

      background: linear-gradient(135deg, #DCFCE7, #BBF7D0);
      color: #15803D;

      font-weight: 700;
      font-size: .75rem;

      padding: .35rem .8rem;
      border-radius: 999px;

      border: 1px solid #86EFAC;
      box-shadow: 0 2px 8px rgba(34, 197, 94, .15);

      margin: 0;
      z-index: 2;
    }

    .consult-badge-gratis i {
      font-size: .75rem;
    }

    /* PAID */
    .consult-badge-paid {
      position: absolute;
      top: 12px;
      right: 12px;

      display: inline-flex;
      align-items: center;
      gap: .35rem;

      background: linear-gradient(135deg, #FEE2E2, #FECACA);
      color: #DC2626;

      font-weight: 700;
      font-size: .75rem;

      padding: .35rem .8rem;
      border-radius: 999px;

      border: 1px solid #FCA5A5;
      box-shadow: 0 2px 8px rgba(220, 38, 38, .15);

      margin: 0;
      z-index: 2;
    }

    .consult-badge-paid i {
      font-size: .75rem;
    }

    /* PREMIUM */
    .consult-badge-premium {
      position: absolute;
      top: 12px;
      right: 12px;

      display: inline-flex;
      align-items: center;
      gap: .35rem;

      background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
      color: #2563EB;

      font-weight: 700;
      font-size: .75rem;

      padding: .35rem .8rem;
      border-radius: 999px;

      border: 1px solid #93C5FD;
      box-shadow: 0 2px 8px rgba(37, 99, 235, .15);

      margin: 0;
      z-index: 2;
    }

    .consult-badge-premium i {
      font-size: .75rem;
    }

    .training-badge-certificate{
        display:inline-flex;
        align-items:center;
        gap:4px;
        padding:4px 8px;
        border-radius:999px;
        background:#FEF3C7;
        color:#B45309;
        font-size:.68rem;
        font-weight:700;
        white-space:nowrap;
        border:1px solid #FCD34D;
    }

    .training-badge-certificate i{
        font-size:.75rem;
    }

    /* Harga */
    .training-price{
        display:flex;
        align-items:center;
        gap:8px;
        margin-bottom:2px;
        margin-top:5px;
        flex-wrap:wrap;
    }

    .training-price-now{
        font-size:14px;
        font-weight:800;
        color:#1457D8;
        line-height:1;
    }

    .training-price-old{
        font-size:12px;
        color:#9CA3AF;
        text-decoration:line-through;
        font-weight:600;
        line-height:1;
    }

    /* Gratis */
    .training-price-free{
        display:inline-flex;
        align-items:center;
        gap:6px;
        color:#16A34A;
        font-weight:700;
        font-size:.9rem;
    }

    .training-price-free i{
        font-size:1rem;
    }

    /* Mobile */

    @media (max-width: 576px) {

      .consult-card {
        gap: .75rem;
        padding: .85rem;
      }

      .consult-photo {
        width: 90px;
        height: 90px;
      }

      .consult-name {
        font-size: 18px;
        padding-right: 70px;
      }

      .consult-badge-gratis {
        top: 10px;
        right: 10px;
        font-size: .7rem;
        padding: .25rem .65rem;
      }
    }

    /* =========================
   WHATSAPP CHANNEL CARD
========================= */

    .whatsapp-card {
      position: relative;
      background: linear-gradient(135deg, #EAFBF1 0%, #DEF7E8 100%);
      border: 1px solid #CDEFD9;
      border-radius: 18px;
      padding: 20px;
      overflow: hidden;
      transition: all .3s ease;
    }

    .whatsapp-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(37, 211, 102, .12);
    }

    .whatsapp-title {
      font-size: 1.05rem;
      font-weight: 800;
      color: #128C7E;
      line-height: 1.4;
      margin-bottom: 10px;
    }

    .whatsapp-desc {
      font-size: .88rem;
      line-height: 1.7;
      color: #4B5563;
      margin-bottom: 16px;
    }

    .btn-whatsapp-modern {
      display: inline-flex;
      align-items: center;
      gap: 8px;

      background: #25D366;
      color: #fff !important;

      font-size: .85rem;
      font-weight: 700;

      padding: 10px 16px;
      border-radius: 999px;

      text-decoration: none;
      transition: all .25s ease;
    }

    .btn-whatsapp-modern:hover {
      background: #1EBE5D;
      color: #fff !important;
      transform: translateY(-1px);
    }

    .btn-whatsapp-modern i {
      font-size: 1rem;
    }

    /* Badge Official Channel */

    .whatsapp-badge {
      position: absolute;
      right: 16px;
      bottom: 16px;

      display: inline-flex;
      align-items: center;
      gap: 6px;

      background: rgba(255, 255, 255, .85);
      backdrop-filter: blur(8px);

      border: 1px solid rgba(18, 140, 126, .12);
      border-radius: 999px;

      padding: 6px 10px;

      color: #128C7E;
      font-size: .72rem;
      font-weight: 700;

      white-space: nowrap;
    }

    .whatsapp-badge i {
      font-size: .8rem;
    }

    /* Mobile */

    @media (max-width: 576px) {

      .whatsapp-card {
        padding: 16px;
        padding-bottom: 55px;
      }

      .whatsapp-title {
        font-size: .95rem;
      }

      .whatsapp-desc {
        font-size: .82rem;
      }

      .btn-whatsapp-modern {
        width: 100%;
        justify-content: center;
      }

      .whatsapp-badge {
        right: 12px;
        bottom: 12px;
        font-size: .68rem;
      }
    }

    /* =========================
   TRAINING CARD
========================= */

    .training-card {
      background: #fff;
      border: 1px solid var(--gray-border);
      border-radius: 16px;
      overflow: hidden;
      transition: .3s ease;
    }

    .training-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    /* Banner */

    .training-banner {
      position: relative;
      height: 260px;
      overflow: hidden;
    }

    .training-banner-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .training-banner-overlay {
      position: absolute;
      inset: 0;

      display: flex;
      flex-direction: column;
      justify-content: space-between;

      padding: 16px;

      background: linear-gradient(to top,
          rgba(0, 0, 0, .82),
          rgba(0, 0, 0, .25),
          rgba(0, 0, 0, .05));
    }

    /* Header */

    .training-logo {
      color: #fff;
      font-weight: 800;
      font-size: .9rem;
      letter-spacing: .5px;
    }

    .training-badge-free {
      background: #16A34A;
      color: #fff;
      font-size: .68rem;
      font-weight: 700;
      padding: 5px 10px;
      border-radius: 5px;
    }

    .training-badge-member {
      background: #1FC8D6;
      color: #fff;
      font-size: .68rem;
      font-weight: 700;
      padding: 5px 10px;
      border-radius: 5px;
    }

    .training-badge-premium {
      background: #DC2626;
      color: #fff;
      font-size: .68rem;
      font-weight: 700;
      padding: 5px 10px;
      border-radius: 5px;
    }

    /* Contact */

    .training-contact-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;

      background: rgba(255, 255, 255, .92);
      backdrop-filter: blur(8px);

      border-radius: 12px;
      padding: 10px;
    }

    .training-contact-row span {
      display: flex;
      align-items: center;
      gap: 5px;

      font-size: .7rem;
      font-weight: 600;
      color: var(--navy);
    }

    .training-contact-row .bi-whatsapp {
      color: #25D366;
    }

    .training-contact-row .bi-globe {
      color: var(--primary);
    }

    .btn-training-daftar {
      margin-left: auto;

      background: #FF6A1A;
      color: #fff !important;

      font-size: .72rem;
      font-weight: 700;

      padding: 8px 12px;
      border-radius: 8px;

      text-decoration: none;
      transition: .2s ease;
    }

    .btn-training-daftar:hover {
      background: #F45B09;
    }

    /* Footer */

    .training-footer {
      padding: 16px;
    }

    .training-course-label {
      color: var(--gray-500);

      font-size: .68rem;
      font-weight: 700;

      text-transform: uppercase;
      letter-spacing: .5px;

      margin-bottom: 6px;
    }

    .training-course-title {
      color: var(--navy);

      font-size: .92rem;
      font-weight: 700;

      line-height: 1.5;
    }

    .training-brand {
      display: flex;
      align-items: center;
      gap: 6px;

      color: var(--primary);
      font-size: .8rem;
      font-weight: 700;
    }

    .training-online {
      font-size: .75rem;
      font-weight: 700;
      color: var(--gray-500);
    }

    /* Mobile */

    @media (max-width:576px) {

      .training-banner {
        height: 190px;
      }

      .training-contact-row {
        gap: 6px;
      }

      .training-contact-row span {
        font-size: .65rem;
      }

      .btn-training-daftar {
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-top: 6px;
      }
    }

    .maintenance-status {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 20px auto;
    text-align: center;
    }

    .maintenance-status p {
        margin: 0;
        padding: 8px 16px;
        font-size: 14px;
        color: #6B7280;
        background: #F9FAFB;
        border: 1px solid #E5E7EB;
        border-radius: 999px;
    }

    .cv-stars {
        display: flex;
        align-items: center;
        gap: 2px;
        color: #FBBF24; /* Warna kuning */
        font-size: 18px;
        line-height: 1;
    }

    .cv-stars i {
        display: inline-flex;
    }

/* Countdown */
.countdown-title{
    margin:8px 0 4px;
    font-size:12px;
    font-weight:700;
    line-height:1.2;
}

.countdown-title-danger{
    color:#EF4444;
}

.countdown-title-success{
    color:#0E8F6F;
}

.sales-end-timer{
    display:flex;
    align-items:center;
    gap:6px;
    padding:0;
    margin:0 0 8px;
    list-style:none;
    margin-bottom: -5px;
}

.sales-end-timer li{
    display:flex;
    align-items:center;
    gap:2px;
    padding:3px 7px;
    font-size:10px;
    font-weight:700;
    line-height:1;
    border-radius:4px;
    background:#FEE2E2;
    color:#DC2626;
}

.sales-end-timer span{
    font-weight:800;
}

/* ===== 404 PAGE ===== */
.notfound-wrap{
  background:linear-gradient(135deg,#EAF0FD 0%,#EDF2FC 60%,#EEF2FB 100%);
  border-radius:28px;
  padding:3.2rem 1.5rem 3.6rem;
  text-align:center;
  margin-bottom: -30px;
}
.notfound-illustration{width:100%;max-width:320px;margin:0 auto 1.2rem;display:block;}
.notfound-code{
  font-weight:800;font-size:1.3rem;letter-spacing:2px;color:var(--primary);
  margin-bottom:.4rem;
}
.notfound-title{
  font-weight:800;font-size:1.7rem;color:var(--navy);margin-bottom:.7rem;
}
.notfound-text{
  color:var(--gray-700);font-size:.98rem;max-width:520px;margin:0 auto 1.8rem;line-height:1.6;
}
.notfound-search{max-width:640px;margin:0 auto;}
.cat-pill-mini{
  background:#fff;border:1px solid var(--gray-border);border-radius:30px;
  padding:.5rem 1.1rem;font-weight:600;font-size:.85rem;color:var(--navy);
}
.cat-pill-mini:hover{border-color:var(--primary);color:var(--primary);}
@media (max-width: 575.98px){
  .notfound-title{font-size:1.3rem;}
  .notfound-wrap{padding:2.2rem 1rem 2.6rem;}
}