.usp-section {
    position: relative;
    padding: 55px 7%;
    background: #274082;
    color: #fff;
    overflow: hidden;
}

/* Background Decoration */

.usp-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    right: -180px;
    top: -180px;
}

.usp-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
    left: -150px;
    bottom: -150px;
}

.usp-container {
    position: relative;
    z-index: 2;
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}


/* LEFT */

.usp-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f6b80b;
    margin-bottom: 20px;
}

.usp-intro h2 {
    font-size: clamp(38px, 4vw, 62px);
    line-height: 1.08;
    margin: 0;
    font-weight: 500;
}

.usp-intro h2 span {
    color: #aeb8c5;
}

.usp-intro h2 strong {
    color: #fff;
    font-weight: 700;
}

.usp-divider {
    width: 65px;
    height: 4px;
    background: #aeb8c5;
    margin: 30px 0;
}

.usp-description {
    color: #c6ced8;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.usp-description strong {
    color: #fff;
}

.question-box {
   border-left: 10px solid #6b7280;
    background: #f1f3f6;
    padding: 18px 22px;
    margin: 20px 0 25px;
    font-size: 18px;
    font-style: italic;
    color: #274082;
}


/* RIGHT */

.usp-process {
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.09);
    padding: 35px;
    border-radius: 22px;
    backdrop-filter: blur(8px);
}

.process-heading span {
    color: #aeb8c5;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
}

.process-heading h3 {
    font-size: 28px;
    margin: 7px 0 28px;
    font-weight: 600;
	text-align:left;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.process-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
   background: #e4e7eb;
    border: 1px solid #f1f3f6;
    border-radius: 14px;
    transition: all 0.35s ease;
}

.process-card:last-child {
    grid-column: span 2;
}

.process-card:hover {
    transform: translateY(-5px);
    background: #e4e7eb;
    border: 1px solid #f1f3f6;
}

.card-number {
    min-width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
        background: #274082;
    color: #f1f3f6;
    font-weight: 800;
    font-size: 13px;
}

.process-card small {
    display: block;
    font-size: 9px;
    letter-spacing: 1.5px;
    color: #374151;
    margin-bottom: 5px;
}

.process-card h4 {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}


/* BOTTOM */

.usp-bottom {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 75px auto 0;
    text-align: center;
}

.bottom-line {
    width: 70px;
    height: 3px;
    background: #aeb8c5;
    margin: 0 auto 25px;
}

.usp-bottom p {
    color: #b8c2ce;
    font-size: 16px;
    margin-bottom: 18px;
}

.usp-bottom h3 {
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.35;
    margin: 0;
    font-weight: 500;
}

.usp-bottom h3 span {
    color: #fff;
    font-weight: 700;
}

.usp-bottom h3 strong {
    color: #fff;
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .usp-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .usp-intro h2 {
        font-size: 45px;
    }

}

@media (max-width: 600px) {

    .usp-section {
        padding: 75px 20px;
    }

    .usp-intro h2 {
        font-size: 36px;
    }

    .usp-process {
        padding: 22px;
    }

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

    .process-card:last-child {
        grid-column: span 1;
    }

    .process-card {
        padding: 16px;
    }

    .usp-bottom {
        margin-top: 50px;
    }

}