.problem-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-weight: 500;
}

.problem-bullets i {
    margin-top: 0.2rem;
}

.journey-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.journey-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(127, 211, 229, 0.12) 100%);
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(116, 102, 223, 0.1);
    backdrop-filter: blur(6px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journey-step:hover,
.journey-step:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 24px 45px rgba(15, 23, 42, 0.18);
}

.journey-step-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #7466df, #7fd3e5);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 6px rgba(116, 102, 223, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

.journey-step-body h5 {
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.journey-step-body p {
    font-size: 0.95rem;
}

.usp-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usp-card:hover,
.usp-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 24px 32px rgba(15, 23, 42, 0.12);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.1);
}

.testimonial-image-wrap {
    width: 96px;
    height: 96px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid rgba(116, 102, 223, 0.35);
}

.testimonial-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .journey-step {
        padding: 1rem 1.1rem;
    }

    .journey-step-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }

    .problem-bullets li {
        padding: 0.3rem 0;
    }
}

@media (min-width: 992px) {
    .testimonial-card {
        padding: 3rem;
    }
}
