 /* Enhanced Stressor Cards Styling */
.stressors-section {
    position: relative;
    overflow: hidden;
}

.stressor-item {
    position: relative;
    background: #FFFFFF;
    border: none !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(32, 41, 110, 0.08) !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.stressor-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF70A3 0%, #20296E 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stressor-item:hover::before {
    transform: scaleX(1);
}

.stressor-item:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(32, 41, 110, 0.15) !important
}

.stressor-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 112, 163, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, 30%);
    transition: all 0.4s ease;
}

.stressor-item:hover::after {
    transform: translate(20%, 20%);
    background: radial-gradient(circle, rgba(255, 112, 163, 0.15) 0%, transparent 70%);
}

.stressor-icon {
    position: relative;
    z-index: 2;
    margin-bottom: 15px !important;
    transition: transform 0.4s ease;
}

.stressor-item:hover .stressor-icon {
    transform: scale(1.1);
}

.stressor-item p {
    position: relative;
    z-index: 2;
}

/* Premium Offer Enhanced Cards */
.premium-card-item {
    position: relative;
    background: linear-gradient(135deg, #F4F5FF 0%, #FFFFFF 100%);
    border: 2px solid rgba(32, 41, 110, 0.1);
    border-radius: 24px !important;
    padding: 35px 25px !important;
    transition: all 0.4s ease;
    overflow: hidden;
}

.premium-card-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 112, 163, 0.05) 0%, transparent 70%);
    transition: transform 0.6s ease;
}

.premium-card-item:hover::before {
    transform: translate(-25%, -25%);
}

.premium-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(32, 41, 110, 0.12);
    border-color: rgba(255, 112, 163, 0.3);
}

.premium-icon-box {
    position: relative;
    z-index: 2;
    width: 90px !important;
    height: 90px !important;
    margin: 0 auto 20px !important;
    background: #FFFFFF;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(32, 41, 110, 0.08);
    transition: all 0.4s ease;
}

.premium-card-item:hover .premium-icon-box {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 12px 28px rgba(255, 112, 163, 0.15);
}

.premium-card-item h3 {
    position: relative;
    z-index: 2;
    color: #20296E !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
}

.premium-features-list {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .stressor-item::after {
        width: 60px;
        height: 60px;
    }
}
