.upt-page{
    padding:60px 0 90px;

    background:
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #f2f6fb 100%
        );
}

/* HERO */

.upt-hero{
    margin-bottom:70px;
}

.upt-hero-content h1{
    font-size:64px;

    font-weight:900;

    line-height:1.1;

    color:#16315c;

    margin-bottom:24px;
}

.upt-hero-content p{
    font-size:18px;

    line-height:1.9;

    color:#64748b;

    margin-bottom:34px;
}

.upt-hero-image{
    background:white;

    border-radius:34px;

    padding:40px;

    display:flex;

    align-items:center;

    justify-content:center;

    border:1px solid #e7edf5;

    box-shadow:
        0 18px 45px rgba(15,23,42,.08);
}

.upt-hero-image img{
    width:260px;

    object-fit:contain;
}

/* STATS */

.hero-stats{
    display:flex;

    gap:24px;
}

.hero-stat{
    min-width:180px;

    padding:24px;

    border-radius:24px;

    background:white;

    border:1px solid #e7edf5;

    box-shadow:
        0 12px 35px rgba(15,23,42,.05);
}

.hero-stat h3{
    font-size:40px;

    font-weight:900;

    color:#16315c;

    margin-bottom:6px;
}

.hero-stat span{
    color:#64748b;
}

/* TABLE */

.upt-table-wrapper{
    background:white;

    border-radius:34px;

    overflow:hidden;

    border:1px solid #e7edf5;

    box-shadow:
        0 12px 35px rgba(15,23,42,.05);
}

.upt-table{
    width:100%;

    border-collapse:collapse;
}

.upt-table thead{
    background:#f8fbff;
}

.upt-table thead th{
    height:76px;

    padding:0 28px;

    font-size:15px;

    font-weight:800;

    color:#16315c;

    border-bottom:1px solid #e7edf5;
}

.upt-table tbody td{
    padding:26px 28px;

    border-bottom:1px solid #eef2f7;

    vertical-align:middle;
}

.upt-table tbody tr:last-child td{
    border-bottom:none;
}

.upt-table tbody tr{
    transition:.3s;
}

.upt-table tbody tr:hover{
    background:#f8fbff;
}

/* LOGO */

.upt-logo{
    width:90px;
    height:90px;

    border-radius:22px;

    background:#f8fafc;

    border:1px solid #e7edf5;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:14px;
}

.upt-logo img{
    width:100%;
    height:100%;

    object-fit:contain;
}

/* TITLE */

.upt-title{
    font-size:20px;

    font-weight:800;

    line-height:1.6;

    color:#16315c;
}

/* ADDRESS */

.upt-address{
    color:#64748b;

    line-height:1.8;

    font-size:15px;
}

/* LINK */

.upt-link{
    height:48px;

    padding:0 20px;

    border-radius:14px;

    background:#002f6c;

    color:white;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    text-decoration:none;

    font-size:14px;

    font-weight:700;

    transition:.3s;
}

.upt-link:hover{
    transform:translateY(-2px);

    color:white;
}

/* RESPONSIVE */

@media(max-width:992px){

    .upt-hero-content h1{
        font-size:46px;
    }

    .upt-table{
        min-width:1000px;
    }

}

@media(max-width:768px){

    .upt-page{
        padding:40px 0 60px;
    }

    .upt-hero-content h1{
        font-size:38px;
    }

}


/* ========================================
   MATRA
======================================== */

.upt-matra{

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

    padding:8px 14px;

    border-radius:999px;

    background:#eff6ff;

    color:#0d6efd;

    font-size:13px;
    font-weight:600;
}

/* ========================================
   EMPTY
======================================== */

.upt-empty-wrapper{

    padding:80px 20px;

    text-align:center;
}

.upt-empty-wrapper i{

    font-size:52px;

    color:#cbd5e1;

    margin-bottom:18px;
}

.upt-empty-wrapper h3{

    font-size:24px;
    font-weight:700;

    margin-bottom:8px;
}

.upt-empty-wrapper p{

    color:#64748b;
}

/* ========================================
   NO LOGO
======================================== */

.upt-no-logo{

    width:70px;
    height:70px;

    border-radius:18px;

    background:#f1f5f9;

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

    color:#94a3b8;

    font-size:26px;
}

/* ========================================
   TOOLBAR
======================================== */

.page-toolbar{

    width:100%;

    display:grid;

    grid-template-columns:
        1fr
        130px
        160px;

    gap:16px;

    align-items:center;

    margin-bottom:34px;
}

/* ========================================
   SEARCH
======================================== */

.page-search{
    position:relative;
}

.page-search i{

    position:absolute;

    left:20px;
    top:50%;

    transform:translateY(-50%);

    color:#94a3b8;

    font-size:15px;

    z-index:2;
}

.page-search input{

    width:100%;
    height:58px;

    border:
        1px solid #dbe3ee;

    border-radius:18px;

    background:white;

    padding:0 22px 0 54px;

    font-size:14px;

    color:#0f172a;

    outline:none;

    transition:.2s ease;

    box-shadow:
        0 2px 8px rgba(15,23,42,.03);
}

.page-search input:focus{

    border-color:
        rgba(13,110,253,.35);

    box-shadow:
        0 0 0 4px rgba(13,110,253,.08);
}

.page-search input::placeholder{

    color:#94a3b8;
}

/* ========================================
   BUTTON
======================================== */

.page-btn,
.page-reset{

    width:100%;
    height:58px;

    border-radius:16px;

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

    gap:10px;

    text-decoration:none;

    font-size:14px;
    font-weight:600;

    white-space:nowrap;

    transition:.2s ease;
}

/* cari */

.page-btn{

    border:none;

    background:#0d6efd;

    color:white;

    box-shadow:
        0 6px 16px rgba(13,110,253,.14);
}

.page-btn:hover{

    background:#0b5ed7;

    color:white;
}

/* reset */

.page-reset{

    background:white;

    color:#334155;

    border:
        1px solid #dbe3ee;
}

.page-reset:hover{

    border-color:
        rgba(13,110,253,.2);

    background:#f8fbff;

    color:#0d6efd;
}

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

@media(max-width:992px){

    .page-toolbar{

        grid-template-columns:1fr;
    }
}

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

@media(max-width:992px){

    .page-toolbar{

        flex-wrap:wrap;
    }

    .page-search-wrap{

        width:100%;
    }
}

@media(max-width:768px){

    .page-toolbar{

        flex-direction:column;

        align-items:stretch;
    }

    .page-btn,
    .page-reset{

        width:100%;
    }
}