.p6-steps-interactive-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    font-family: 'Inter', sans-serif;
    text-align: center;
    padding: 20px;
}
.p6-section-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 40px;
}
.p6-timeline-container {
    position: relative;
    margin-bottom: 50px;
    padding: 0 40px;
}
.p6-progress-line-bg {
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    height: 4px;
    background-color: #fee2e2;
    transform: translateY(-50%);
    z-index: 1;
}
.p6-active-line {
    height: 100%;
    width: 0%;
    background-color: #dc2626;
    transition: width 0.4s ease-in-out;
}
.p6-timeline-dots {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.p6-step-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 3px solid #fca5a5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.p6-step-dot span {
    font-weight: 700;
    color: #4b5563;
}
.p6-step-dot.active {
    background-color: #dc2626;
    border-color: #dc2626;
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.4);
}
.p6-step-dot.active span {
    color: #ffffff;
}
.p6-cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}
@media (min-width: 768px) {
    .p6-cards-container {
        grid-template-columns: repeat(3, 1fr);
    }
}
.p6-card-item {
    background: #ffffff;
    border: 2px solid #fee2e2;
    border-radius: 12px;
    padding: 30px 24px;
    text-align: left;
    transition: all 0.3s ease;
    opacity: 0.7;
    transform: translateY(5px);
}
.p6-card-item.active {
    opacity: 1;
    transform: translateY(0);
    border-color: #dc2626;
    box-shadow: 0 10px 25px -5px rgba(220, 38, 38, 0.1);
}
.p6-step-num {
    font-size: 0.875rem;
    font-weight: 800;
    color: #dc2626;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 10px;
}
.p6-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}
.p6-card-desc {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
}
