.hb-thankyou-premium{
    max-width:1000px;
    margin:40px auto 70px;
    padding:0 16px;
    font-family:inherit;
}

.hb-ty-header{
    text-align:center;
    padding:60px 20px 110px;
    border-radius:32px 32px 0 0;
    background:linear-gradient(135deg,#0f52ff,#1d74ff,#2d8cff);
    color:#fff;
    position:relative;
    overflow:hidden;
}

.hb-ty-header:before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 20% 30%,rgba(255,255,255,.18),transparent 25%),
        radial-gradient(circle at 80% 20%,rgba(255,255,255,.14),transparent 20%),
        radial-gradient(circle at 60% 80%,rgba(255,255,255,.12),transparent 20%);
}

.hb-checkmark{
    width:90px;
    height:90px;
    border-radius:50%;
    margin:0 auto 20px;
    background:#fff;
    color:#0f52ff;
    font-size:44px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    z-index:2;
    box-shadow:0 20px 40px rgba(0,0,0,.18);
}

.hb-ty-header h2{
    margin:0 0 8px;
    font-size:46px;
    font-weight:800;
    color:#fff;
    position:relative;
    z-index:2;
}

.hb-ty-header p{
    margin:0;
    font-size:18px;
    opacity:.95;
    position:relative;
    z-index:2;
}

.hb-ty-card{
    margin-top:-55px;
    background:rgba(255,255,255,.78);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.7);
    border-radius:30px;
    padding:35px;
    position:relative;
    z-index:5;
    box-shadow:0 30px 60px rgba(16,24,40,.08);
}

.hb-top-meta{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:25px;
}

.hb-top-meta div,
.hb-status-box,
.hb-notify-box,
.hb-item,
.hb-help{
    background:#fff;
    border:1px solid #edf2f7;
    border-radius:22px;
    padding:22px;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.hb-top-meta span{
    display:block;
    color:#64748b;
    font-size:13px;
    margin-bottom:10px;
    font-weight:600;
}

.hb-top-meta strong{
    font-size:28px;
    color:#0f52ff;
    font-weight:800;
}

.hb-status-row{
    display:grid;
    grid-template-columns:1.5fr 1fr;
    gap:20px;
    margin-bottom:25px;
}

.hb-status-box h4{
    margin:0 0 12px;
    font-size:18px;
}

.hb-status-box h4 span{
    background:#dcfce7;
    color:#15803d;
    padding:6px 12px;
    border-radius:999px;
    font-size:13px;
    margin-left:8px;
}

.hb-notify-box{
    display:flex;
    flex-direction:column;
    justify-content:center;
    background:#eef5ff;
}

.hb-progress{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-bottom:25px;
}

.hb-progress div{
    text-align:center;
    background:#fff;
    border-radius:20px;
    padding:22px;
    font-weight:700;
    border:1px solid #edf2f7;
}

.hb-items h3{
    margin:0 0 18px;
}

.hb-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:14px;
}

.hb-item-left{
    display:flex;
    gap:15px;
    align-items:center;
}

.hb-item-left img{
    width:70px;
    height:70px;
    object-fit:contain;
}

.hb-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin:28px 0;
}

.hb-btn-light,
.hb-btn-primary{
    text-align:center;
    padding:16px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.hb-btn-light{
    background:#fff;
    color:#0f52ff;
    border:2px solid #dbeafe;
}

.hb-btn-primary{
    background:linear-gradient(135deg,#0f52ff,#2d8cff);
    color:#fff;
}

.hb-help{
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr;
    gap:20px;
    align-items:center;
}

/* responsive */
@media(max-width:991px){
    .hb-top-meta,
    .hb-status-row,
    .hb-progress,
    .hb-help{
        grid-template-columns:1fr;
    }

    .hb-actions{
        grid-template-columns:1fr;
    }

    .hb-ty-header h2{
        font-size:34px;
    }

    .hb-top-meta strong{
        font-size:22px;
    }
}

@media(max-width:767px){
    .hb-ty-header{
        padding:40px 18px 80px;
        border-radius:22px 22px 0 0;
    }

    .hb-checkmark{
        width:70px;
        height:70px;
        font-size:32px;
    }

    .hb-ty-header h2{
        font-size:26px;
    }

    .hb-ty-header p{
        font-size:14px;
    }

    .hb-ty-card{
        padding:18px;
        border-radius:20px;
    }

    .hb-item{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

    .hb-item-left img{
        width:55px;
        height:55px;
    }
}

